23 lines
690 B
TypeScript
23 lines
690 B
TypeScript
|
import SkillBase, { ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
|
|||
|
|
|||
|
// 封印
|
|||
|
export default class FengYin extends SkillBase{
|
|||
|
constructor() {
|
|||
|
super();
|
|||
|
this.init();
|
|||
|
}
|
|||
|
|
|||
|
init() {
|
|||
|
this.id = ESkillType.FengYin;
|
|||
|
this.name = '封印'; // 技能名字
|
|||
|
this.icon = "2037";
|
|||
|
this.desc = '物理攻擊時有機率釋放單體封印,持續1回合。 '; //技能介紹
|
|||
|
this.buffEffect = 'luan';
|
|||
|
this.faXi = MagicType.Chaos;
|
|||
|
this.action_type = ActionType.PASSIVE; // 主動 被動
|
|||
|
}
|
|||
|
|
|||
|
getDetail():string{
|
|||
|
return `物理攻擊時有機率釋放單體封印,持續1回合。 `;
|
|||
|
}
|
|||
|
}
|