Remove ref passing, but keep devirtualizations

This commit is contained in:
Asriel Camora
2024-03-16 13:24:26 -07:00
parent 3223bdcbfb
commit ec77f1d021
48 changed files with 411 additions and 787 deletions
+8 -22
View File
@@ -1,27 +1,13 @@
namespace Craftimizer.Simulator.Actions;
internal sealed class CarefulSynthesis : BaseAction
internal sealed class CarefulSynthesis() : BaseAction(
ActionCategory.Synthesis, 62, 100203,
increasesProgress: true,
defaultCPCost: 7,
defaultEfficiency: 150
)
{
public int CP = 7;
public int EfficiencyNormal = 150;
public int EfficiencyMastery = 180;
public CarefulSynthesis()
{
Category = ActionCategory.Synthesis;
Level = 62;
ActionId = 100203;
IncreasesProgress = true;
}
public override void CPCost(Simulator s, ref int cost)
{
cost = CP;
}
// Careful Synthesis Mastery Trait
public override void Efficiency(Simulator s, ref int eff)
{
eff = s.Input.Stats.Level >= 82 ? EfficiencyMastery : EfficiencyNormal;
}
public override int Efficiency(Simulator s) =>
s.Input.Stats.Level >= 82 ? 180 : 150;
}