Skip to content

Commit

Permalink
XIVCalc.Lumina: 7.0.0-alpha1
Browse files Browse the repository at this point in the history
  • Loading branch information
Koenari committed Oct 27, 2024
1 parent f876328 commit c8a85dc
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 10 deletions.
16 changes: 8 additions & 8 deletions XIVCalc.Lumina/LuminaJobModifiers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ namespace XIVCalc.Lumina;
public class LuminaJobModifiers(ClassJob source) : IJobModifiers
{
public Job Job => (Job)source.RowId;
public int ModifierHitPoints => source.ModifierHitPoints;
public int ModifierManaPoints => source.ModifierManaPoints;
public int ModifierStrength => source.ModifierStrength;
public int ModifierVitality => source.ModifierVitality;
public int ModifierDexterity => source.ModifierDexterity;
public int ModifierIntelligence => source.ModifierIntelligence;
public int ModifierMind => source.ModifierMind;
public int ModifierPiety => source.ModifierMind;
public int HitPoints => source.ModifierHitPoints;
public int ManaPoints => source.ModifierManaPoints;
public int Strength => source.ModifierStrength;
public int Vitality => source.ModifierVitality;
public int Dexterity => source.ModifierDexterity;
public int Intelligence => source.ModifierIntelligence;
public int Mind => source.ModifierMind;
public int Piety => source.ModifierMind;
public bool IsTank => Job.IsTank();
public StatType PrimaryStat => (StatType)source.PrimaryStat;
public bool IsCaster => Job.IsCaster();
Expand Down
16 changes: 14 additions & 2 deletions XIVCalc.Lumina/XIVCalc.Lumina.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,25 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>7.0.0-alpha1</Version>
<Title>Lumina adapter for XivCalc</Title>
<Authors>Koenari</Authors>
<RootNamespace>XIVCalc.Lumina</RootNamespace>
<PackageProjectUrl>https://github.com/Koenari/XIVCalc</PackageProjectUrl>
<RepositoryUrl>https://github.com/Koenari/XIVCalc</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Lumina.Excel" Version="7.0.0">
<PrivateAssets>contentfiles;analyzers;build;runtime</PrivateAssets>
</PackageReference>
<PackageReference Include="XIVCalc" Version="0.3.0-alpha2" />
<PackageReference Include="XIVCalc" Version="0.3.0-alpha3" />
</ItemGroup>

</Project>

0 comments on commit c8a85dc

Please sign in to comment.