e190368d62
- Split into several projects - All dalamud/lumina deps are in the plugin - Crafty/craftingway sim implemented! - optimizations to follow
15 lines
409 B
C#
15 lines
409 B
C#
namespace Craftimizer.Simulator.Actions;
|
|
|
|
internal class MastersMend : BaseAction
|
|
{
|
|
public override ActionCategory Category => ActionCategory.Durability;
|
|
public override int Level => 7;
|
|
public override uint ActionId => 100003;
|
|
|
|
public override int CPCost => 88;
|
|
public override int DurabilityCost => 0;
|
|
|
|
public override void UseSuccess() =>
|
|
Simulation.RestoreDurability(30);
|
|
}
|