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

28 lines
965 B
TypeScript
Raw 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, {EffectPos, MagicType, ESkillType } from "../core/SkillBase";
import {EAttrTypeL1} from "../../../core/EEnum";
// 逆鱗
export default class NiLin extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.NiLin;
this.name = '逆鱗';
this.icon = '1045';
this.effectDir = true;
this.desc = '變身';
this.particleEffect = 'levelup';
this.effectMap = {
[EAttrTypeL1.HP_MAX]: { add: 0.44, index: 0 },
[EAttrTypeL1.ATK_ADD]: { add: 1.46, index: 1 },
};
this.faXi = MagicType.BianShen;
this.effectPos = EffectPos.OWN;
}
getDetail():string{
return `龍族天賦技能,釋放後可提升自身30%最大生命值和20%最大攻擊力,最大追加單位數增加1個最大目標5個,治愈單位可選中倒地角色,橫掃單位選擇變為多列目標.冷卻4回合,持續2回合.`;
}
}