Add crafting actions and plugin stuff and everything

This commit is contained in:
Asriel Camora
2023-06-13 11:54:49 -07:00
parent bea568013c
commit f75220bc36
47 changed files with 965 additions and 43 deletions
+16
View File
@@ -0,0 +1,16 @@
using System.Linq;
using Craftimizer.Plugin;
namespace Craftimizer.Simulator;
internal record CharacterStats
{
public int Craftsmanship { get; }
public int Control { get; }
public int CP { get; }
public int Level { get; }
public int CLvl => Level <= 80
? LuminaSheets.ParamGrowSheet.GetRow((uint)Level)!.CraftingLevel
: (int)LuminaSheets.RecipeLevelTableSheet.First(r => r.ClassJobLevel == Level).RowId;
}