20 lines
679 B
TypeScript
Raw Permalink 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 WeiXinYiZhi1 extends SkillBase {
constructor() {
super();
this.id = ESkillType.WeiXinYiZhi1;
this.name = "違心一致・把玩";
this.icon = "wxyz";
this.effectDesc = "增加自身{0}%的加強混亂屬性";
this.effectMap = {
[EAttrTypeL1.K_CONFUSION]: { add: 5, index: 0 },
[EAttrTypeL1.HK_CONFUSION]: { add: 5, index: 0 },
};
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.LOW;
}
}