Skip to content

Commit 804d2bb

Browse files
committed
Update for NMS version 155346
1 parent ccfb6cb commit 804d2bb

File tree

4 files changed

+646
-629
lines changed

4 files changed

+646
-629
lines changed

nmspy/data/enums/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -223,19 +223,19 @@
223223
cGcHologramState,
224224
cGcHologramType,
225225
cGcHologramPivotType,
226+
cGcCharacterControlInputValidity,
226227
cGcCharacterControlOutputSpace,
227228
cGcStatsTypes,
228229
cGcWordCategoryTableEnum,
229-
cGcCharacterControlInputValidity,
230230
cGcItemFilterMatchIDType,
231-
cGcWeightingCurve,
232231
cGcUnlockableItemTreeGroups,
233-
cGcTradeCategory,
232+
cGcWeightingCurve,
234233
cGcTechnologyCategory,
235234
cGcTechnologyRarity,
236-
cGcSizeIndicator,
237-
cGcSettlementStatStrength,
235+
cGcTradeCategory,
238236
cGcStatsEnum,
237+
cGcSettlementStatStrength,
238+
cGcSizeIndicator,
239239
cGcRewardTeleport,
240240
cGcRewardStartShipBuildMode,
241241
cGcRewardSignalScan,

nmspy/data/enums/external_enums.py

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -5052,6 +5052,12 @@ class cGcHologramPivotType(IntEnum):
50525052
CentreBounds = 0x1
50535053

50545054

5055+
class cGcCharacterControlInputValidity(IntEnum):
5056+
Always = 0x0
5057+
PadOnly = 0x1
5058+
KeyboardAnMouseOnly = 0x2
5059+
5060+
50555061
class cGcCharacterControlOutputSpace(IntEnum):
50565062
CameraRelative = 0x0
50575063
CameraRelativeTopDown = 0x1
@@ -5277,28 +5283,12 @@ class cGcWordCategoryTableEnum(IntEnum):
52775283
THREAT = 0x6
52785284

52795285

5280-
class cGcCharacterControlInputValidity(IntEnum):
5281-
Always = 0x0
5282-
PadOnly = 0x1
5283-
KeyboardAnMouseOnly = 0x2
5284-
5285-
52865286
class cGcItemFilterMatchIDType(IntEnum):
52875287
Exact = 0x0
52885288
Prefix = 0x1
52895289
Postfix = 0x2
52905290

52915291

5292-
class cGcWeightingCurve(IntEnum):
5293-
NoWeighting = 0x0
5294-
MaxIsUncommon = 0x1
5295-
MaxIsRare = 0x2
5296-
MaxIsSuperRare = 0x3
5297-
MinIsUncommon = 0x4
5298-
MinIsRare = 0x5
5299-
MinIsSuperRare = 0x6
5300-
5301-
53025292
class cGcUnlockableItemTreeGroups(IntEnum):
53035293
Test = 0x0
53045294
BasicBaseParts = 0x1
@@ -5317,16 +5307,14 @@ class cGcUnlockableItemTreeGroups(IntEnum):
53175307
CorvetteParts = 0xE
53185308

53195309

5320-
class cGcTradeCategory(IntEnum):
5321-
Mineral = 0x0
5322-
Tech = 0x1
5323-
Commodity = 0x2
5324-
Component = 0x3
5325-
Alloy = 0x4
5326-
Exotic = 0x5
5327-
Energy = 0x6
5328-
None_ = 0x7
5329-
SpecialShop = 0x8
5310+
class cGcWeightingCurve(IntEnum):
5311+
NoWeighting = 0x0
5312+
MaxIsUncommon = 0x1
5313+
MaxIsRare = 0x2
5314+
MaxIsSuperRare = 0x3
5315+
MinIsUncommon = 0x4
5316+
MinIsRare = 0x5
5317+
MinIsSuperRare = 0x6
53305318

53315319

53325320
class cGcTechnologyCategory(IntEnum):
@@ -5360,20 +5348,16 @@ class cGcTechnologyRarity(IntEnum):
53605348
Always = 0x6
53615349

53625350

5363-
class cGcSizeIndicator(IntEnum):
5364-
Small = 0x0
5365-
Medium = 0x1
5366-
Large = 0x2
5367-
5368-
5369-
class cGcSettlementStatStrength(IntEnum):
5370-
PositiveWide = 0x0
5371-
PositiveLarge = 0x1
5372-
PositiveMedium = 0x2
5373-
PositiveSmall = 0x3
5374-
NegativeSmall = 0x4
5375-
NegativeMedium = 0x5
5376-
NegativeLarge = 0x6
5351+
class cGcTradeCategory(IntEnum):
5352+
Mineral = 0x0
5353+
Tech = 0x1
5354+
Commodity = 0x2
5355+
Component = 0x3
5356+
Alloy = 0x4
5357+
Exotic = 0x5
5358+
Energy = 0x6
5359+
None_ = 0x7
5360+
SpecialShop = 0x8
53775361

53785362

53795363
class cGcStatsEnum(IntEnum):
@@ -5406,6 +5390,22 @@ class cGcStatsEnum(IntEnum):
54065390
BIGGSDEBRIS_POI = 0x1A
54075391

54085392

5393+
class cGcSettlementStatStrength(IntEnum):
5394+
PositiveWide = 0x0
5395+
PositiveLarge = 0x1
5396+
PositiveMedium = 0x2
5397+
PositiveSmall = 0x3
5398+
NegativeSmall = 0x4
5399+
NegativeMedium = 0x5
5400+
NegativeLarge = 0x6
5401+
5402+
5403+
class cGcSizeIndicator(IntEnum):
5404+
Small = 0x0
5405+
Medium = 0x1
5406+
Large = 0x2
5407+
5408+
54095409
class cGcRewardTeleport(IntEnum):
54105410
None_ = 0x0
54115411
ToBase = 0x1

0 commit comments

Comments
 (0)