21 lines
751 B
TypeScript
21 lines
751 B
TypeScript
import {ESkillType, EAttrTypeL1, EActionType, ESkillQuality, EAttrTypeL2} from "../../role/EEnum";
|
|
import SkillBase from "../core/SkillBase";
|
|
|
|
// 返本修古・把玩
|
|
export default class FanBenXiuGu1 extends SkillBase {
|
|
|
|
constructor() {
|
|
super();
|
|
this.skill_id = ESkillType.FanBenXiuGu1;
|
|
this.skill_name = "返本修古・把玩";
|
|
this.effectDesc = "增加自身{0}%的强三尸属性";
|
|
this.effectMap = {
|
|
[EAttrTypeL1.K_BLOODRETURN]: { add: 8, index: 0 },
|
|
[EAttrTypeL1.HK_BLOODRETURN]: { add: 8, index: 1 },
|
|
[EAttrTypeL1.KB_BLOODRETURN]: { add: 8, index: 2 },
|
|
};
|
|
this.action_type = EActionType.PASSIVE;
|
|
this.quality = ESkillQuality.LOW;
|
|
}
|
|
}
|