23 lines
702 B
TypeScript
23 lines
702 B
TypeScript
|
import SkillBase, { ActionType,ESkillQuality, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
|
||
|
|
||
|
export default class DuanRen extends SkillBase{
|
||
|
constructor() {
|
||
|
super();
|
||
|
this.init();
|
||
|
}
|
||
|
|
||
|
init() {
|
||
|
this.id = ESkillType.DuanRen;
|
||
|
this.name = '斷刃';
|
||
|
this.icon = "10331";
|
||
|
this.desc = '具有此技能的召喚獸在場時,場上敵方人物和召喚獸的破防概率減少。 ';
|
||
|
this.action_type = ActionType.PASSIVE;
|
||
|
this.quality = ESkillQuality.FINAL;
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
getDetail():string{
|
||
|
return `具有此技能的召喚獸在場時,場上敵方人物和召喚獸的破防概率減少。 `;
|
||
|
}
|
||
|
}
|