16 lines
530 B
TypeScript
Raw Permalink Normal View History

2025-04-23 09:34:08 +08:00
import { ESkillType, EAttrTypeL1, EActionType, ESkillQuality } from "../../role/EEnum";
import SkillBase from "../core/SkillBase";
// 度厄・把玩
export default class DuE1 extends SkillBase {
constructor() {
super();
this.skill_id = ESkillType.DuE1;
this.skill_name = "度厄・把玩";
this.effectDesc = "人物和召唤兽使用澄霜成功率提高,使用银魄不良状态率减少";
this.action_type = EActionType.PASSIVE;
this.quality = ESkillQuality.LOW;
}
}