32 lines
731 B
TypeScript
32 lines
731 B
TypeScript
import SkillBase, {
|
|
ActionOn,
|
|
ActionType,
|
|
AffectType,
|
|
EAttackType,
|
|
EffectPos,
|
|
MagicType,
|
|
ESkillType,
|
|
ESkillQuality
|
|
} from "../core/SkillBase";
|
|
// 高級脫困術
|
|
export default class HighTuoKunShu extends SkillBase{
|
|
constructor() {
|
|
super();
|
|
this.init();
|
|
}
|
|
|
|
init() {
|
|
this.id = ESkillType.HighTuoKunShu;
|
|
this.name = '高級脫困術';
|
|
this.icon = "31157";
|
|
this.desc = '回合開始時有機率擺脫封印狀態。 ';
|
|
this.quality = ESkillQuality.HIGH; //技能 品質
|
|
this.action_type = ActionType.PASSIVE;
|
|
}
|
|
|
|
getDetail():string{
|
|
return `回合開始時有機率擺脫封印狀態。 (機率與召喚獸等級、親密度相關)`;
|
|
}
|
|
}
|
|
|