2025-04-24 17:03:28 +08:00

23 lines
690 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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回合。 `;
}
}