21 lines
635 B
TypeScript
21 lines
635 B
TypeScript
|
import SkillBase, { ActionType, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
|
|||
|
|
|||
|
// 飛龍在天
|
|||
|
export default class FeiLongZaiTian extends SkillBase{
|
|||
|
constructor() {
|
|||
|
super();
|
|||
|
this.init();
|
|||
|
}
|
|||
|
|
|||
|
init() {
|
|||
|
this.id = ESkillType.FeiLongZaiTian;
|
|||
|
this.name = '飛龍在天';
|
|||
|
this.icon = "2011";
|
|||
|
this.desc = '法術攻擊3個單位。 ';
|
|||
|
this.action_type = ActionType.PASSIVE;
|
|||
|
}
|
|||
|
|
|||
|
getDetail():string{
|
|||
|
return `青龍指定使用風雷水火法術攻擊3個目標單位,傷害效果與召喚獸等級、親密以及法力上限有關。 `;
|
|||
|
}
|
|||
|
}
|