e190368d62
- Split into several projects - All dalamud/lumina deps are in the plugin - Crafty/craftingway sim implemented! - optimizations to follow
14 lines
489 B
C#
14 lines
489 B
C#
namespace Craftimizer.Simulator.Actions;
|
|
|
|
internal class FocusedSynthesis : BaseAction
|
|
{
|
|
public override ActionCategory Category => ActionCategory.Synthesis;
|
|
public override int Level => 67;
|
|
public override uint ActionId => 100235;
|
|
|
|
public override int CPCost => 5;
|
|
public override float Efficiency => 2.00f;
|
|
public override bool IncreasesProgress => true;
|
|
public override float SuccessRate => Simulation.IsPreviousAction(ActionType.Observe) ? 1.00f : 0.50f;
|
|
}
|