Skip to content

Commit

Permalink
update sheets
Browse files Browse the repository at this point in the history
  • Loading branch information
NotAdam committed Jun 24, 2020
1 parent 431ba91 commit 2e1d0cc
Show file tree
Hide file tree
Showing 588 changed files with 2,092 additions and 3,038 deletions.
5 changes: 3 additions & 2 deletions src/Lumina.Generated/Excel/GeneratedSheets/AOZArrangement.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using Lumina.Data;
using Lumina.Data.Structs.Excel;

namespace Lumina.Excel.GeneratedSheets
Expand All @@ -12,12 +13,12 @@ public class AOZArrangement : IExcelRow
public uint RowId { get; set; }
public uint SubRowId { get; set; }

public void PopulateData( RowParser parser, Lumina lumina )
public void PopulateData( RowParser parser, Lumina lumina, Language language )
{
RowId = parser.Row;
SubRowId = parser.SubRow;

AOZContentBriefingBNpc = new LazyRow< AOZContentBriefingBNpc >( lumina, parser.ReadColumn< ushort >( 0 ) );
AOZContentBriefingBNpc = new LazyRow< AOZContentBriefingBNpc >( lumina, parser.ReadColumn< ushort >( 0 ), language );
Unknown1 = parser.ReadColumn< ushort >( 1 );
}
}
Expand Down
5 changes: 3 additions & 2 deletions src/Lumina.Generated/Excel/GeneratedSheets/AOZBoss.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using Lumina.Data;
using Lumina.Data.Structs.Excel;

namespace Lumina.Excel.GeneratedSheets
Expand All @@ -12,12 +13,12 @@ public class AOZBoss : IExcelRow
public uint RowId { get; set; }
public uint SubRowId { get; set; }

public void PopulateData( RowParser parser, Lumina lumina )
public void PopulateData( RowParser parser, Lumina lumina, Language language )
{
RowId = parser.Row;
SubRowId = parser.SubRow;

Boss = new LazyRow< AOZContentBriefingBNpc >( lumina, parser.ReadColumn< ushort >( 0 ) );
Boss = new LazyRow< AOZContentBriefingBNpc >( lumina, parser.ReadColumn< ushort >( 0 ), language );
Unknown1 = parser.ReadColumn< ushort >( 1 );
}
}
Expand Down
3 changes: 2 additions & 1 deletion src/Lumina.Generated/Excel/GeneratedSheets/AOZContent.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using Lumina.Data;
using Lumina.Data.Structs.Excel;

namespace Lumina.Excel.GeneratedSheets
Expand Down Expand Up @@ -26,7 +27,7 @@ public class AOZContent : IExcelRow
public uint RowId { get; set; }
public uint SubRowId { get; set; }

