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

26 lines
933 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,ESkillQuality,ActionOn, AffectType, EAttackType, EffectPos, MagicType, ESkillType } from "../core/SkillBase";
export default class CangFengXuShi extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.CangFengXuShi;
this.name = '藏鋒蓄勢';
this.icon = "10337";
this.desc = '被動技能釋放法術攻擊之後若主人未倒地則有20%的機率給主人添加隱身效果,持續2回合';
this.action_type = ActionType.PASSIVE;
this.quality = ESkillQuality.SHEN;
this.buffEffect = 'yinshen';
this.faXi = MagicType.YinShen;
this.particleEffect = '32302';
this.skillActOn = ActionOn.SELF;
}
getDetail():string{
return `被動技能釋放法術攻擊之後若主人未倒地則有20%的機率給主人添加隱身效果,持續2回合`;
}
}