36 lines
1.3 KiB
TypeScript
36 lines
1.3 KiB
TypeScript
import GameUtil from "../../../core/GameUtil";
|
||
import SkillBase, { ActionType, AffectType, ESkillQuality, EAttackType, ESkillType, MagicType } from "../core/SkillBase";
|
||
|
||
|
||
|
||
//勢如破竹
|
||
export default class ShiRuPoZhu extends SkillBase {
|
||
constructor() {
|
||
super();
|
||
this.init();
|
||
}
|
||
|
||
init() {
|
||
this.id = ESkillType.ShiRuPoZhu;
|
||
this.name = "勢如破竹";
|
||
this.icon = "10320";
|
||
this.desc = '消耗15400法力,清除敵方6個單位正面狀態,整場戰鬥只可使用1次,6回合後才可使用。 (僅pvp生效)';
|
||
this.atkType = EAttackType.REMOTE;
|
||
this.particleEffect = '41006';//特效
|
||
this.buffEffect = '41006_s'; // buff特效名字
|
||
this.skillEffectY = -15;
|
||
this.buffEffectY = -30; //buff特效 顯示位置
|
||
this.scale = AffectType.GROUP;
|
||
this.buffFront = false;
|
||
this.action_type = ActionType.INITIATIVE;
|
||
this.quality = ESkillQuality.FINAL; //技能 品質
|
||
|
||
}
|
||
|
||
getDetail(): string {
|
||
//return `福犬在主人首次倒地時激發勇猛鬥志,擺脫一切負面狀態,幻化人形狀態。進入人形狀態後每回合開始均可清除所有負面狀態。 `;
|
||
return `消耗15400法力,清除敵方6個單位正面狀態,整場戰鬥只可使用1次,6回合後才可使用。 (僅pvp生效)`;
|
||
}
|
||
|
||
|
||
} |