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

23 lines
585 B
TypeScript

import SkillBase, { ActionOn, ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
// 飛龍探雲手
export default class StealMoney extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.StealMoney;
this.name = '飛龍探雲手';
this.icon = "8000";
this.desc = '偷錢偷錢';
this.particleEffect = '0';
this.faXi = MagicType.StealMoney;
this.atkType = EAttackType.MELEE;
}
getDetail():string{
return `偷錢偷錢`;
}
}