35 lines
951 B
TypeScript
Raw Permalink Normal View History

2025-04-24 17:03:28 +08:00
import SkillBase, {ActionOn, AffectType, EffectPos, ESkillType, MagicType} from "../core/SkillBase";
export default class JiangHeRiXia extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.JiangHeRiXia;
this.name = '落紙雲煙';
this.icon = "31159";
this.desc = '削弱敵方全體法傷抗性。 ';
this.skillActOn = ActionOn.ENEMY
this.particleEffect = '32259'; //特效
this.buffEffect = '25133_s'; // buff特效名字
this.skillEffectY = 0;
this.buffFront = true;
this.buffEffectY = 100;
// this.effectPos = EffectPos.BODY;
this.faXi = MagicType.SubDefense;
this.scale = AffectType.GROUP;
this.effectPos = EffectPos.STAGE;
this.vecLevelExp = [600, 5700];
}
getDetail():string{
return `使用後削弱敵方全體法傷抗性50持續3回合冷卻時間5回合。 `;
}
}