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