23 lines
690 B
TypeScript
Raw Normal View History

2025-04-24 17:03:28 +08:00
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回合。 `;
}
}