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

24 lines
852 B
TypeScript

import { EAttrTypeL1 } from "../../../core/EEnum";
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
// 斬草除根・把玩
export default class ZhanCaoChuGen1 extends SkillBase {
constructor() {
super();
this.id = ESkillType.ZhanCaoChuGen1;
this.name = "斬草除根・把玩";
this.icon = "zccg";
this.effectDesc = "增加自身{0}%的強仙法鬼火屬性";
this.effectMap = {
[EAttrTypeL1.K_WIND]: { add: 8, index: 0 },
[EAttrTypeL1.K_THUNDER]: { add: 8, index: 0 },
[EAttrTypeL1.K_WATER]: { add: 8, index: 0 },
[EAttrTypeL1.K_FIRE]: { add: 8, index: 0 },
[EAttrTypeL1.K_WILDFIRE]: { add: 8, index: 0 },
};
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.LOW;
}
}