UserSkillDoubleShoot.ts 308 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 import { UserSkillBase } from "./UserSkillBase"; export class UserSkillDoubleShoot extends UserSkillBase { start(free: boolean = false): boolean { if (super.start(free)) { this._battle.doubleShoot = true; // this.dispatchEvent(); } return false; } }