b598c03e9e
Reformats the entire Craftimizer source tree with dotnet csharpier 1.2.6 to match the Hellion Forge house style (matches what HellionChat enforces in its pre-push pipeline). Pure whitespace + using-block sorting; no semantic changes. This is a one-time noisy commit. Future code edits in this fork should land csharpier-clean because the pre-push hook (introduced in the next commit) runs `dotnet csharpier check Craftimizer/` as Block C of the preflight gate. Trade-off acknowledged: this widens the merge gap with upstream Craftimizer should Asriel ever resume maintenance. Given the upstream has been dormant since FFXIV 7.4 and the fork is light-rename only (internal namespaces unchanged), the marginal cost is acceptable.
34 lines
1.8 KiB
C#
34 lines
1.8 KiB
C#
using Lumina.Data;
|
|
using Lumina.Excel;
|
|
using Lumina.Excel.Sheets;
|
|
|
|
namespace Craftimizer.Plugin;
|
|
|
|
public static class LuminaSheets
|
|
{
|
|
private static readonly ExcelModule Module = Service.DataManager.GameData.Excel;
|
|
|
|
public static readonly ExcelSheet<Recipe> RecipeSheet = Module.GetSheet<Recipe>();
|
|
public static readonly ExcelSheet<Action> ActionSheet = Module.GetSheet<Action>();
|
|
public static readonly ExcelSheet<CraftAction> CraftActionSheet =
|
|
Module.GetSheet<CraftAction>();
|
|
public static readonly ExcelSheet<Status> StatusSheet = Module.GetSheet<Status>();
|
|
public static readonly ExcelSheet<Addon> AddonSheet = Module.GetSheet<Addon>();
|
|
public static readonly ExcelSheet<ClassJob> ClassJobSheet = Module.GetSheet<ClassJob>();
|
|
public static readonly ExcelSheet<Item> ItemSheet = Module.GetSheet<Item>();
|
|
public static readonly ExcelSheet<Item> ItemSheetEnglish = Module.GetSheet<Item>(
|
|
Language.English
|
|
)!;
|
|
public static readonly ExcelSheet<Level> LevelSheet = Module.GetSheet<Level>();
|
|
public static readonly ExcelSheet<Quest> QuestSheet = Module.GetSheet<Quest>();
|
|
public static readonly ExcelSheet<Materia> MateriaSheet = Module.GetSheet<Materia>();
|
|
public static readonly ExcelSheet<BaseParam> BaseParamSheet = Module.GetSheet<BaseParam>();
|
|
public static readonly ExcelSheet<ItemFood> ItemFoodSheet = Module.GetSheet<ItemFood>();
|
|
public static readonly ExcelSheet<WKSMissionToDoEvalutionRefin> WKSMissionToDoEvalutionRefinSheet =
|
|
Module.GetSheet<WKSMissionToDoEvalutionRefin>();
|
|
public static readonly ExcelSheet<RecipeLevelTable> RecipeLevelTableSheet =
|
|
Module.GetSheet<RecipeLevelTable>();
|
|
public static readonly ExcelSheet<GathererCrafterLvAdjustTable> GathererCrafterLvAdjustTableSheet =
|
|
Module.GetSheet<GathererCrafterLvAdjustTable>();
|
|
}
|