32 lines
821 B
TypeScript
32 lines
821 B
TypeScript
|
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回合不生效)`;
|
|||
|
}
|
|||
|
}
|
|||
|
|