2025-04-24 17:03:28 +08:00

26 lines
811 B
TypeScript

import SkillBase, { ActionType,ESkillType } from "../core/SkillBase";
// 穆如清風
export default class MuRuQingFeng extends SkillBase{
constructor() {
super();
this.init();
}
init() {
this.id = ESkillType.MuRuQingFeng;
this.name = "穆如清風";
this.icon = "2903";
this.desc = '對友方目標使用恢復類藥品後,若目標處於被控制狀態則有一定機率為其施加一次澄霜效果,觸發機率與召喚獸等級和親密度有關。 ';
this.action_type=ActionType.PASSIVE;
this.buffEffectY = 0;
}
getDetail():string{
return `對友方目標使用恢復類藥品後,若目標處於被控制狀態則有一定機率為其施加一次澄霜效果,觸發機率與召喚獸等級和親密度有關。 `;
}
}