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 HunLuan extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.HunLuan;
this.name = '混亂'; // 技能名字
this.icon = "2036";
this.desc = '物理攻擊時有機率釋放單體混亂持續1回合。 '; //技能介紹
this.buffEffect = 'luan';
this.faXi = MagicType.Chaos;
this.action_type = ActionType.PASSIVE; // 主動 被動
}
getDetail():string{
return `物理攻擊時有機率釋放單體混亂持續1回合。 `;
}
}