-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
feb046b
commit 100f430
Showing
17 changed files
with
69 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,26 @@ | ||
using Dalamud.Utility; | ||
using ExdSheets; | ||
using ExdSheets.Sheets; | ||
using Lumina.Data; | ||
using Lumina.Excel; | ||
using Lumina.Excel.Sheets; | ||
|
||
namespace Craftimizer.Plugin; | ||
|
||
public static class LuminaSheets | ||
{ | ||
private static readonly Module Module = new(Service.DataManager.GameData, Service.DataManager.Language.ToLumina()); | ||
private static readonly ExcelModule Module = Service.DataManager.GameData.Excel; | ||
|
||
public static readonly Sheet<Recipe> RecipeSheet = Module.GetSheet<Recipe>(); | ||
public static readonly Sheet<Action> ActionSheet = Module.GetSheet<Action>(); | ||
public static readonly Sheet<CraftAction> CraftActionSheet = Module.GetSheet<CraftAction>(); | ||
public static readonly Sheet<Status> StatusSheet = Module.GetSheet<Status>(); | ||
public static readonly Sheet<Addon> AddonSheet = Module.GetSheet<Addon>(); | ||
public static readonly Sheet<ClassJob> ClassJobSheet = Module.GetSheet<ClassJob>(); | ||
public static readonly Sheet<Item> ItemSheet = Module.GetSheet<Item>(); | ||
public static readonly Sheet<Item> ItemSheetEnglish = Module.GetSheet<Item>(Language.English)!; | ||
public static readonly Sheet<ENpcResident> ENpcResidentSheet = Module.GetSheet<ENpcResident>(); | ||
public static readonly Sheet<Level> LevelSheet = Module.GetSheet<Level>(); | ||
public static readonly Sheet<Quest> QuestSheet = Module.GetSheet<Quest>(); | ||
public static readonly Sheet<Materia> MateriaSheet = Module.GetSheet<Materia>(); | ||
public static readonly Sheet<BaseParam> BaseParamSheet = Module.GetSheet<BaseParam>(); | ||
public static readonly Sheet<ItemFood> ItemFoodSheet = Module.GetSheet<ItemFood>(); | ||
public static readonly Sheet<SatisfactionSupply> SatisfactionSupplySheet = Module.GetSheet<SatisfactionSupply>(); | ||
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<ENpcResident> ENpcResidentSheet = Module.GetSheet<ENpcResident>(); | ||
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 SubrowExcelSheet<SatisfactionSupply> SatisfactionSupplySheet = Module.GetSubrowSheet<SatisfactionSupply>(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.