Files
Craftimizer/Simulator/Actions/CarefulSynthesis.cs
T
2023-11-04 11:43:34 -07:00

15 lines
486 B
C#

namespace Craftimizer.Simulator.Actions;
internal sealed class CarefulSynthesis : BaseAction
{
public override ActionCategory Category => ActionCategory.Synthesis;
public override int Level => 62;
public override uint ActionId => 100203;
public override bool IncreasesProgress => true;
public override int CPCost(Simulator s) => 7;
// Careful Synthesis Mastery Trait
public override int Efficiency(Simulator s) => s.Input.Stats.Level >= 82 ? 180 : 150;
}