20 lines
688 B
TypeScript
Raw Normal View History

2025-04-24 17:03:28 +08:00
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;
}
}