xy-server/game/skill/baldric/FengMangBiLu1.ts

21 lines
756 B
TypeScript
Raw Permalink Normal View History

2025-04-23 09:34:08 +08:00
import {ESkillType, EAttrTypeL1, EActionType, ESkillQuality, EAttrTypeL2} from "../../role/EEnum";
import SkillBase from "../core/SkillBase";
// 锋芒毕露・把玩
export default class FengMangBiLu1 extends SkillBase {
constructor() {
super();
this.skill_id = ESkillType.FengMangBiLu1;
this.skill_name = "锋芒毕露・把玩";
this.effectDesc = "增加自身{0}%的强三尸属性";
this.effectMap = {
[EAttrTypeL1.K_BLOODRETURN]: { add: 10, index: 0 },
[EAttrTypeL1.HK_BLOODRETURN]: { add: 10, index: 1 },
[EAttrTypeL1.KB_BLOODRETURN]: { add: 10, index: 2 },
};
this.action_type = EActionType.PASSIVE;
this.quality = ESkillQuality.LOW;
}
}