16 lines
532 B
TypeScript
16 lines
532 B
TypeScript
import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../role/EEnum";
|
|
import SkillBase from "../core/SkillBase";
|
|
|
|
// 度厄・无价
|
|
export default class DuE3 extends SkillBase {
|
|
|
|
constructor() {
|
|
super();
|
|
this.skill_id = ESkillType.DuE3;
|
|
this.skill_name = "度厄・无价";
|
|
this.effectDesc = "人物和召唤兽使用澄霜成功率提高,使用银魄不良状态率减少";
|
|
this.action_type = EActionType.PASSIVE;
|
|
this.quality = ESkillQuality.FINAL;
|
|
}
|
|
}
|