20 lines
683 B
TypeScript
20 lines
683 B
TypeScript
|
import { EAttrTypeL1 } from "../../../core/EEnum";
|
||
|
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
|
||
|
|
||
|
// 違心一致・無價
|
||
|
export default class WeiXinYiZhi3 extends SkillBase {
|
||
|
constructor() {
|
||
|
super();
|
||
|
this.id = ESkillType.WeiXinYiZhi3;
|
||
|
this.name = "違心一致・無價";
|
||
|
this.icon = "wxyz";
|
||
|
this.effectDesc = "增加自身{0}%的加強混亂屬性";
|
||
|
this.effectMap = {
|
||
|
[EAttrTypeL1.K_CONFUSION]: { add: 10, index: 0 },
|
||
|
[EAttrTypeL1.HK_CONFUSION]: { add: 10, index: 0 },
|
||
|
};
|
||
|
this.action_type = ActionType.PASSIVE;
|
||
|
this.quality = ESkillQuality.FINAL;
|
||
|
}
|
||
|
}
|