21 lines
676 B
TypeScript
21 lines
676 B
TypeScript
import { EAttrTypeL1 } from "../../../core/EEnum";
|
|
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
|
|
|
|
// 偷天換日・無價
|
|
export default class TouTianHuanRi3 extends SkillBase {
|
|
|
|
constructor() {
|
|
super();
|
|
this.id = ESkillType.TouTianHuanRi3;
|
|
this.name = "偷天換日・無價";
|
|
this.icon = "tthr";
|
|
this.effectDesc = "增加自身{0}的強震攝屬性";
|
|
this.effectMap = {
|
|
[EAttrTypeL1.K_DETER]: { add: 15, index: 0 },
|
|
[EAttrTypeL1.HK_DETER]: { add: 15, index: 0 },
|
|
};
|
|
this.action_type = ActionType.PASSIVE;
|
|
this.quality = ESkillQuality.FINAL;
|
|
}
|
|
}
|