public void PopulateData( RowParser parser, Lumina lumina )
public void PopulateData( RowParser parser, Lumina lumina, Language language )
{
RowId = parser.Row;
SubRowId = parser.SubRow;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using Lumina.Data;
using Lumina.Data.Structs.Excel;

namespace Lumina.Excel.GeneratedSheets
Expand Down Expand Up @@ -35,12 +36,12 @@ public class AOZContentBriefingBNpc : IExcelRow
public uint RowId { get; set; }
public uint SubRowId { get; set; }

public void PopulateData( RowParser parser, Lumina lumina )
public void PopulateData( RowParser parser, Lumina lumina, Language language )
{
RowId = parser.Row;
SubRowId = parser.SubRow;

BNpcName = new LazyRow< BNpcName >( lumina, parser.ReadColumn< uint >( 0 ) );
BNpcName = new LazyRow< BNpcName >( lumina, parser.ReadColumn< uint >( 0 ), language );
TargetSmall = parser.ReadColumn< uint >( 1 );
TargetLarge = parser.ReadColumn< uint >( 2 );
Unknown3 = parser.ReadColumn< bool >( 3 );
Expand Down
3 changes: 2 additions & 1 deletion src/Lumina.Generated/Excel/GeneratedSheets/AOZReport.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using Lumina.Data;
using Lumina.Data.Structs.Excel;

namespace Lumina.Excel.GeneratedSheets
Expand All @@ -13,7 +14,7 @@ public class AOZReport : IExcelRow
public uint RowId { get; set; }
public uint SubRowId { get; set; }

public void PopulateData( RowParser parser, Lumina lumina )
public void PopulateData( RowParser parser, Lumina lumina, Language language )
{
RowId = parser.Row;
SubRowId = parser.SubRow;
Expand Down
11 changes: 6 additions & 5 deletions src/Lumina.Generated/Excel/GeneratedSheets/Achievement.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using Lumina.Data;
using Lumina.Data.Structs.Excel;

namespace Lumina.Excel.GeneratedSheets
Expand All @@ -24,17 +25,17 @@ public class Achievement : IExcelRow
public uint RowId { get; set; }
public uint SubRowId { get; set; }

public void PopulateData( RowParser parser, Lumina lumina )
public void PopulateData( RowParser parser, Lumina lumina, Language language )
{
RowId = parser.Row;
SubRowId = parser.SubRow;

AchievementCategory = new LazyRow< AchievementCategory >( lumina, parser.ReadColumn< byte >( 0 ) );
AchievementCategory = new LazyRow< AchievementCategory >( lumina, parser.ReadColumn< byte >( 0 ), language );
Name = parser.ReadColumn< string >( 1 );
Description = parser.ReadColumn< string >( 2 );
Points = parser.ReadColumn< byte >( 3 );
Title = new LazyRow< Title >( lumina, parser.ReadColumn< ushort >( 4 ) );
Item = new LazyRow< Item >( lumina, parser.ReadColumn< uint >( 5 ) );
Title = new LazyRow< Title >( lumina, parser.ReadColumn< ushort >( 4 ), language );
Item = new LazyRow< Item >( lumina, parser.ReadColumn< uint >( 5 ), language );
Icon = parser.ReadColumn< ushort >( 6 );
Unknown7 = parser.ReadColumn< byte >( 7 );
Type = parser.ReadColumn< byte >( 8 );
Expand All @@ -44,7 +45,7 @@ public void PopulateData( RowParser parser, Lumina lumina )
Data[ i ] = parser.ReadColumn< int >( 10 + i );
Order = parser.ReadColumn< ushort >( 18 );
Unknown19 = parser.ReadColumn< byte >( 19 );
AchievementHideCondition = new LazyRow< AchievementHideCondition >( lumina, parser.ReadColumn< byte >( 20 ) );
AchievementHideCondition = new LazyRow< AchievementHideCondition >( lumina, parser.ReadColumn< byte >( 20 ), language );
}
}
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using Lumina.Data;
using Lumina.Data.Structs.Excel;

namespace Lumina.Excel.GeneratedSheets
Expand All @@ -15,13 +16,13 @@ public class AchievementCategory : IExcelRow
public uint RowId { get; set; }
public uint SubRowId { get; set; }

public void PopulateData( RowParser parser, Lumina lumina )
public void PopulateData( RowParser parser, Lumina lumina, Language language )
{
RowId = parser.Row;
SubRowId = parser.SubRow;

Name = parser.ReadColumn< string >( 0 );
AchievementKind = new LazyRow< AchievementKind >( lumina, parser.ReadColumn< byte >( 1 ) );
AchievementKind = new LazyRow< AchievementKind >( lumina, parser.ReadColumn< byte >( 1 ), language );
ShowComplete = parser.ReadColumn< bool >( 2 );
HideCategory = parser.ReadColumn< bool >( 3 );
Order = parser.ReadColumn< byte >( 4 );
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using Lumina.Data;
using Lumina.Data.Structs.Excel;

namespace Lumina.Excel.GeneratedSheets
Expand All @@ -13,7 +14,7 @@ public class AchievementHideCondition : IExcelRow
public uint RowId { get; set; }
public uint SubRowId { get; set; }

public void PopulateData( RowParser parser, Lumina lumina )
public void PopulateData( RowParser parser, Lumina lumina, Language language )
{
RowId = parser.Row;
SubRowId = parser.SubRow;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using Lumina.Data;
using Lumina.Data.Structs.Excel;

namespace Lumina.Excel.GeneratedSheets
Expand All @@ -12,7 +13,7 @@ public class AchievementKind : IExcelRow
public uint RowId { get; set; }
public uint SubRowId { get; set; }

public void PopulateData( RowParser parser, Lumina lumina )
public void PopulateData( RowParser parser, Lumina lumina, Language language )
{
RowId = parser.Row;
SubRowId = parser.SubRow;
Expand Down
27 changes: 14 additions & 13 deletions src/Lumina.Generated/Excel/GeneratedSheets/Action.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using Lumina.Data;
using Lumina.Data.Structs.Excel;

namespace Lumina.Excel.GeneratedSheets
Expand Down Expand Up @@ -76,22 +77,22 @@ public class Action : IExcelRow
public uint RowId { get; set; }
public uint SubRowId { get; set; }

public void PopulateData( RowParser parser, Lumina lumina )
public void PopulateData( RowParser parser, Lumina lumina, Language language )
{
RowId = parser.Row;
SubRowId = parser.SubRow;

Name = parser.ReadColumn< string >( 0 );
Unknown1 = parser.ReadColumn< bool >( 1 );
Icon = parser.ReadColumn< ushort >( 2 );
ActionCategory = new LazyRow< ActionCategory >( lumina, parser.ReadColumn< byte >( 3 ) );
ActionCategory = new LazyRow< ActionCategory >( lumina, parser.ReadColumn< byte >( 3 ), language );
Unknown4 = parser.ReadColumn< byte >( 4 );
AnimationStart = new LazyRow< ActionCastTimeline >( lumina, parser.ReadColumn< byte >( 5 ) );
VFX = new LazyRow< ActionCastVFX >( lumina, parser.ReadColumn< byte >( 6 ) );
AnimationEnd = new LazyRow< ActionTimeline >( lumina, parser.ReadColumn< short >( 7 ) );
ActionTimelineHit = new LazyRow< ActionTimeline >( lumina, parser.ReadColumn< ushort >( 8 ) );
AnimationStart = new LazyRow< ActionCastTimeline >( lumina, parser.ReadColumn< byte >( 5 ), language );
VFX = new LazyRow< ActionCastVFX >( lumina, parser.ReadColumn< byte >( 6 ), language );
AnimationEnd = new LazyRow< ActionTimeline >( lumina, parser.ReadColumn< short >( 7 ), language );
ActionTimelineHit = new LazyRow< ActionTimeline >( lumina, parser.ReadColumn< ushort >( 8 ), language );
Unknown9 = parser.ReadColumn< byte >( 9 );
ClassJob = new LazyRow< ClassJob >( lumina, parser.ReadColumn< sbyte >( 10 ) );
ClassJob = new LazyRow< ClassJob >( lumina, parser.ReadColumn< sbyte >( 10 ), language );
BehaviourType = parser.ReadColumn< byte >( 11 );
ClassJobLevel = parser.ReadColumn< byte >( 12 );
IsRoleAction = parser.ReadColumn< bool >( 13 );
Expand All @@ -116,24 +117,24 @@ public void PopulateData( RowParser parser, Lumina lumina )
PrimaryCostValue = parser.ReadColumn< ushort >( 32 );
SecondaryCostType = parser.ReadColumn< byte >( 33 );
SecondaryCostValue = parser.ReadColumn< ushort >( 34 );
ActionCombo = new LazyRow< Action >( lumina, parser.ReadColumn< ushort >( 35 ) );
ActionCombo = new LazyRow< Action >( lumina, parser.ReadColumn< ushort >( 35 ), language );
PreservesCombo = parser.ReadColumn< bool >( 36 );
Cast100ms = parser.ReadColumn< ushort >( 37 );
Recast100ms = parser.ReadColumn< ushort >( 38 );
CooldownGroup = parser.ReadColumn< byte >( 39 );
Unknown40 = parser.ReadColumn< byte >( 40 );
MaxCharges = parser.ReadColumn< byte >( 41 );
AttackType = new LazyRow< AttackType >( lumina, parser.ReadColumn< sbyte >( 42 ) );
AttackType = new LazyRow< AttackType >( lumina, parser.ReadColumn< sbyte >( 42 ), language );
Aspect = parser.ReadColumn< byte >( 43 );
ActionProcStatus = new LazyRow< ActionProcStatus >( lumina, parser.ReadColumn< byte >( 44 ) );
ActionProcStatus = new LazyRow< ActionProcStatus >( lumina, parser.ReadColumn< byte >( 44 ), language );
Unknown45 = parser.ReadColumn< byte >( 45 );
StatusGainSelf = new LazyRow< Status >( lumina, parser.ReadColumn< ushort >( 46 ) );
StatusGainSelf = new LazyRow< Status >( lumina, parser.ReadColumn< ushort >( 46 ), language );
UnlockLink = parser.ReadColumn< uint >( 47 );
ClassJobCategory = new LazyRow< ClassJobCategory >( lumina, parser.ReadColumn< byte >( 48 ) );
ClassJobCategory = new LazyRow< ClassJobCategory >( lumina, parser.ReadColumn< byte >( 48 ), language );
Unknown49 = parser.ReadColumn< byte >( 49 );
Unknown50 = parser.ReadColumn< bool >( 50 );
AffectsPosition = parser.ReadColumn< bool >( 51 );
Omen = new LazyRow< Omen >( lumina, parser.ReadColumn< ushort >( 52 ) );
Omen = new LazyRow< Omen >( lumina, parser.ReadColumn< ushort >( 52 ), language );
IsPvP = parser.ReadColumn< bool >( 53 );
Unknown54 = parser.ReadColumn< bool >( 54 );
Unknown55 = parser.ReadColumn< bool >( 55 );
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using Lumina.Data;
using Lumina.Data.Structs.Excel;

namespace Lumina.Excel.GeneratedSheets
Expand All @@ -12,13 +13,13 @@ public class ActionCastTimeline : IExcelRow
public uint RowId { get; set; }
public uint SubRowId { get; set; }

public void PopulateData( RowParser parser, Lumina lumina )
public void PopulateData( RowParser parser, Lumina lumina, Language language )
{
RowId = parser.Row;
SubRowId = parser.SubRow;

Name = new LazyRow< ActionTimeline >( lumina, parser.ReadColumn< ushort >( 0 ) );
VFX = new LazyRow< VFX >( lumina, parser.ReadColumn< ushort >( 1 ) );
Name = new LazyRow< ActionTimeline >( lumina, parser.ReadColumn< ushort >( 0 ), language );
VFX = new LazyRow< VFX >( lumina, parser.ReadColumn< ushort >( 1 ), language );
}
}
}
5 changes: 3 additions & 2 deletions src/Lumina.Generated/Excel/GeneratedSheets/ActionCastVFX.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using Lumina.Data;
using Lumina.Data.Structs.Excel;

namespace Lumina.Excel.GeneratedSheets
Expand All @@ -11,12 +12,12 @@ public class ActionCastVFX : IExcelRow
public uint RowId { get; set; }
public uint SubRowId { get; set; }

public void PopulateData( RowParser parser, Lumina lumina )
public void PopulateData( RowParser parser, Lumina lumina, Language language )
{
RowId = parser.Row;
SubRowId = parser.SubRow;

VFX = new LazyRow< VFX >( lumina, parser.ReadColumn< ushort >( 0 ) );
VFX = new LazyRow< VFX >( lumina, parser.ReadColumn< ushort >( 0 ), language );
}
}
}
3 changes: 2 additions & 1 deletion src/Lumina.Generated/Excel/GeneratedSheets/ActionCategory.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using Lumina.Data;
using Lumina.Data.Structs.Excel;

namespace Lumina.Excel.GeneratedSheets
Expand All @@ -11,7 +12,7 @@ public class ActionCategory : IExcelRow
public uint RowId { get; set; }
public uint SubRowId { get; set; }

public void PopulateData( RowParser parser, Lumina lumina )
public void PopulateData( RowParser parser, Lumina lumina, Language language )
{
RowId = parser.Row;
SubRowId = parser.SubRow;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using Lumina.Data;
using Lumina.Data.Structs.Excel;

namespace Lumina.Excel.GeneratedSheets
Expand All @@ -14,7 +15,7 @@ public class ActionComboRoute : IExcelRow
public uint RowId { get; set; }
public uint SubRowId { get; set; }

public void PopulateData( RowParser parser, Lumina lumina )
public void PopulateData( RowParser parser, Lumina lumina, Language language )
{
RowId = parser.Row;
SubRowId = parser.SubRow;
Expand All @@ -23,7 +24,7 @@ public void PopulateData( RowParser parser, Lumina lumina )
Unknown1 = parser.ReadColumn< sbyte >( 1 );
Action = new LazyRow< Action >[ 4 ];
for( var i = 0; i < 4; i++ )
Action[ i ] = new LazyRow< Action >( lumina, parser.ReadColumn< ushort >( 2 + i ) );
Action[ i ] = new LazyRow< Action >( lumina, parser.ReadColumn< ushort >( 2 + i ), language );
Unknown6 = parser.ReadColumn< bool >( 6 );
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using Lumina.Data;
using Lumina.Data.Structs.Excel;

namespace Lumina.Excel.GeneratedSheets
Expand All @@ -12,12 +13,12 @@ public class ActionIndirection : IExcelRow
public uint RowId { get; set; }
public uint SubRowId { get; set; }

public void PopulateData( RowParser parser, Lumina lumina )
public void PopulateData( RowParser parser, Lumina lumina, Language language )
{
RowId = parser.Row;
SubRowId = parser.SubRow;

Name = new LazyRow< Action >( lumina, parser.ReadColumn< int >( 0 ) );
Name = new LazyRow< Action >( lumina, parser.ReadColumn< int >( 0 ), language );
Unknown1 = parser.ReadColumn< sbyte >( 1 );
}
}
Expand Down
3 changes: 2 additions & 1 deletion src/Lumina.Generated/Excel/GeneratedSheets/ActionParam.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using Lumina.Data;
using Lumina.Data.Structs.Excel;

namespace Lumina.Excel.GeneratedSheets
Expand All @@ -12,7 +13,7 @@ public class ActionParam : IExcelRow
public uint RowId { get; set; }
public uint SubRowId { get; set; }

public void PopulateData( RowParser parser, Lumina lumina )
public void PopulateData( RowParser parser, Lumina lumina, Language language )
{
RowId = parser.Row;
SubRowId = parser.SubRow;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using Lumina.Data;
using Lumina.Data.Structs.Excel;

namespace Lumina.Excel.GeneratedSheets
Expand All @@ -11,12 +12,12 @@ public class ActionProcStatus : IExcelRow
public uint RowId { get; set; }
public uint SubRowId { get; set; }

public void PopulateData( RowParser parser, Lumina lumina )
public void PopulateData( RowParser parser, Lumina lumina, Language language )
{
RowId = parser.Row;
SubRowId = parser.SubRow;

Status = new LazyRow< Status >( lumina, parser.ReadColumn< ushort >( 0 ) );
Status = new LazyRow< Status >( lumina, parser.ReadColumn< ushort >( 0 ), language );
}
}
}
5 changes: 3 additions & 2 deletions src/Lumina.Generated/Excel/GeneratedSheets/ActionTimeline.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using Lumina.Data;
using Lumina.Data.Structs.Excel;

namespace Lumina.Excel.GeneratedSheets
Expand Down Expand Up @@ -30,7 +31,7 @@ public class ActionTimeline : IExcelRow
public uint RowId { get; set; }
public uint SubRowId { get; set; }

public void PopulateData( RowParser parser, Lumina lumina )
public void PopulateData( RowParser parser, Lumina lumina, Language language )
{
RowId = parser.Row;
SubRowId = parser.SubRow;
Expand All @@ -43,7 +44,7 @@ public void PopulateData( RowParser parser, Lumina lumina )
LookAtMode = parser.ReadColumn< byte >( 5 );
Key = parser.ReadColumn< string >( 6 );
ActionTimelineIDMode = parser.ReadColumn< byte >( 7 );
WeaponTimeline = new LazyRow< WeaponTimeline >( lumina, parser.ReadColumn< byte >( 8 ) );
WeaponTimeline = new LazyRow< WeaponTimeline >( lumina, parser.ReadColumn< byte >( 8 ), language );
LoadType = parser.ReadColumn< byte >( 9 );
StartAttach = parser.ReadColumn< byte >( 10 );
ResidentPap = parser.ReadColumn< byte >( 11 );
Expand Down
Loading

0 comments on commit 2e1d0cc

Please sign in to comment.