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

20 lines
399 B
C#

namespace Craftimizer.Simulator.Actions;
internal sealed class Innovation : BaseBuffAction
{
public Innovation()
{
Level = 26;
Effect = EffectType.Innovation;
MacroWaitTime = 3;
ActionId = 19004;
Category = ActionCategory.Buffs;
Duration = 4;
}
public override void CPCost(Simulator s, ref int cost)
{
cost = 18;
}
}