23 lines
859 B
TypeScript
23 lines
859 B
TypeScript
import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../role/EEnum";
|
|
import SkillBase from "../core/SkillBase";
|
|
|
|
// 斩草除根・无价
|
|
export default class ZhanCaoChuGen3 extends SkillBase {
|
|
|
|
constructor() {
|
|
super();
|
|
this.skill_id = ESkillType.ZhanCaoChuGen3;
|
|
this.skill_name = "斩草除根・无价";
|
|
this.effectDesc = "增加自身{0}%的强仙法鬼火属性";
|
|
this.effectMap = {
|
|
[EAttrTypeL1.HK_WIND]: { add: 16, index: 0 },
|
|
[EAttrTypeL1.HK_THUNDER]: { add: 16, index: 0 },
|
|
[EAttrTypeL1.HK_WATER]: { add: 16, index: 0 },
|
|
[EAttrTypeL1.HK_FIRE]: { add: 16, index: 0 },
|
|
[EAttrTypeL1.HK_WILDFIRE]: { add: 16, index: 0 },
|
|
};
|
|
this.action_type = EActionType.PASSIVE;
|
|
this.quality = ESkillQuality.FINAL;
|
|
}
|
|
}
|