forked from EphemeralSpace/ephemeral-space
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmigration.yml
More file actions
1085 lines (937 loc) · 35.5 KB
/
migration.yml
File metadata and controls
1085 lines (937 loc) · 35.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This is a basic dictionary that maps old entity prototype ids to new ids. This only works for entity prototypes, and
# is intended to allow maps to load without having to manually edit them. An empty or "null" string results in the
# entity getting deleted.
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# !!!!!!!!!!!!!!!!!!!! EPHEMERAL SPACE WARNING !!!!!!!!!!!!!!!!!!!!
# !!!!!!!!!!!!!!!!!! PUT STUFF AT THE TOP OF FILE !!!!!!!!!!!!!!!!!
# !!!!!!!!!!!!!!!!!!! IN THE ES BLOCK INSTEAD OF !!!!!!!!!!!!!!!!!!
# !!!!!!!!!!!!!!!!!!!!!!!! AT THE BOTTOM !!!!!!!!!!!!!!!!!!!!!!!!!!
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# e.g., you can swap all walls with windows and delete all tables by adding lines like:
#
# Window: WallSolid
# WallSolid: Window
# Table: null
# ES Start
# 2025-08-18
# Lockers that are redundant to begin with / we will probably never use
ClosetJanitorBomb: ClosetBomb
ClosetJanitorBombFilled: ClosetBomb
LockerBrigmedic: LockerSecurity
LockerBrigmedicFilled: LockerSecurityFilled
LockerClown: LockerSteel
LockerMime: LockerSteel
LockerRepresentative: LockerSteel
LockerParamedic: LockerMedical
LockerParamedicFilled: LockerMedicalFilled
LockerEvacRepair: ClosetEmergency
LockerEvacRepairFilled: ClosetEmergencyFilledRandom
LockerWallEvacRepair: ClosetWallEmergency
LockerWallEvacRepairFilled: ClosetWallEmergencyFilledRandom
# 2025-9-13
# Lights we dont want
BoxWarmLightbulb: BoxLightbulb
WarmLightBulb: LightBulb
PoweredWarmSmallLight: PoweredSmallLight
LedLightBulb: LightBulb
PoweredLEDSmallLight: PoweredSmallLight
LedLightTube: LightTube
PoweredlightLED: Poweredlight
# 2025-9-13
# Windows
UraniumWindow: PlasmaWindow
UraniumWindowDiagonal: PlasmaWindowDiagonal
UraniumWindowDirectional: PlasmaWindowDirectional
ReinforcedUraniumWindow: ReinforcedPlasmaWindow
UraniumReinforcedWindowDirectional: PlasmaReinforcedWindowDirectional
ReinforcedUraniumWindowDiagonal: ReinforcedPlasmaWindowDiagonal
XenoborgWindow: PlastitaniumWindow
XenoResinWindow: ReinforcedWindow
# 2025-9-26
# Migrates over some existing weapon-related stuff to their proper ES counterparts. As of writing, these currently still exist in the code, but it's good to have this so that nobody can map them.
# This is extremely far from being a cohesive list of all of the kinds of things that need to be migrated, and only targets things that have been *directly* replaced by ES items thus far. More will definitely need to be done in the future.
BoxBeanbag: ESShotgunShellsBoxBeanbag
BoxLethalshot: ESShotgunShellsBoxBuckshot
BoxShotgunSlug: ESShotgunShellsBoxSlug
WeaponPistolMk58: ESWeaponPistol9mm
WeaponPistolViper: ESWeaponPistol9mm
WeaponPistolCobra: ESWeaponPistol9mmSilenced
WeaponRevolverInspector: ESWeaponRevolver357
WeaponRevolverDeckard: ESWeaponRevolver357
WeaponRevolverPython: ESWeaponRevolver357
WeaponRevolverPythonAP: ESWeaponRevolver357
WeaponShotgunKammerer: ESWeaponShotgun
WeaponShotgunEnforcer: ESWeaponShotgun
WeaponShotgunEnforcerRubber: ESWeaponDoubleBarrelShotgunNonlethal
WeaponShotgunDoubleBarreled: ESWeaponDoubleBarrelShotgun
WeaponShotgunDoubleBarreledRubber: ESWeaponDoubleBarrelShotgunNonlethal
WeaponLaserCarbine: ESWeaponEnergyRifle
WeaponDisabler: ESWeaponHybridTaser
WeaponTaser: ESWeaponHybridTaser
# 2025-9-29
# Amends a prototype that was missing a prefix.
SpeedLoader357: ESSpeedLoader357
# 2025-10-19
# Initial vendor pruning
# This does not cover the vendors with explicitly unique purposes that just aren't resprited (like the Liberation Station or the Magivend)
# Snacks
RandomVendingSnacks: ESSpawnerRandomVendorSnack
VendingMachineSnack: ESVendingMachineSnack
VendingMachineSnackBlue: ESVendingMachineSnackBlue
VendingMachineSnackGreen: ESVendingMachineSnackGreen
VendingMachineSnackOrange: ESVendingMachineSnackOrange
VendingMachineSnackTeal: ESVendingMachineSnackTeal
VendingMachineDiscount: ESSpawnerRandomVendorSnack
VendingMachineDonut: ESSpawnerRandomVendorSnack
VendingMachineChang: ESSpawnerRandomVendorSnack
# Drinks
RandomVendingDrinks: ESSpawnerRandomVendorDrink
VendingMachineSoda: ESVendingMachineCola
VendingMachineCola: ESVendingMachineCola
VendingMachineColaRed: ESVendingMachineColaRed
VendingMachineColaBlack: ESVendingMachineColaBlack
VendingMachineShamblersJuice: ESSpawnerRandomVendorDrink
VendingMachinePwrGame: ESSpawnerRandomVendorDrink
VendingMachineDrGibb: ESSpawnerRandomVendorDrink
VendingMachineSmite: ESSpawnerRandomVendorDrink
VendingMachineStarkist: ESSpawnerRandomVendorDrink
VendingMachineCoffee: ESVendingMachineCoffee
# Departmental
VendingMachineEngivend: ESVendingMachineEngivend
VendingMachineYouTool: ESVendingMachineYouTool
VendingMachineSalvage: ESVendingMachineSalvage
VendingMachineChemicals: ESVendingMachineChemicals
VendingMachineChemicalsSyndicate: ESVendingMachineChemicals
VendingMachineMedical: ESVendingMachineMedical
VendingMachineMedicalBase: ESVendingMachineMedical
VendingMachineChefvend: ESVendingMachineChefvend
VendingMachineDinnerware: ESVendingMachineDinnerware
VendingMachineSeedsUnlocked: ESVendingMachineSeedsUnlocked
VendingMachineSeeds: ESVendingMachineSeedsUnlocked
VendingMachineNutri: ESVendingMachineNutri
VendingMachineCart: ESVendingMachineCart
VendingMachineRobotics: ESVendingMachineRobotics
VendingMachineSec: ESVendingMachineSec
# Generic
VendingMachineGames: ESVendingMachineGames
VendingMachineSustenance: ESVendingMachineSustenance
VendingMachineCigs: ESVendingMachineCigs
VendingMachineVendomat: ESVendingMachineVendomat
# Wardrobes
# This only covers the drobes with direct replacements.
VendingMachineSyndieDrobe: ESSpawnerRandomVendorDrink
VendingMachineClothes: ESSpawnerRandomWardrobe
VendingMachineSciDrobe: WardrobeScienceFilled
VendingMachineRoboDrobe: WardrobeRoboticsFilled
VendingMachineGeneDrobe: WardrobeGeneticsFilled
VendingMachineMediDrobe: WardrobeMedicalDoctorFilled
VendingMachineViroDrobe: WardrobeVirologyFilled
VendingMachineJaniDrobe: ESWardrobeJanitorFilled
VendingMachineHydrobe: WardrobeBotanistFilled
VendingMachineAutodrobe: ESWardrobeTheatreFilled
VendingBarDrobe: ESWardrobeBartenderFilled
VendingMachineChefDrobe: ESWardrobeChefFilled
VendingMachineDetDrobe: ESWardrobeDetectiveFilled
VendingMachineAtmosDrobe: WardrobeAtmosphericsFilled
VendingMachineEngiDrobe: WardrobeEngineeringFilled
VendingMachineSecDrobe: WardrobeSecurityFilled
# Vendor Restocks
VendingMachineRestockChang: ESVendingMachineRestockGlobal
VendingMachineRestockDiscountDans: ESVendingMachineRestockGlobal
VendingMachineRestockVendomat: ESVendingMachineRestockGlobal
VendingMachineRestockChemVend: ESVendingMachineRestockGlobal
VendingMachineRestockSeeds: ESVendingMachineRestockGlobal
VendingMachineRestockMedical: ESVendingMachineRestockGlobal
VendingMachineRestockNutriMax: ESVendingMachineRestockGlobal
VendingMachineRestockCostumes: ESVendingMachineRestockGlobal
VendingMachineRestockHappyHonk: ESVendingMachineRestockGlobal
VendingMachineRestockPTech: ESVendingMachineRestockGlobal
VendingMachineRestockRobotics: ESVendingMachineRestockGlobal
VendingMachineRestockChefVend: ESVendingMachineRestockGlobal
VendingMachineRestockEngineering: ESVendingMachineRestockGlobal
VendingMachineRestockBooze: ESVendingMachineRestockGlobal
VendingMachineRestockGames: ESVendingMachineRestockGlobal
VendingMachineRestockClothes: ESVendingMachineRestockGlobal
VendingMachineRestockGetmoreChocolateCorp: ESVendingMachineRestockGlobal
VendingMachineRestockDinnerware: ESVendingMachineRestockGlobal
VendingMachineRestockSalvageEquipment: ESVendingMachineRestockGlobal
VendingMachineRestockDonut: ESVendingMachineRestockGlobal
VendingMachineRestockSmokes: ESVendingMachineRestockGlobal
VendingMachineRestockHotDrinks: ESVendingMachineRestockGlobal
VendingMachineRestockRobustSoftdrinks: ESVendingMachineRestockGlobal
VendingMachineRestockSecTech: ESVendingMachineRestockGlobal
VendingMachineRestockCondimentStation: ESVendingMachineRestockGlobal
VendingMachineRestockTankDispenser: ESVendingMachineRestockGlobal
# 2025-10-31
ESSpawnerRandomMaintStructure: ESSpawnerRandomMaintLootStructure
# 2025-11-01
RandomPosterLegit: ESRandomPosterLegit
RandomPosterAny: ESRandomPosterAny
RandomPosterContraband: ESRandomPosterContraband
# 2025-12-01
# More lighting stuff
LightTube: ESLightTubeDepartment
Poweredlight: ESPoweredLightDepartment
# 2025-12-17
# ES nitrile gloves migration
ClothingHandsGlovesNitrile: ClothingHandsGlovesColorBlue
# 2025-12-23
# New laser box prototype
GlassBoxLaserFilled: ESDisplayCaseCaptainEnergyGun
# 2025-12-26
SpawnPointCargoTechnician: ESSpawnPointCargoTechnician
SpawnPointPassenger: ESSpawnPointAssistant
SpawnPointClown: ESSpawnPointClown
SpawnPointReporter: ESSpawnPointReporter
SpawnPointBartender: ESSpawnPointBartender
SpawnPointChef: ESSpawnPointChef
SpawnPointBotanist: ESSpawnPointBotanist
SpawnPointJanitor: ESSpawnPointJanitor
SpawnPointCaptain: ESSpawnPointCaptain
SpawnPointHeadOfPersonnel: ESSpawnPointHeadOfPersonnel
SpawnPointHeadOfSecurity: ESSpawnPointHeadOfSecurity
SpawnPointStationEngineer: ESSpawnPointStationEngineer
SpawnPointAtmos: ESSpawnPointAtmos
SpawnPointMedicalDoctor: ESSpawnPointMedicalDoctor
SpawnPointChemist: ESSpawnPointChemist
SpawnPointScientist: ESSpawnPointScientist
SpawnPointWarden: ESSpawnPointWarden
SpawnPointSecurityOfficer: ESSpawnPointSecurityOfficer
SpawnPointDetective: ESSpawnPointDetective
# 2025-12-29
Autolathe: ESAutolathe
# 2026-1-11
# Removing old soviet jumpsuits from station v station days
ESClothingUniformJumpsuitRussianColorWhite: null
ESClothingUniformJumpsuitRussianColorBlack: null
ESClothingUniformJumpsuitRussianColorBlue: null
ESClothingUniformJumpsuitRussianColorDarkBlue: null
ESClothingUniformJumpsuitRussianColorTeal: null
ESClothingUniformJumpsuitRussianColorGreen: null
ESClothingUniformJumpsuitRussianColorDarkGreen: null
ESClothingUniformJumpsuitRussianColorOrange: null
ESClothingUniformJumpsuitRussianColorPink: null
ESClothingUniformJumpsuitRussianColorRed: null
ESClothingUniformJumpsuitRussianColorYellow: null
ESClothingUniformJumpsuitRussianColorPurple: null
ESClothingUniformJumpsuitRussianColorLightBrown: null
ESClothingUniformJumpsuitRussianColorBrown: null
ESClothingUniformJumpsuitRussianColorMaroon: null
ESClothingUniformJumpsuitRussianJanitor: null
ClothingUniformJumpsuitRussianSec: null
# 2026-1-12
ChemDispenser: ESChemDispenser
# 2026-1-12
ESMachineScienceTelepad: null
# 2026-1-20
ESGasThruster: null
ESEngineThrusterIon: null
ESEngineThrusterGas: null
# 2026-1-24
ClothingOuterCoatDetective: ESClothingOuterCoatDetective
ClothingOuterCoatDetectiveLoadout: ESClothingOuterCoatDetectiveLoadout
ClothingOuterCoatDetectiveGrey: ESClothingOuterCoatDetectiveGrey
# 2026-1-25
ClothingOuterArmorBasic: ESClothingOuterArmorSecurity
ClothingOuterArmorBasicSlim: ESClothingOuterArmorSecurity
ClothingOuterVestDetective: ESClothingOuterArmorDetective
ClothingOuterCoatWarden: ESClothingOuterCoatWarden
ClothingOuterCoatHoSTrench: ESClothingOuterCoatHoSTrench
ClothingOuterArmorCaptainCarapace: ESClothingOuterArmorCaptainCarapace
WardrobeSecurityFilled: ESWardrobeSecurityFilled
# 2026-2-02
ESClothingHeadHelmetSpaceEngineering: ESClothingHeadHelmetSpace
# 2026-2-03
LockerAtmosphericsFilled: ESLockerAtmosphericsFilled
# 2026-2-4
WardrobeBotanistFilled: ESWardrobeBotanistFilled
WardrobeMedicalDoctorFilled: ESWardrobePhysicianFilled
WardrobeScienceFilled: ESWardrobeScienceFilled
DresserHeadOfPersonnelFilled: ESDresserHeadOfPersonnelFilled
DresserHeadOfSecurityFilled: ESDresserHeadOfSecurityFilled
DresserCaptainFilled: ESDresserCaptainFilled
WardrobePrisonFilled: ESWardrobePrisonFilled
WardrobeCargoFilled: ESWardrobeCargoFilled
WardrobeEngineeringFilled: ESWardrobeEngineeringFilled
WardrobeTheaterFilled: ESWardrobeTheatreFilled
# 2026-2-5
ClothingHandsGlovesColorOrange: ESClothingHandsGlovesColorOrange
ClothingHeadHelmetFire: ESClothingHeadHelmetFire
ClothingHeadHelmetAtmosFire: ESClothingHeadHelmetFire
ClothingOuterSuitFire: ESClothingOuterSuitFire
ClothingOuterSuitAtmosFire: ESClothingOuterSuitFire
ClothingOuterSuitRad: ESClothingOuterSuitRadiation
ClothingHeadHatHoodBioGeneral: ESClothingHeadHatHoodBio
ClothingOuterBioGeneral: ESClothingOuterSuitBio
# There are so many fucking biosuits
ClothingHeadHatHoodBioCmo: ESClothingHeadHatHoodBio
ClothingOuterBioCmo: ESClothingOuterSuitBio
ClothingHeadHatHoodBioJanitor: ESClothingHeadHatHoodBio
ClothingOuterBioJanitor: ESClothingOuterSuitBio
ClothingHeadHatHoodBioScientist: ESClothingHeadHatHoodBio
ClothingOuterBioScientist: ESClothingOuterSuitBio
ClothingHeadHatHoodBioSecurity: ESClothingHeadHatHoodBio
ClothingOuterBioSecurity: ESClothingOuterSuitBio
ClothingHeadHatHoodBioVirology: ESClothingHeadHatHoodBio
ClothingOuterBioVirology: ESClothingOuterSuitBio
ClosetL3VirologyFilled: ClosetL3Filled
ClosetL3SecurityFilled: ClosetL3Filled
ClosetL3JanitorFilled: ClosetL3Filled
ClosetL3ScienceFilled: ClosetL3Filled
# 2026-2-6 Offbrand/ES
Tourniquet: TourniquetOffbrand
ESWardrobeMedicalDoctorFilled: ESWardrobePhysicianFilled
ESWardrobeMedicalDoctor: ESWardrobePhysician
# 2026-2-8
CryogenicSleepUnitSpawner: ESHypersleepPod # this one is used for arrivals
CryogenicSleepUnit: null
CryogenicSleepUnitSpawnerLateJoin: null
# 2026-2-10
AnomalyLocator: ESAnomalyProbe
# 2026-2-23
ESVendingMachineRestockGlobal: null
ESCrateRestock: null
# ES END
# 2023-07-03
ClothingHeadHelmetHelmet: ClothingHeadHelmetBasic
ClothingHeadHelmetHelmetOld: ClothingHeadHelmetBasic
# 2023-07-04
# Bulletproof armor is almost statistically identical to kevlar, however, before this kevlar armor was the closest thing there was to "basic" armor. It makes the most sense to replace it with this.
ClothingOuterVestKevlar: ClothingOuterArmorBasic
# 2023-07-10
Intercom: IntercomCommon
# 2023-07-12
ToyAssistant: ToyFigurinePassenger
# 2023-07-20
ForensicGloves: ClothingHandsGlovesForensic
# 2023-07-24
ClothingEyesGlassesBeer: ClothingEyesHudBeer
# 2023-08-01
lantern: Lantern
lanternextrabright: LanternFlash
# 2023-08-04
BoxMagazineLightRifleHighVelocity: BoxMagazineLightRifle
BoxMagazineMagnumSubMachineGunHighVelocity: null
BoxMagazinePistolCaselessRifleHighVelocity: BoxMagazinePistolCaselessRifle
BoxMagazinePistolHighCapacityHighVelocity: BoxMagazinePistolHighCapacity
BoxMagazinePistolHighVelocity: BoxMagazinePistol
BoxMagazinePistolSubMachineGunHighVelocity: BoxMagazinePistolSubMachineGun
BoxMagazineRifleHighVelocity: BoxMagazineRifle
BulletCaselessRifleHighVelocity: BulletCaselessRifle
BulletLightRifleHighVelocity: BulletLightRifle
BulletMagnumHighVelocity: BulletMagnum
BulletPistolHighVelocity: BulletPistol
BulletRifleHighVelocity: BulletRifle
CartridgeCaselessRifleHighVelocity: CartridgeCaselessRifle
CartridgeLightRifleHighVelocity: CartridgeLightRifle
CartridgeMagnumHighVelocity: CartridgeMagnum
CartridgePistolHighVelocity: CartridgePistol
CartridgeRifleHighVelocity: CartridgeRifle
MagazineBoxCaselessRifleHighVelocity: MagazineBoxCaselessRifle
MagazineBoxLightRifleHighVelocity: MagazineBoxLightRifle
MagazineBoxMagnumHighVelocity: MagazineBoxMagnum
MagazineBoxPistolHighVelocity: MagazineBoxPistol
MagazineBoxRifleHighVelocity: MagazineBoxRifle
MagazineCaselessRifleHighVelocity: MagazinePistolCaselessRifle
MagazineCaselessRifleShortHighVelocity: null
MagazineLightRifleHighVelocity: MagazineLightRifle
MagazineMagnumSubMachineGunHighVelocity: null
MagazinePistolCaselessRifleHighVelocity: MagazinePistolCaselessRifle
MagazinePistolHighCapacityHighVelocity: MagazinePistolHighCapacity
MagazinePistolHighVelocity: MagazinePistol
MagazinePistolSubMachineGunHighVelocity: MagazinePistolSubMachineGun
MagazineRifleHighVelocity: MagazineRifle
SpeedLoaderMagnumHighVelocity: SpeedLoaderMagnum
SpeedLoaderPistolHighVelocity: null
# 2023-08-07
#If the name is anything to go off of, these are presumably just CEV-Eris versions of the snow rock (which we already have.)
#They are practically never used in this way however, so they're migrated to the basic rock type.
MountainRock: AsteroidRock
MountainRockMining: AsteroidRockMining
# 2023-08-08
WindowTintedDirectional: WindowFrostedDirectional
# 2023-08-10
SyringeSpaceacillin: null
# 2023-08-13
AirlockPainter: SprayPainter
# 2023-08-19
GeneratorPlasma: PortableGeneratorPacman
GeneratorUranium: PortableGeneratorSuperPacman
GeneratorPlasmaMachineCircuitboard: PortableGeneratorPacmanMachineCircuitboard
GeneratorUraniumMachineCircuitboard: PortableGeneratorSuperPacmanMachineCircuitboard
# 2023-12-10
SpawnPointSeniorResearcher: null
SpawnPointSeniorOfficer: null
SpawnPointSeniorEngineer: null
SpawnPointSeniorPhysician: null
# 2023-12-12
#No this is not the CMO hardsuit, their prototype IDs were just confusingly similar
ClothingOuterHardsuitMedic: ClothingOuterHardsuitSyndieMedic
# 2023-12-13
VendingMachineSmartFridge: SmartFridge
# 2023-12-18
ReagentContainerMilk: DrinkMilkCarton
ReagentContainerMilkSoy: DrinkSoyMilkCarton
ReagentContainerMilkOat: DrinkOatMilkCarton
# 2023-12-20
MiasmaCanister: AmmoniaCanister
# 2023-12-28
WarpPointBeaconBar: null
WarpPointBeaconCargo: null
WarpPointBeaconCommand: null
WarpPointBeaconEngineering: null
WarpPointBeaconMedical: null
WarpPointBeaconNeutral: null
WarpPointBeaconScience: null
WarpPointBeaconSecurity: null
WarpPointBeaconService: null
# 2023-12-30
ClothingEyesGlassesCosmeticSunglasses: ClothingEyesGlassesSunglasses
SpawnPointAssistant: SpawnPointPassenger
# 2024-01-05
DrinkGoldschlagerBottleFull: DrinkGildlagerBottleFull
DrinkGoldschlagerGlass: DrinkGildlagerGlass
# 2024-01-07
ClosetBase: ClosetSteelBase
# 2024-01-08
SalvagePartsT4Spawner: SalvageLootSpawner
SalvagePartsT3Spawner: SalvageLootSpawner
SalvagePartsT3T4Spawner: SalvageLootSpawner
SalvagePartsT2Spawner: SalvageLootSpawner
#SuperCapacitorStockPart: CapacitorStockPart
#QuadraticCapacitorStockPart: CapacitorStockPart
#NanoManipulatorStockPart: MicroManipulatorStockPart
PicoManipulatorStockPart: MicroManipulatorStockPart
FemtoManipulatorStockPart: MicroManipulatorStockPart
#AdvancedMatterBinStockPart: MatterBinStockPart
#SuperMatterBinStockPart: MatterBinStockPart
#BluespaceMatterBinStockPart: MatterBinStockPart
AnsibleSubspaceStockPart: null
FilterSubspaceStockPart: null
AmplifierSubspaceStockPart: null
TreatmentSubspaceStockPart: null
AnalyzerSubspaceStockPart: null
CrystalSubspaceStockPart: null
TransmitterSubspaceStockPart: null
# 2024-01-10
ClothingHeadHatHoodRad: null
# 2024-01-12
SpaceMedipen: null
# 2024-01-18
ClothingHeadHelmetVoidParamed: null
# 2024-01-19
DefaultStationBeaconTeslaEngine: null
# 2024-01-27 (Reverted on 2024-03-10)
# ClothingBackpackSecurityFilledDetective: ClothingBackpackFilledDetective
# ClothingBackpackDuffelSecurityFilledDetective: ClothingBackpackDuffelFilledDetective
# ClothingBackpackSatchelSecurityFilledDetective: ClothingBackpackSatchelFilledDetective
# 2024-01-28
FoodBoxDonkpocketGondola: FoodBoxDonkpocketPizza
# 2024-01-31
SpyCrewMonitor: null
SpyCrewMonitorEmpty: null
SyndiCrewMonitor: null
SyndiCrewMonitorEmpty: null
SpawnVehicleWheelchair: null
SpawnVehicleWheelchairFolded: null
VehicleWheelchair: null
VehicleWheelchairFolded: null
VehicleSecwayStealObjective: null
VehicleKeyJanicart: null
VehicleKeySecway: null
VehicleKeyATV: null
VehicleKeySkeleton: null
VehicleKeySyndicateSegway: null
VehicleKeySkeletonMotorcycle: null
VehicleSecway: null
VehicleATV: null
VehicleSyndicateSegway: null
VehicleSkeletonMotorcycle: null
VehicleUnicycle: null
VehicleUnicycleFolded: null
ActionVehicleHorn: null
CrateFunATV: null
CrateFunSyndicateSegway: null
MobTaxiBot: null
# MobSupplyBot: null
SpawnVehicleMotobike: null
SpawnVehicleATV: null
SpawnVehicleSecway: null
SpawnVehicleJanicart: null
VehicleJanicart: null
VehicleJanicartDestroyed: null
# 2024-02-01
YellowOxygenTank: OxygenTank
YellowOxygenTankFilled: OxygenTankFilled
# 2024-02-12
FoodDonutBlumpkin: FoodDonutBluePumpkin
FoodDonutJellyBlumpkin: FoodDonutJellyBluePumpkin
# 2024-02-19
Drone: null
SpawnMobDrone: null
Onestar: null # I dont think this is even mapped, but just in case
# 2024-02-22
SolarAssemblyPart: SolarAssemblyFlatpack
AmePart: AmePartFlatpack
AmePartStealObjective: AmePartFlatpackStealObjective
Observationskit: null
# 2024-02-26
CrateBaseWeldable: CrateGenericSteel
# 2024-03-05
BookBotanicalTextbook: BookRandomStory
BookEscalation: BookRandomStory
BookEscalationSecurity: BookRandomStory
BookDemonomiconRandom: BookRandomStory
BookDemonomicon1: BookRandomStory
BookDemonomicon2: BookRandomStory
BookDemonomicon3: BookRandomStory
BookChemistryInsane: BookRandomStory
BookGnominomicon: BookRandomStory
BookFishing: BookRandomStory
BookDetective: BookRandomStory
# 2024-03-07
AirlockExternalEasyPry: AirlockExternal
AirlockExternalGlassEasyPry: AirlockExternalGlass
AirlockGlassShuttleEasyPry: AirlockGlassShuttle
AirlockShuttleEasyPry: AirlockShuttle
AirlockExternalEasyPryLocked: AirlockExternalLocked
AirlockExternalGlassEasyPryLocked: AirlockExternalGlassLocked
AirlockGlassShuttleEasyPryLocked: AirlockExternalGlassShuttleLocked
AirlockShuttleEasyPryLocked: AirlockExternalShuttleLocked
# 2024-03-10
FoodChili: FoodChiliPepper
FoodChilly: FoodChillyPepper
# ClothingBackpackFilledDetective: ClothingBackpackSecurityFilledDetective
# ClothingBackpackDuffelFilledDetective: ClothingBackpackDuffelSecurityFilledDetective
# ClothingBackpackSatchelFilledDetective: ClothingBackpackSatchelSecurityFilledDetective
# 2024-03-11
ImprovisedExplosive: FireBomb
ImprovisedExplosiveEmpty: FireBombEmpty
ImprovisedExplosiveFuel: FireBombFuel
# 2024-03-16
ClothingHeadHatHairflower: FoodPoppy
# 2024-03-21
RPED: null
# 2024-03-30
TraversalDistorterMachineCircuitboard: null
MachineTraversalDistorter: null
# These are technically not equivalent, but it probably makes more sense to replace any existing SCAF stuff with SOME kind of armor, instead of just deleting it outright.
ClothingHeadHelmetScaf: ClothingHeadHelmetBasic
ClothingOuterArmorScaf: ClothingOuterArmorBasic
# 2024-03-31
ClothingNeckFlowerWreath: ClothingHeadHatFlowerWreath
ClothingHeadHatFlowerCrown: ClothingHeadHatFlowerWreath
BriefcaseSyndieBase: null
# 2024-04-08
BodyBag_Container: BodyBag
BodyBag_Folded: BodyBagFolded
# 2024-04-26
BaseBulletRubber: null
BulletPistolRubber: BulletPistol
BulletMagnumRubber: BulletMagnum
BulletLightRifleRubber: BulletLightRifle
BulletRifleRubber: BulletRifle
BulletCaselessRifleRubber: BulletCaselessRifle
CartridgePistolRubber: CartridgePistol
CartridgeMagnumRubber: CartridgeMagnum
CartridgeLightRifleRubber: CartridgeLightRifle
CartridgeRifleRubber: CartridgeRifle
CartridgeCaselessRifleRubber: CartridgeCaselessRifle
MagazinePistolRubber: MagazinePistol
MagazinePistolSubMachineGunRubber: MagazinePistolSubMachineGun
MagazinePistolCaselessRifleRubber: MagazinePistolCaselessRifle
MagazineMagnumRubber: MagazineMagnum
MagazineMagnumSubMachineGunRubber: null
MagazineLightRifleRubber: MagazineLightRifle
MagazineRifleRubber: MagazineRifle
MagazineCaselessRifleRubber: MagazinePistolCaselessRifle
MagazineCaselessRifleShortRubber: null
SpeedLoaderPistolRubber: null
SpeedLoaderMagnumRubber: SpeedLoaderMagnum
MagazineBoxPistolRubber: MagazineBoxPistol
# RIP box of magnum rubbers 202X to 2024
MagazineBoxMagnumRubber: MagazineBoxMagnum
MagazineBoxLightRifleRubber: MagazineBoxLightRifle
MagazineBoxRifleRubber: MagazineBoxRifle
MagazineBoxRifleBigRubber: MagazineBoxRifleBig
MagazineBoxCaselessRifleRubber: MagazineBoxCaselessRifle
BoxMagazinePistolRubber: BoxMagazinePistol
BoxMagazinePistolHighCapacityRubber: BoxMagazinePistolHighCapacity
BoxMagazinePistolSubMachineGunRubber: BoxMagazinePistolSubMachineGun
BoxMagazineLightRifleRubber: BoxMagazineLightRifle
BoxMagazineRifleRubber: BoxMagazineRifle
BoxMagazineCaselessRifleRubber: BoxMagazinePistolCaselessRifle
BoxMagazineMagnumSubMachineGunRubber: null
WeaponPistolMk58Nonlethal: WeaponPistolMk58
WeaponPistolN1984Nonlethal: WeaponPistolN1984
WeaponSubMachineGunDrozdRubber: WeaponSubMachineGunDrozd
WeaponRifleLecterRubber: WeaponRifleLecter
# 2024-04-26
GlassBoxLaserBroken: GlassBoxBroken
ReinforcementRadioSyndicateMonkey: ReinforcementRadioSyndicateAncestor
ReinforcementRadioSyndicateMonkeyNukeops: ReinforcementRadioSyndicateAncestorNukeops
# 2024-05-01
DrinkBottleGoldschlager: DrinkBottleGildlager
# 2024-05-14
soda_dispenser: SodaDispenser
chem_master: ChemMaster
# 2024-05-21
CrateJanitorExplosive: ClosetJanitorBombFilled
# 2024-05-27
DoorRemoteFirefight: null
# 2024-06-03
AirlockServiceCaptainLocked: AirlockCaptainLocked
#2024-06-05
DisasterVictimSpawner: CommandVisitorSpawner
LostCargoTechnicianSpawner: VisitorCargoTechnicianSpawner
ClownTroupeSpawner: VisitorClownSpawner
TravelingChefSpawner: VisitorChefSpawner
SyndieDisasterVictimSpawner: SyndieVisitorSpawner
# 2024-06-15
ClothingOuterCoatInspector: ClothingOuterCoatJensen
# 2024-06-23
FloorTileItemReinforced: PartRodMetal1
#2024-06-25
BookChefGaming: BookHowToCookForFortySpaceman
#2024-06-29
IntercomAssesmbly: IntercomAssembly
# 2024-07-7
SignScience1: SignScience
SignScience2: SignScience
SignXenobio2: SignXenobio
SignXenolab: SignXenobio
SignToxins2: SignToxins
SignMinerDock: SignShipDock
SignChemistry1: SignChem
SignChemistry2: SignChem
SignCourt: SignLawyer
SignAtmosMinsky: SignAtmos
SignDrones: SignMaterials
SignShield: null # what was this even for?
SignHydro2: SignHydro1
SignHydro3: SignHydro1
# 2024-07-27
LogicGate: LogicGateOr
# 2024-08-08
MaterialReclaimer: null
MaterialReclaimerMachineCircuitboard: null
# 2024-08-11
FoodTacoBeef: FoodTacoShell
FoodTacoChicken: FoodTacoShell
FoodTacoFish: FoodTacoShell
FoodTacoBeefSupreme: FoodTacoShell
FoodTacoChickenSupreme: FoodTacoShell
FoodTacoRat: FoodTacoShell
FoodMeatHumanKebab: FoodKebabSkewer
FoodMeatLizardtailKebab: FoodKebabSkewer
FoodMeatRatKebab: FoodKebabSkewer
FoodMeatRatdoubleKebab: FoodKebabSkewer
FoodMeatSnakeKebab: FoodKebabSkewer
FoodMeatHawaiianKebab: FoodKebabSkewer
FoodMeatKebab: FoodKebabSkewer
FoodMeatFiestaKebab: FoodKebabSkewer
#2024-08-14
ClothingBeltSuspenders: ClothingBeltSuspendersRed
# 2024-08-19
ClothingNeckShockCollar: ClothingBackpackElectropack
# 2024-08-22
ComputerShuttleSalvage: null
SalvageShuttleConsoleCircuitboard: null
SalvageShuttleCircuitboardStealObjective: null
# 2024-08-28
ClothingBackpackDuffelSyndicateCostumeCentcom: null
ClothingHeadsetAltCentComFake: null
CentcomPDAFake: null
CentcomIDCardSyndie: null
# 2024-09-06
AntimovCircuitBoard: null
OverlordCircuitBoard: null
# 2024-09-08
HatBase: null
# 2024-09-19
BlueprintFlare: null
# 2024-10-04
BaseAdvancedPen: Pen
# 2024-10-09
# Removal of separate borg chassis parts, replace them with generic borg parts.
LeftArmBorgEngineer: LeftArmBorg
RightArmBorgEngineer: RightArmBorg
LeftLegBorgEngineer: LeftLegBorg
RightLegBorgEngineer: RightLegBorg
HeadBorgEngineer: LightHeadBorg
TorsoBorgEngineer: TorsoBorg
LeftArmBorgMedical: LeftArmBorg
RightArmBorgMedical: RightArmBorg
LeftLegBorgMedical: LeftLegBorg
RightLegBorgMedical: RightLegBorg
HeadBorgMedical: LightHeadBorg
TorsoBorgMedical: TorsoBorg
LeftArmBorgMining: LeftArmBorg
RightArmBorgMining: RightArmBorg
LeftLegBorgMining: LeftLegBorg
RightLegBorgMining: RightLegBorg
HeadBorgMining: LightHeadBorg
TorsoBorgMining: TorsoBorg
LeftArmBorgService: LeftArmBorg
RightArmBorgService: RightArmBorg
LeftLegBorgService: LeftLegBorg
RightLegBorgService: RightLegBorg
HeadBorgService: LightHeadBorg
TorsoBorgService: TorsoBorg
LeftLegBorgJanitor: LeftLegBorg
RightLegBorgJanitor: RightLegBorg
HeadBorgJanitor: LightHeadBorg
TorsoBorgJanitor: TorsoBorg
# 2024-11-17
PresentRandomAsh: PresentRandomCoal
# 2024-11-19
CrateCrewMonitoringBoards: CrateCrewMonitoring
# 2024-11-25
CrateSlimepersonLifeSupport: CrateNitrogenInternals
# 2024-12-01
DungeonMasterCircuitBoard: GameMasterCircuitBoard
# 2024-12-12
FloraRockSolid01: FloraRockSolid
FloraRockSolid02: FloraRockSolid
FloraRockSolid03: FloraRockSolid
FloraStalagmite1: FloraStalagmite
FloraStalagmite2: FloraStalagmite
FloraStalagmite3: FloraStalagmite
FloraStalagmite4: FloraStalagmite
FloraStalagmite5: FloraStalagmite
FloraStalagmite6: FloraStalagmite
FloraGreyStalagmite1: FloraGreyStalagmite
FloraGreyStalagmite2: FloraGreyStalagmite
FloraGreyStalagmite3: FloraGreyStalagmite
FloraGreyStalagmite4: FloraGreyStalagmite
FloraGreyStalagmite5: FloraGreyStalagmite
FloraGreyStalagmite6: FloraGreyStalagmite
FloraTree01: FloraTree
FloraTree02: FloraTree
FloraTree03: FloraTree
FloraTree04: FloraTree
FloraTree05: FloraTree
FloraTree06: FloraTree
FloraTreeSnow01: FloraTreeSnow
FloraTreeSnow02: FloraTreeSnow
FloraTreeSnow03: FloraTreeSnow
FloraTreeSnow04: FloraTreeSnow
FloraTreeSnow05: FloraTreeSnow
FloraTreeSnow06: FloraTreeSnow
FloraTreeLarge01: FloraTreeLarge
FloraTreeLarge02: FloraTreeLarge
FloraTreeLarge03: FloraTreeLarge
FloraTreeLarge04: FloraTreeLarge
FloraTreeLarge05: FloraTreeLarge
FloraTreeLarge06: FloraTreeLarge
FloraTreeConifer01: FloraTreeConifer
FloraTreeConifer02: FloraTreeConifer
FloraTreeConifer03: FloraTreeConifer
ShadowTree01: ShadowTree
ShadowTree02: ShadowTree
ShadowTree03: ShadowTree
ShadowTree04: ShadowTree
ShadowTree05: ShadowTree
ShadowTree06: ShadowTree
LightTree01: LightTree
LightTree02: LightTree
LightTree03: LightTree
LightTree04: LightTree
LightTree05: LightTree
LightTree06: LightTree
# 2024-12-28
DrinkIrishCarBomb: DrinkIrishSlammer
# 2025-01-06
BorgModuleRadiationDetection: null
BorgModuleGPS: null
BorgModuleLightReplacer: BorgModuleCustodial
BorgModuleAdvancedTreatment: null
ClothingMaskSexyClown: ClothingMaskBlushingClown
ClothingMaskSexyMime: ClothingMaskBlushingMime
# 2025-01-27
FoodCondimentPacketFrostoil: FoodCondimentPacketColdsauce
# 2025-02-05
WeaponSubMachineGunVector: null
WeaponSubMachineGunVectorRubber: null
# 2025-02-11
WallShuttleInterior: WallShuttle
# 2025-02-18
PosterContrabandLustyExomorph: PosterContrabandRealExomorph
PosterContrabandBustyBackdoorExoBabes6: PosterContrabandRouny
# 2025-02-20
MagazineBoxAntiMaterielBig: null
MagazineBoxCaselessRifle10x24: null
MagazineBoxCaselessRifleBig: null
MagazinePistolHighCapacityRubber: null
# 2025-03-18
EpinephrineChemistryBottle: ChemistryBottleEpinephrine
RobustHarvestChemistryBottle: ChemistryBottleRobustHarvest
EZNutrientChemistryBottle: ChemistryBottleEZNutrient
Left4ZedChemistryBottle: ChemistryBottleLeft4Zed
UnstableMutagenChemistryBottle: ChemistryBottleUnstableMutagen
PotassiumChemistryBottle: ChemistryBottlePotassium
NocturineChemistryBottle: ChemistryBottleNocturine
NitrogenChemistryBottle: ChemistryBottleNitrogen
EphedrineChemistryBottle: ChemistryBottleEphedrine
PhosphorusChemistryBottle: ChemistryBottlePhosphorus
OmnizineChemistryBottle: ChemistryBottleOmnizine
HydrogenChemistryBottle: ChemistryBottleHydrogen
CognizineChemistryBottle: ChemistryBottleCognizine
EthanolChemistryBottle: ChemistryBottleEthanol
PaxChemistryBottle: ChemistryBottlePax
MuteToxinChemistryBottle: ChemistryBottleMuteToxin
LeadChemistryBottle: ChemistryBottleLead
ToxinChemistryBottle: ChemistryBottleToxin
# 2025-03-29
ClothingBackpackDuffelSyndicateRaidBundle: ClothingBackpackSyndicateRaidBundle
# 2025-04-14
MailRobustToolsSpam: MailSpamLetter
MailNanotrasenSpam: MailSpamLetter
MailSyndicateSpam: MailSpamLetter
MailAlternativeDimensionSpam: MailSpamLetter
MailNarsieCultSpam: MailSpamLetter
MailRageCageSpam: MailSpamLetter
MailVoyageAdvertisementSpam: MailSpamLetter
MailScienceSpiderClanSpam: MailSpamLetter
MailAllAccessSpam: MailSpamLetter
MailCentcommRetributionSpam: MailSpamLetter
MailEvilLizardSpam: MailSpamLetter
MailParentsNeedMoneySpam: MailSpamLetter
# 2025-04-15
SimpleXenoArtifact: ComplexXenoArtifact
MediumXenoArtifact: ComplexXenoArtifact
SimpleXenoArtifactItem: ComplexXenoArtifactItem
MediumXenoArtifactItem: ComplexXenoArtifactItem
VariedXenoArtifactItem: ComplexXenoArtifactItem
# 2025-04-19
ClothingOuterHardsuitSyndicate: ClothingOuterEVASuitSyndicate
AirlockMaintCommonLocked: AirlockMaintLocked
AirlockMaintIntLocked: AirlockMaintLocked
# 2025-04-26
ComputerCargoShuttle: ComputerShuttleCargo
CargoShuttleComputerCircuitboard: CargoShuttleConsoleCircuitboard
# 2025-05-02
CigPackMixedNasty: CigPackMixed
CigPackMixedMedical: CigPackMixed
CigaretteIpecac: CigaretteNutriment
CigarettePax: CigaretteSaline
CigaretteTHC: CigaretteRobustHarvest
CigaretteMuteToxin: CigaretteSodiumPolyacrylate
CigaretteSpaceDrugs: CigaretteLipolicide
CigaretteMilk: CigaretteHaloperidol
CigaretteBread: CigaretteBbqSauce
# 2025-05-09
ClothingOuterHardsuitBasic: ClothingOuterHardsuitEVA
ClothingHeadHelmetHardsuitBasic: null
SuitStorageBasic: SuitStorageEVA
# 2025-05-18
ClothingNeckCloakMiner: null
# 2025-05-22
MatterBinStockPart: MicroManipulatorStockPart
CapacitorStockPart: MicroManipulatorStockPart
# 2025-05-26 Turrets
WeaponEnergyTurretStation: WeaponEnergyTurretSecurity
WeaponEnergyTurretStationControlPanel: WeaponEnergyTurretSecurityControlPanel
WeaponEnergyTurretStationMachineCircuitboard: WeaponEnergyTurretSecurityMachineCircuitboard
# 2025-05-30
SpawnHonkBot: SpawnMobHonkBot
# 2025-06-01
CrateFoodPizzaLarge: CrateFoodPizza
CrateFoodSoftdrinksLarge: CrateFoodSoftdrinks
# 2025-06-03
FloorTileItemGCircuit4: FloorTileItemGCircuit
FloorTileItemBCircuit4: FloorTileItemBCircuit
FloorTileItemRCircuit4: FloorTileItemRCircuit
# 2025-06-06
MagazineLightRifleMaxim: null
MagazineLightRiflePkBox: null
MagazineCaselessRifle10x24: null
BaseMagazineCaselessRifleShort: null
MagazineCaselessRifleShort: null
MagazineCaselessRifleShortPractice: null
BaseMagazineMagnumSubMachineGun: null
MagazineMagnumSubMachineGunEmpty: null
MagazineMagnumSubMachineGun: null
MagazineMagnumSubMachineGunPractice: null
MagazineMagnumSubMachineGunUranium: null
MagazineMagnumSubMachineGunPiercing: null
BoxMagazineMagnumSubMachineGun: null
BoxMagazineMagnumSubMachineGunPractice: null
# 2025-06-09
BarSignAlignTile: BarSign
BarSignComboCafeAlignTile: BarSignComboCafe
BarSignEmergencyRumPartyAlignTile: BarSignEmergencyRumParty
BarSignLV426AlignTile: BarSignLV426
BarSignMaidCafeAlignTile: BarSignMaidCafe
BarSignMalteseFalconAlignTile: BarSignMalteseFalcon
BarSignOfficerBeerskyAlignTile: BarSignOfficerBeersky
BarSignRobustaCafeAlignTile: BarSignRobustaCafe