LuminaSupplemental.Excel 2.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package LuminaSupplemental.Excel --version 2.0.1                
NuGet\Install-Package LuminaSupplemental.Excel -Version 2.0.1                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="LuminaSupplemental.Excel" Version="2.0.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add LuminaSupplemental.Excel --version 2.0.1                
#r "nuget: LuminaSupplemental.Excel, 2.0.1"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install LuminaSupplemental.Excel as a Cake Addin
#addin nuget:?package=LuminaSupplemental.Excel&version=2.0.1

// Install LuminaSupplemental.Excel as a Cake Tool
#tool nuget:?package=LuminaSupplemental.Excel&version=2.0.1                

Lumina Supplemental

Lumina Supplemental is an additional library that provides additional data that the game's data sheets do not provide.

While this is not an exhaustive list(as more gets added all the time), it provides

  • Airship/Submarine Unlocks
  • Airship/Submarine Voyage Items
  • Dungeon Drops
  • Dungeon Boss Drops
  • Dungeon Chest Items
  • Extra Event NPC Locations
  • Extra Event NPC Shops
  • Item Patch Data
  • Supplemental Item Data(Desynth,Reduction,Loot,Gardening,Coffer Contents)
  • Mob Drop Data(This is user sourced, if you want to help out please check out Allagan Tool's mob tracker)
  • Mob Spawn Data(As above)
  • Retainer Venture Items
  • Extra Shop Names
  • SQ Paid Shop Items

To load a specific CSV (Dungeon Bosses as an example):

try
{
    var lines = CsvLoader.LoadResource<DungeonBoss>(CsvLoader.DungeonBossResourceName, out var failedLines, GameData, GameData.Options.DefaultExcelLanguage);
    if (failedLines.Count != 0)
    {
        foreach (var failedLine in failedLines)
        {
            PluginLog.Error("Failed to load line from " + title + ": " + failedLine);
        }
    }
    return lines;
}
catch (Exception e)
{
    PluginLog.Error("Failed to load " + title);
    PluginLog.Error(e.Message);
}
return new List<T>();

Feel free to submit a PR if any of the data is wrong or you have additional data that could be added.

Product Compatible and additional computed target framework versions.
.NET net8.0-windows7.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.6 211 7/30/2024
2.0.5 106 7/23/2024
2.0.4 73 7/22/2024
2.0.3 107 7/21/2024
2.0.2 79 7/19/2024
2.0.1 69 7/18/2024
2.0.0 208 7/10/2024