19 lines
683 B
TypeScript
19 lines
683 B
TypeScript
import { EAttrTypeL1 } from "../../../core/EEnum";
|
|
import SkillBase, { ActionType, ESkillQuality, ESkillType } from "../core/SkillBase";
|
|
|
|
// 鯤鵬之變・把玩
|
|
export default class KunPengZhiBian1 extends SkillBase {
|
|
constructor() {
|
|
super();
|
|
this.id = ESkillType.KunPengZhiBian1;
|
|
this.name = "鯤鵬之變・把玩";
|
|
this.icon = "73211";
|
|
this.effectDesc = "增加自身{0}%的加強加速屬性";
|
|
this.effectMap = {
|
|
[EAttrTypeL1.SPD_ADD_EHAN]: { add: 10, index: 0 },
|
|
[EAttrTypeL1.SPD_ADD]: { add: 10, index: 1 },
|
|
};
|
|
this.action_type = ActionType.PASSIVE;
|
|
this.quality = ESkillQuality.LOW;
|
|
}
|
|
} |