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

22 lines
448 B
C#

namespace Craftimizer.Simulator.Actions;
internal sealed class FinalAppraisal : BaseBuffAction
{
public int CP = 1;
public FinalAppraisal()
{
Category = ActionCategory.Synthesis;
Level = 42;
ActionId = 19012;
Effect = EffectType.FinalAppraisal;
Duration = 4;
IncreasesStepCount = false;
}
public override void CPCost(Simulator s, ref int cost)
{
cost = CP;
}
}