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

32 lines
821 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, {
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回合不生效`;
}
}