19 lines
639 B
TypeScript
19 lines
639 B
TypeScript
|
import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../role/EEnum";
|
||
|
import SkillBase from "../core/SkillBase";
|
||
|
|
||
|
// 饮血・把玩
|
||
|
export default class YinXue1 extends SkillBase {
|
||
|
|
||
|
constructor() {
|
||
|
super();
|
||
|
this.skill_id = ESkillType.YinXue1;
|
||
|
this.skill_name = "饮血・把玩";
|
||
|
this.effectDesc = "(仅PVE生效) 每次施法命中或击倒对面,回复气血。可恢复倒地单位";
|
||
|
this.effectMap = {
|
||
|
[EAttrTypeL1.HK_FORGET]: { add: 7, index: 0 },
|
||
|
};
|
||
|
this.action_type = EActionType.PASSIVE;
|
||
|
this.quality = ESkillQuality.LOW;
|
||
|
}
|
||
|
}
|