32 lines
821 B
TypeScript
Raw Permalink 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 JiRenTianXiang extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.JiRenTianXiang;
this.name = '吉人天相';
this.icon = "31154";
this.desc = '抵禦一次致死的傷害血量降低到10並清除自己所有狀態。 被動前3回合不生效';
this.quality = ESkillQuality.HIGH; //技能 品質
this.action_type = ActionType.PASSIVE;
}
getDetail():string{
return `抵禦一次致死的傷害血量降低到10並清除自己所有狀態。 被動前3回合不生效`;
}
}