25 lines
790 B
TypeScript
25 lines
790 B
TypeScript
import {EAttrTypeL1, EHorsePASV} from "../../../../core/EEnum";
|
|
import SkillBase, {ActionType, ESkillQuality, ESkillType} from "../../core/SkillBase";
|
|
|
|
// 高級貫木決
|
|
export default class HighGuanMuJue extends SkillBase {
|
|
constructor() {
|
|
super();
|
|
this.init();
|
|
}
|
|
|
|
init() {
|
|
this.id = ESkillType.HighGuanMuJue;
|
|
this.name = "高級貫木決";
|
|
this.icon = "gmj";
|
|
this.desc = "若對面木五行>=50, 則物理攻擊傷害額外增加";
|
|
this.effectDesc = "[E]若對面木五行>=50, 則則物理傷害額外增加{0}%";
|
|
this.effectMap = {
|
|
[EAttrTypeL1.HP_PERC]: { add: 6.05, index: 0 },
|
|
};
|
|
this.attrDesc = "五行加成";
|
|
this.action_type = ActionType.PASSIVE;
|
|
this.quality = ESkillQuality.HIGH;
|
|
}
|
|
|
|
} |