Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions libMBIN/Source/NMS/GameComponents/GcPetBattlerMoveTemplate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,28 @@

namespace libMBIN.NMS.GameComponents
{
[NMS(GUID = 0x5A793D9B5CBE1A78, NameHash = 0xC274168E)]
[NMS(GUID = 0x1372919B9AB401F6, NameHash = 0xC274168E)]
public class GcPetBattlerMoveTemplate : NMSTemplate
{
[NMS(Index = 8)]
[NMS(Index = 9)]
/* 0x000 */ public NMSTemplate AISelectionCriteria;
[NMS(Index = 0)]
/* 0x010 */ public NMSString0x10 ID;
[NMS(Index = 6)]
[NMS(Index = 7)]
/* 0x020 */ public List<GcPetBattlerMovePhase> Phases;
[NMS(Index = 5)]
[NMS(Index = 6)]
/* 0x030 */ public GcPetBattlerIconStyle OverrideMoveIcon;
[NMS(Index = 1)]
/* 0x034 */ public NMSString0x80 DebugDescription;
[NMS(Index = 7)]
[NMS(Index = 8)]
/* 0x0B4 */ public NMSString0x80 NameStub;
[NMS(Index = 4)]
/* 0x134 */ public bool BasicMove;
[NMS(Index = 5)]
/* 0x135 */ public bool CanHaveCooldownsReset;
[NMS(Index = 3)]
/* 0x135 */ public bool MultiTurnMove;
/* 0x136 */ public bool MultiTurnMove;
[NMS(Index = 2)]
/* 0x136 */ public GcPetBattlerTarget PrimaryTarget;
/* 0x137 */ public GcPetBattlerTarget PrimaryTarget;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace libMBIN.NMS.GameComponents
{
[NMS(GUID = 0xBA6BBC09227D91B9, NameHash = 0x49261BF3)]
[NMS(GUID = 0xB859FE93EE77A89F, NameHash = 0x49261BF3)]
public class GcPetBattlerMovesTable : NMSTemplate
{
[NMS(Index = 0)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace libMBIN.NMS.Toolkit
{
[NMS(GUID = 0xFDCAA1CBD53D2A3E, NameHash = 0x466B710A)]
[NMS(GUID = 0x2D19B9401FCC6B9B, NameHash = 0x466B710A)]
public class TkNetReplicatedEntityComponentData : NMSTemplate
{
[NMS(Index = 0)]
Expand Down Expand Up @@ -30,7 +30,9 @@ public enum SpawnTypeEnum : uint {
/* 0x14 */ public SpawnTypeEnum SpawnType;
[NMS(Index = 3)]
/* 0x18 */ public bool IgnoreComponents;
[NMS(Index = 5)]
/* 0x19 */ public bool MarkModelAsMasterModel;
[NMS(Index = 4)]
/* 0x19 */ public bool ReplicateToShipmates;
/* 0x1A */ public bool ReplicateToShipmates;
}
}
2 changes: 1 addition & 1 deletion libMBIN/Source/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static class Version {
// the Prerelease version should be reset to 1
// When the Release version is incremented:
// the Prerelease version should be reset to 0
internal const string VERSION_STRING = "6.33.0.2";
internal const string VERSION_STRING = "6.34.0.1";

/// <summary>Shorthand for AssemblyVersion.Major</summary>
public static int Major => AssemblyVersion.Major;
Expand Down
Loading