Files
Craftimizer/Simulator/Actions/WasteNot2.cs
T
2024-03-15 10:31:05 -07:00

25 lines
530 B
C#

namespace Craftimizer.Simulator.Actions;
internal sealed class WasteNot2 : BaseBuffAction
{
public WasteNot2()
{
Category = ActionCategory.Durability;
Level = 47;
ActionId = 4639;
Effect = EffectType.WasteNot2;
Duration = 8;
}
public override void CPCost(Simulator s, ref int cost)
{
cost = 98;
}
public override void UseSuccess(Simulator s, ref int eff)
{
base.UseSuccess(s, ref eff);
s.RemoveEffect(EffectType.WasteNot);
}
}