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

25 lines
933 B
TypeScript

import SkillBase, { AffectType, EAttackType,EffectPos, MagicType, ESkillType } from "../core/SkillBase";
// 天降脫兔
export default class TianJiangTuoTu extends SkillBase {
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.TianJiangTuoTu;
this.name = '天降脫兔';
this.icon = '31139';
this.desc = '龍兔甩動手鼓釋放3個小兔子對敵方單位進行物理攻擊。傷害效果跟召喚獸等級、親密、攻擊力、狂暴、破防等相關。 ';
this.faXi = MagicType.Physics;
this.atkType = EAttackType.REMOTE;
this.scale=AffectType.GROUP;
this.particleEffect = '10011';
this.vecLevelExp = [1700, 13000];
}
getDetail():string{
return `龍兔甩動手鼓釋放3個小兔子對敵方單位進行物理攻擊。傷害效果跟召喚獸等級、親密、攻擊力、狂暴、破防等相關。 `;
}
}