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