去掉伤害系统

This commit is contained in:
2025-02-03 22:30:38 +08:00
parent 36a8aff783
commit 83c4b6ec3d
8 changed files with 111 additions and 205 deletions

View File

@@ -1,6 +1,5 @@
import { ecs } from "../../../../extensions/oops-plugin-framework/assets/libs/ecs/ECS";
import { HeroSkillSystem } from "./HeroSkillSystem";
import { DamageSystem } from "../damage/DamageSystem";
import { BattleEndSystem } from "../battle/BattleEndSystem";
import { BattleStartSystem } from "../battle/BattleStartSystem";
import { BattlePhaseSystem } from "../battle/BattlePhaseSystem";
@@ -8,7 +7,6 @@ export class EcsSkillSystem extends ecs.System {
constructor() {
super();
this.add(new HeroSkillSystem());
this.add(new DamageSystem());
this.add(new BattleStartSystem());
this.add(new BattlePhaseSystem());
this.add(new BattleEndSystem());