34 lines
743 B
TypeScript
Raw Normal View History

2025-04-24 17:03:28 +08:00
import SkillBase, {
ActionOn,
ActionType,
AffectType,
EAttackType,
EffectPos,
MagicType,
ESkillType,
ESkillQuality
} from "../core/SkillBase";
// 將死
export default class JiangSi extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.JiangSi;
this.name = '將死';
this.icon = "2704";
this.desc = '離場時所有的召喚獸接觸異常狀態。 ';
this.quality = ESkillQuality.FINAL; //技能 品質
this.particleEffect = '32304';
this.skillActOn = ActionOn.SELF;
this.action_type = ActionType.PASSIVE;
}
getDetail():string{
return `離場時所有的召喚獸接觸異常狀態。 `;
}
}