2025-04-24 17:03:28 +08:00

22 lines
683 B
TypeScript

import SkillBase, { ActionType,ESkillQuality, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
export default class DiZhi extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.DiZhi;
this.name = '抵制';
this.icon = "10332";
this.desc = '具有此技能的召喚獸在場時,場上敵方人物和召喚獸的連擊率減少。 ';
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.FINAL;
}
getDetail():string{
return `具有此技能的召喚獸在場時,場上敵方人物和召喚獸的連擊率減少。 `;
}
}