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

19 lines
372 B
C#

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