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

27 lines
537 B
C#

namespace Craftimizer.Simulator.Actions;
internal sealed class DelicateSynthesis : BaseAction
{
public int CP = 32;
public int Eff = 100;
public DelicateSynthesis()
{
Category = ActionCategory.Synthesis;
Level = 76;
ActionId = 100323;
IncreasesProgress = true;
IncreasesQuality = true;
}
public override void CPCost(Simulator s, ref int cost)
{
cost = CP;
}
public override void Efficiency(Simulator s, ref int eff)
{
eff = Eff;
}
}