xy-server/game/skill/ofuda/ZhuShen1.ts

24 lines
911 B
TypeScript
Raw Permalink Normal View History

2025-04-23 09:34:08 +08:00
import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../role/EEnum";
import SkillBase from "../core/SkillBase";
// 诛神・把玩
export default class ZhuShen1 extends SkillBase {
constructor() {
super();
this.skill_id = ESkillType.ZhuShen1;
this.skill_name = "诛神・把玩";
this.effectDesc = "对召唤兽忽视抗控制、忽视伤法、破防程度增加";
this.effectMap = {
[EAttrTypeL1.HK_WIND]: { add: 7, index: 0 },
[EAttrTypeL1.HK_FIRE]: { add: 7, index: 1 },
[EAttrTypeL1.HK_WATER]: { add: 7, index: 2 },
[EAttrTypeL1.HK_THUNDER]: { add: 7, index: 3 },
[EAttrTypeL1.HK_CONFUSION]: { add: 7, index: 4 },
[EAttrTypeL1.PHY_BREAK]: { add: 7, index: 5 },
};
this.action_type = EActionType.PASSIVE;
this.quality = ESkillQuality.LOW;
}
}