Remove threadlocal dependence

This commit is contained in:
Asriel Camora
2023-06-21 13:20:05 -07:00
parent 0f2267dabf
commit 5faaa02f1a
43 changed files with 279 additions and 244 deletions
+5 -4
View File
@@ -6,9 +6,10 @@ internal sealed class RapidSynthesis : BaseAction
public override int Level => 9;
public override uint ActionId => 100363;
public override int CPCost => 0;
// Rapid Synthesis Mastery Trait
public override float Efficiency => Simulation.Input.Stats.Level >= 63 ? 5.00f : 2.50f;
public override bool IncreasesProgress => true;
public override float SuccessRate => 0.50f;
public override int CPCost(Simulator s) => 0;
// Rapid Synthesis Mastery Trait
public override float Efficiency(Simulator s) => s.Input.Stats.Level >= 63 ? 5.00f : 2.50f;
public override float SuccessRate(Simulator s) => 0.50f;
}