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

23 lines
684 B
TypeScript
Raw 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,ESkillQuality, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
export default class GuiQulaiXi extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.GuiQulaiXi;
this.name = '歸去來兮';
this.icon = "10331";
this.desc = '對敵方使用火法攻擊時20%機率隨機對目標釋放一次4階火法';
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.SHEN;
}
getDetail():string{
return `對敵方使用火法攻擊時20%機率隨機對目標釋放一次4階火法'`;
}
}