UserSkillDoubleShoot.ts 308 Bytes
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;
    }
}