e190368d62
- Split into several projects - All dalamud/lumina deps are in the plugin - Crafty/craftingway sim implemented! - optimizations to follow
13 lines
370 B
C#
13 lines
370 B
C#
namespace Craftimizer.Simulator.Actions;
|
|
|
|
internal class Innovation : BaseBuffAction
|
|
{
|
|
public override ActionCategory Category => ActionCategory.Buffs;
|
|
public override int Level => 26;
|
|
public override uint ActionId => 19004;
|
|
|
|
public override int CPCost => 18;
|
|
|
|
public override Effect Effect => new() { Type = EffectType.Innovation, Duration = 4 };
|
|
}
|