xy-server/game/skill/ofuda/SiHaiChengFeng2.ts

16 lines
574 B
TypeScript
Raw 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 SiHaiChengFeng2 extends SkillBase {
constructor() {
super();
this.skill_id = ESkillType.SiHaiChengFeng2;
this.skill_name = "四海承风・珍藏";
this.effectDesc = "新出场的召唤兽(不含首发)一定几率携带,加防、加速或加攻状态";
this.action_type = EActionType.PASSIVE;
this.quality = ESkillQuality.HIGH;
}
}