SamsaraGame/assets/Script/ts/game/skill/low/FeiLongZaiTian.ts
2025-04-24 17:03:28 +08:00

21 lines
635 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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個目標單位傷害效果與召喚獸等級、親密以及法力上限有關。 `;
}
}