19 lines
586 B
TypeScript
19 lines
586 B
TypeScript
import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../role/EEnum";
|
|
import SkillBase from "../core/SkillBase";
|
|
|
|
// 强魅惑・无价
|
|
export default class QiangMeiHuo3 extends SkillBase {
|
|
|
|
constructor() {
|
|
super();
|
|
this.skill_id = ESkillType.QiangMeiHuo3;
|
|
this.skill_name = "强魅惑・无价";
|
|
this.effectDesc = "增加强魅惑";
|
|
this.effectMap = {
|
|
[EAttrTypeL1.CHARM_ADD]: { add: 15, index: 0 },
|
|
};
|
|
this.action_type = EActionType.PASSIVE;
|
|
this.quality = ESkillQuality.FINAL;
|
|
}
|
|
}
|