20 lines
688 B
TypeScript
20 lines
688 B
TypeScript
import { EAttrTypeL1 } from "../../../core/EEnum";
|
|
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
|
|
|
|
// 起死回生・無價
|
|
export default class QiShiHuiSheng3 extends SkillBase {
|
|
constructor() {
|
|
super();
|
|
this.id = ESkillType.QiShiHuiSheng3;
|
|
this.name = "起死回生・無價";
|
|
this.icon = "qshs";
|
|
this.effectDesc = "增加自身{0}%的強三尸屬性";
|
|
this.effectMap = {
|
|
[EAttrTypeL1.K_BLOODRETURN]: { add: 14, index: 0 },
|
|
[EAttrTypeL1.HK_BLOODRETURN]: { add: 14, index: 0 },
|
|
};
|
|
this.action_type = ActionType.PASSIVE;
|
|
this.quality = ESkillQuality.FINAL;
|
|
}
|
|
}
|