-
Notifications
You must be signed in to change notification settings - Fork 5
/
icons.txt
1309 lines (1308 loc) · 105 KB
/
icons.txt
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
# DISCLAIMER: Use at your own risk as I have not tested most of these
# This list contains all content files that have "Icon" in their name with minimal filtering
# Some of these may not work at all, may not look correct, or may even crash clients after 10-20 minutes of use, so do not test on a live server!
/Game/Aberration/Icons/Armor/Saddles/BasiliskSaddle_Icon.BasiliskSaddle_Icon
/Game/Aberration/Icons/Armor/Saddles/CaveWolfSaddle_Icon.CaveWolfSaddle_Icon
/Game/Aberration/Icons/Armor/Saddles/CrabSaddle_Icon.CrabSaddle_Icon
/Game/Aberration/Icons/Armor/Saddles/MoleRatSaddle_Icon.MoleRatSaddle_Icon
/Game/Aberration/Icons/Armor/Saddles/RockDrakeSaddle_Icon.RockDrakeSaddle_Icon
/Game/Aberration/Icons/Armor/Saddles/TEKRockDrakeSaddle_Icon.TEKRockDrakeSaddle_Icon
/Game/Aberration/Icons/Buffs/Cocoon_Icon.Cocoon_Icon
/Game/Aberration/Icons/Buffs/Condition_AcidHaze_Icon.Condition_AcidHaze_Icon
/Game/Aberration/Icons/Buffs/Condition_ChargeSpore_Icon.Condition_ChargeSpore_Icon
/Game/Aberration/Icons/Buffs/Condition_ChargeSpore_Immune_Icon.Condition_ChargeSpore_Immune_Icon
/Game/Aberration/Icons/Buffs/Condition_ColdSpore_Icon.Condition_ColdSpore_Icon
/Game/Aberration/Icons/Buffs/Condition_ColdSpore_Immune_Icon.Condition_ColdSpore_Immune_Icon
/Game/Aberration/Icons/Buffs/Condition_CorrosiveAcid_Icon.Condition_CorrosiveAcid_Icon
/Game/Aberration/Icons/Buffs/Condition_DetectEnemy_Icon.Condition_DetectEnemy_Icon
/Game/Aberration/Icons/Buffs/Condition_DetectWild_Icon.Condition_DetectWild_Icon
/Game/Aberration/Icons/Buffs/Condition_DizzySpore_Icon.Condition_DizzySpore_Icon
/Game/Aberration/Icons/Buffs/Condition_DizzySpore_Immune_Icon.Condition_DizzySpore_Immune_Icon
/Game/Aberration/Icons/Buffs/Condition_GliderWings_Icon.Condition_GliderWings_Icon
/Game/Aberration/Icons/Buffs/Condition_InChargedLight_Icon.Condition_InChargedLight_Icon
/Game/Aberration/Icons/Buffs/Impregnate_Icon.Impregnate_Icon
/Game/Aberration/Icons/Buffs/Lamprey_Poison_Debuff_Icon.Lamprey_Poison_Debuff_Icon
/Game/Aberration/Icons/Buffs/NoxiousGas_Icon.NoxiousGas_Icon
/Game/Aberration/Icons/Buffs/Radiation_Icon.Radiation_Icon
/Game/Aberration/Icons/Buffs/Radiation_Sickness_Icon.Radiation_Sickness_Icon
/Game/Aberration/Icons/Buffs/Sunlight_Icon.Sunlight_Icon
/Game/Aberration/Icons/Consumables/MushroomSoup02_Icon.MushroomSoup02_Icon
/Game/Aberration/Icons/Dinos/DinoEntryIcon_Basilisk.DinoEntryIcon_Basilisk
/Game/Aberration/Icons/Dinos/DinoEntryIcon_CaveCrab.DinoEntryIcon_CaveCrab
/Game/Aberration/Icons/Dinos/DinoEntryIcon_CaveWolf.DinoEntryIcon_CaveWolf
/Game/Aberration/Icons/Dinos/DinoEntryIcon_Chupa.DinoEntryIcon_Chupa
/Game/Aberration/Icons/Dinos/DinoEntryIcon_Lamprey.DinoEntryIcon_Lamprey
/Game/Aberration/Icons/Dinos/DinoEntryIcon_LanternPetBird.DinoEntryIcon_LanternPetBird
/Game/Aberration/Icons/Dinos/DinoEntryIcon_LanternPetGoat.DinoEntryIcon_LanternPetGoat
/Game/Aberration/Icons/Dinos/DinoEntryIcon_LanternPetLizard.DinoEntryIcon_LanternPetLizard
/Game/Aberration/Icons/Dinos/DinoEntryIcon_LanternPetPug.DinoEntryIcon_LanternPetPug
/Game/Aberration/Icons/Dinos/DinoEntryIcon_LightBug.DinoEntryIcon_LightBug
/Game/Aberration/Icons/Dinos/DinoEntryIcon_MoleRat.DinoEntryIcon_MoleRat
/Game/Aberration/Icons/Dinos/DinoEntryIcon_Nameless.DinoEntryIcon_Nameless
/Game/Aberration/Icons/Dinos/DinoEntryIcon_RockDrake.DinoEntryIcon_RockDrake
/Game/Aberration/Icons/Dinos/DinoEntryIcon_Rockwell.DinoEntryIcon_Rockwell
/Game/Aberration/Icons/Dinos/DinoEntryIcon_SquidFace.DinoEntryIcon_SquidFace
/Game/Aberration/Icons/Dinos/Empty_BasiliskHead_Icon.Empty_BasiliskHead_Icon
/Game/Aberration/Icons/Dinos/Empty_CaveCrabHead_Icon.Empty_CaveCrabHead_Icon
/Game/Aberration/Icons/Dinos/Empty_CaveWolfHead_Icon.Empty_CaveWolfHead_Icon
/Game/Aberration/Icons/Dinos/Empty_ChupaHead_Icon.Empty_ChupaHead_Icon
/Game/Aberration/Icons/Dinos/Empty_LampreyHead_Icon.Empty_LampreyHead_Icon
/Game/Aberration/Icons/Dinos/Empty_LanternPetGoat_Icon.Empty_LanternPetGoat_Icon
/Game/Aberration/Icons/Dinos/Empty_LanternPetLizard_Icon.Empty_LanternPetLizard_Icon
/Game/Aberration/Icons/Dinos/Empty_LanternPetOwl_Icon.Empty_LanternPetOwl_Icon
/Game/Aberration/Icons/Dinos/Empty_LanternPetPug_Icon.Empty_LanternPetPug_Icon
/Game/Aberration/Icons/Dinos/Empty_LightBugHead_Icon.Empty_LightBugHead_Icon
/Game/Aberration/Icons/Dinos/Empty_MoleRatHead_Icon.Empty_MoleRatHead_Icon
/Game/Aberration/Icons/Dinos/Empty_NamelessHead_Icon.Empty_NamelessHead_Icon
/Game/Aberration/Icons/Dinos/Empty_RockDrakeHead_Icon.Empty_RockDrakeHead_Icon
/Game/Aberration/Icons/Dinos/Empty_RockwellHead_Icon.Empty_RockwellHead_Icon
/Game/Aberration/Icons/Dinos/Empty_SquidFaceHead_Icon.Empty_SquidFaceHead_Icon
/Game/Aberration/Icons/Furniture/ShagRug_Icon.ShagRug_Icon
/Game/Aberration/Icons/Outfits/GliderSuit_Icon.GliderSuit_Icon
/Game/Aberration/Icons/Outfits/HazardSuitGloves_Icon.HazardSuitGloves_Icon
/Game/Aberration/Icons/Outfits/HazardSuitHemlet_Icon.HazardSuitHemlet_Icon
/Game/Aberration/Icons/Outfits/HazardSuitJacket_Icon.HazardSuitJacket_Icon
/Game/Aberration/Icons/Outfits/HazardSuitPants_Icon.HazardSuitPants_Icon
/Game/Aberration/Icons/Outfits/HazardSuitShoes_Icon.HazardSuitShoes_Icon
/Game/Aberration/Icons/Plants/PlantZ_Fruit_Icon.PlantZ_Fruit_Icon
/Game/Aberration/Icons/Plants/PlantZ_Seed_Icon.PlantZ_Seed_Icon
/Game/Aberration/Icons/Resources/ApexDropCrabClaw_Icon.ApexDropCrabClaw_Icon
/Game/Aberration/Icons/Resources/ApexDropReaper_Icon.ApexDropReaper_Icon
/Game/Aberration/Icons/Resources/ApexRockDrakeScales_Icon.ApexRockDrakeScales_Icon
/Game/Aberration/Icons/Resources/BasiliskFang_Icon.BasiliskFang_Icon
/Game/Aberration/Icons/Resources/BasiliskVenom_Icon.BasiliskVenom_Icon
/Game/Aberration/Icons/Resources/DrakeFeather_Icon.DrakeFeather_Icon
/Game/Aberration/Icons/Resources/Element_Icon.Element_Icon
/Game/Aberration/Icons/Resources/GasBall_Icon.GasBall_Icon
/Game/Aberration/Icons/Resources/GasCrafted_Icon.GasCrafted_Icon
/Game/Aberration/Icons/Resources/Gem2_Icon.Gem2_Icon
/Game/Aberration/Icons/Resources/Gem3_Icon.Gem3_Icon
/Game/Aberration/Icons/Resources/Gem_Icon.Gem_Icon
/Game/Aberration/Icons/Resources/Pheromones_Icon.Pheromones_Icon
/Game/Aberration/Icons/Resources/Pliers_Icon.Pliers_Icon
/Game/Aberration/Icons/RockwellSummon_Icon_Easy.RockwellSummon_Icon_Easy
/Game/Aberration/Icons/RockwellSummon_Icon_Hard.RockwellSummon_Icon_Hard
/Game/Aberration/Icons/RockwellSummon_Icon_Medium.RockwellSummon_Icon_Medium
/Game/Aberration/Icons/Structures/CliffMetal_Icon.CliffMetal_Icon
/Game/Aberration/Icons/Structures/CliffStone_Icon.CliffStone_Icon
/Game/Aberration/Icons/Structures/FishBasket_Filled_Icon.FishBasket_Filled_Icon
/Game/Aberration/Icons/Structures/FishBasket_Icon.FishBasket_Icon
/Game/Aberration/Icons/Structures/Icon_Hyperchamber.Icon_Hyperchamber
/Game/Aberration/Icons/Structures/PortableRopeLadder_Icon.PortableRopeLadder_Icon
/Game/Aberration/Icons/Structures/RockwellFlag_Icon.RockwellFlag_Icon
/Game/Aberration/Icons/Structures/RockwellTrophy_Icon.RockwellTrophy_Icon
/Game/Aberration/Icons/Structures/WoodElevatorLeveler_Icon.WoodElevatorLeveler_Icon
/Game/Aberration/Icons/Structures/WoodElevatorPillar_Icon.WoodElevatorPillar_Icon
/Game/Aberration/Icons/Structures/WoodElevatorPlatformLarge_Icon.WoodElevatorPlatformLarge_Icon
/Game/Aberration/Icons/Structures/WoodElevatorPlatformMedium_Icon.WoodElevatorPlatformMedium_Icon
/Game/Aberration/Icons/Structures/WoodElevatorPlatformSmall_Icon.WoodElevatorPlatformSmall_Icon
/Game/Aberration/Icons/Structures/ZiplineEngine_Icon.ZiplineEngine_Icon
/Game/Aberration/Icons/Weapons/ChargedLantern_Icon.ChargedLantern_Icon
/Game/Aberration/Icons/Weapons/ChargeStick_25_Icon.ChargeStick_25_Icon
/Game/Aberration/Icons/Weapons/ChargeStick_50_Icon.ChargeStick_50_Icon
/Game/Aberration/Icons/Weapons/ChargeStick_75_Icon.ChargeStick_75_Icon
/Game/Aberration/Icons/Weapons/ChargeStick_Empty_Icon.ChargeStick_Empty_Icon
/Game/Aberration/Icons/Weapons/ChargeStick_Icon.ChargeStick_Icon
/Game/Aberration/Icons/Weapons/ClimbingPick_Icon.ClimbingPick_Icon
/Game/Aberration/Icons/Weapons/ZipLineAnchorPoint_Icon.ZipLineAnchorPoint_Icon
/Game/Aberration/WeaponGlowStickThrow/HUD_GlowStick_Icon.HUD_GlowStick_Icon
/Game/EndGame/Environment/OverseerTextDisplay/MIC_ImplantIcon.MIC_ImplantIcon
/Game/EndGame/Environment/OverseerTextDisplay/M_ImplantIcon.M_ImplantIcon
/Game/EndGame/Environment/OverseerTextDisplay/Textures/T_ImplantIcons_subuv.T_ImplantIcons_subuv
/Game/PrimalEarth/BeaverSaddle_Icon.BeaverSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Chitin/Icons/ChitinBoots_Icon.ChitinBoots_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Chitin/Icons/ChitinGloves_Icon.ChitinGloves_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Chitin/Icons/ChitinHat_Icon.ChitinHat_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Chitin/Icons/ChitinPants_Icon.ChitinPants_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Chitin/Icons/ChitinShirt_Icon.ChitinShirt_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Ghillie/Icons/GhillieBoots_Icon.GhillieBoots_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Ghillie/Icons/GhillieGloves_Icon.GhillieGloves_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Ghillie/Icons/GhillieHat_Icon.GhillieHat_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Ghillie/Icons/GhilliePants_Icon.GhilliePants_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Ghillie/Icons/GhillieShirt_Icon.GhillieShirt_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Icons/ARKTesterHat_Icon.ARKTesterHat_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Icons/ARKWCDev_Icon.ARKWCDev_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Icons/BurlapBoots_Icon.BurlapBoots_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Icons/BurlapGloves_Icon.BurlapGloves_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Icons/BurlapHat_Icon.BurlapHat_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Icons/BurlapLegs_Icon.BurlapLegs_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Icons/BurlapShirt_Icon.BurlapShirt_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Icons/GasMask_Icon.GasMask_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Icons/GrappleHook_Icon.GrappleHook_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Icons/MinerHelmet_Icon.MinerHelmet_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Icons/NightvisionGoggles_Icon.NightvisionGoggles_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Leather/Icons/HideBoots_Icon.HideBoots_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Leather/Icons/HideGloves_Icon.HideGloves_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Leather/Icons/HideHat_Icon.HideHat_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Leather/Icons/HideLegs_Icon.HideLegs_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Leather/Icons/HideShirt_Icon.HideShirt_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Mammoth/Icons/MammothBoots_Icon.MammothBoots_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Mammoth/Icons/MammothGloves_Icon.MammothGloves_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Mammoth/Icons/MammothHat_Icon.MammothHat_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Mammoth/Icons/MammothLegs_Icon.MammothLegs_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Mammoth/Icons/MammothShirt_Icon.MammothShirt_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Metal/Icons/MetalBoots_Icon.MetalBoots_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Metal/Icons/MetalGloves_Icon.MetalGloves_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Metal/Icons/MetalHat_Icon.MetalHat_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Metal/Icons/MetalPants_Icon.MetalPants_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Metal/Icons/MetalShirt_Icon.MetalShirt_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Riot/RiotBoots_Icon.RiotBoots_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Riot/RiotGloves_Icon.RiotGloves_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Riot/RiotHat_Icon.RiotHat_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Riot/RiotPants_Icon.RiotPants_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Riot/RiotShirt_Icon.RiotShirt_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/AlloSaddle_Icon.AlloSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/AnkyloSaddle_Icon.AnkyloSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/ArgentavisSaddle_Icon.ArgentavisSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/ArthropleuraSaddle_Icon.ArthropleuraSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/BaryonyxSaddle_Icon.BaryonyxSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/BasilosaurusSaddle_Icon.BasilosaurusSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/BearSaddle_Icon.BearSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/CarnoSaddle_Icon.CarnoSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/ChalicotheriumSaddle_Icon.ChalicotheriumSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/DaeodonSaddle_Icon.DaeodonSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/Diplodocus10SeatSaddle_Icon.Diplodocus10SeatSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/DoedicurusSaddle_Icon.DoedicurusSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/DolphinSaddle_Icon.DolphinSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/DunkleoSaddle_Icon.DunkleoSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/EASaddle_Icon.EASaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/EquusSaddle_Icon.EquusSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/FrogSaddle_Icon.FrogSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/Gallimimus_Saddle_Icon.Gallimimus_Saddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/GigantoSaddle_Icon.GigantoSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/HyaenodonBackpack_Icon.HyaenodonBackpack_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/IguanodonSaddle_Icon.IguanodonSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/KaprosuchusSaddle_Icon.KaprosuchusSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/MammothSaddle_Icon.MammothSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/MantaSaddle_Icon.MantaSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/MegalaniaSaddle_Icon.MegalaniaSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/MegalodonSaddle_Icon.MegalodonSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/MegalosaurusSaddle_Icon.MegalosaurusSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/MegatheriumSaddle_Icon.MegatheriumSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/MosasaurusPlatformSaddle_Icon.MosasaurusPlatformSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/MosasaurusSaddle_Icon.MosasaurusSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/PachyrhinosaurusSaddle_Icon.PachyrhinosaurusSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/PachySaddle_Icon.PachySaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/ParacerPlatformSaddle_Icon.ParacerPlatformSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/ParacerSaddle_Icon.ParacerSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/ParasaurSaddle_Icon.ParasaurSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/PegalornisSaddle_Icon.PegalornisSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/PhiomiaSaddle_Icon.PhiomiaSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/PlesioPlatformSaddle_Icon.PlesioPlatformSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/PlesioSaddle_Icon.PlesioSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/Procomptodon_Saddle_Icon.Procomptodon_Saddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/QuetzPlatformSaddle_Icon.QuetzPlatformSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/QuetzSaddle_Icon.QuetzSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/RhinoSaddle_Icon.RhinoSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/SabertoothSaddle_Icon.SabertoothSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/SarcoSaddle_Icon.SarcoSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/SauropodPlatformSaddle_Icon.SauropodPlatformSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/ScorpionSaddle_Icon.ScorpionSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/SpinoSaddle_Icon.SpinoSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/StagSaddle_Icon.StagSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/StegosaurSaddle_Icon.StegosaurSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/TapejaraSaddle_Icon.TapejaraSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/TEKMegalodonSaddle_Icon.TEKMegalodonSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/TEKMosasaurSaddle_Icon.TEKMosasaurSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/TEKSaddle_Icon.TEKSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/TEKTapejaraSaddle_Icon.TEKTapejaraSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/TerrorBirdSaddle_Icon.TerrorBirdSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/TherizinosaurusSaddle_Icon.TherizinosaurusSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/ThylacoleoSaddle_Icon.ThylacoleoSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/TitanosaurPlatformSaddle_Icon.TitanosaurPlatformSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/TurtleSaddle_Icon.TurtleSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/TusoSaddle_Icon.TusoSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/Icons/YutyrannusSaddle_Icon.YutyrannusSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/PteraSaddle_Icon.PteraSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/RaptorSaddle_Icon.RaptorSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/RexSaddle_Icon.RexSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/SauropodSaddle_Icon.SauropodSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Saddles/TrikeSaddle_Icon.TrikeSaddle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/SCUBA/Icons/SCUBABoots_Icon.SCUBABoots_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/SCUBA/Icons/ScubaBottom_Icon.ScubaBottom_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/SCUBA/Icons/ScubaGloves_Icon.ScubaGloves_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/SCUBA/Icons/SCUBAShirt_Icon.SCUBAShirt_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/SCUBA/Icons/ScubaTop_Icon.ScubaTop_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/ARKPartyHat_Icon.ARKPartyHat_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/BionicRexCostume_Icon.BionicRexCostume_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/BoneBrontoCostume_Icon.BoneBrontoCostume_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/BoneCarnoCostume_Icon.BoneCarnoCostume_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/BoneGigaCostume_Icon.BoneGigaCostume_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/BoneJerboaCostume_Icon.BoneJerboaCostume_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/BoneQuetzalCostume_Icon.BoneQuetzalCostume_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/BoneRaptorCostume_Icon.BoneRaptorCostume_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/BoneRexCostume_Icon.BoneRexCostume_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/BoneStegoCostume_Icon.BoneStegoCostume_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/BoneTrikeCostume_Icon.BoneTrikeCostume_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/BoneWyvernCostume_Icon.BoneWyvernCostume_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/BrachiHead_Icon.BrachiHead_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/BunnyEars_Icon.BunnyEars_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/CaptainHat_Icon.CaptainHat_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/ClownMask_Icon.ClownMask_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/DinoHelmet_Icon.DinoHelmet_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/DinoMask_Icon.DinoMask_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/DiploHat_Icon.DiploHat_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/DodoRexHelmet_Icon.DodoRexHelmet_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/DodoWyvernHelmet_Icon.DodoWyvernHelmet_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/DragonGloves_Icon.DragonGloves_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/EasterBunnyHead_Icon.EasterBunnyHead_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/FranklinGlasses_Icon.FranklinGlasses_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/GigTek_Icon.GigTek_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/InvisiblePants_Icon.InvisiblePants_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/InvisibleShirt_Icon.InvisibleShirt_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/ManticoreGloves_Icon.ManticoreGloves_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/ManticoreHelmet_Icon.ManticoreHelmet_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/ManticorePants_Icon.ManticorePants_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/ManticoreShield_Icon.ManticoreShield_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/ManticoreShirt_Icon.ManticoreShirt_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/ManticoreShoes_Icon.ManticoreShoes_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/MIC_HUD_StygiHead_Icon_Colorize.MIC_HUD_StygiHead_Icon_Colorize
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/MIC_HUD_StyracHead_Icon_Colorize.MIC_HUD_StyracHead_Icon_Colorize
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/NerdryGlasses_Icon.NerdryGlasses_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/OtterMask_Icon.OtterMask_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/PepperMask_Icon.PepperMask_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/PugMask_Icon.PugMask_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/ReaperMask_Icon.ReaperMask_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/SkullMask_Icon.SkullMask_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/StygiHead_Icon.StygiHead_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/StyracHead_Icon.StyracHead_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/TrikeHelmet_Icon.TrikeHelmet_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/TSLGlasses_Icon.TSLGlasses_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/VampireEyes_Icon.VampireEyes_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/WinstonHat_Icon.WinstonHat_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/WitchHat_Icon.WitchHat_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/Skin/Icons/WolfHelmet_Icon.WolfHelmet_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/TEK/Icons/TEKBoots_Icon.TEKBoots_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/TEK/Icons/TEKGloves_Icon.TEKGloves_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/TEK/Icons/TEKHat_Icon.TEKHat_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/TEK/Icons/TEKPants_Icon.TEKPants_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Armor/TEK/Icons/TEKShirt_Icon.TEKShirt_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Artifacts/Icons/Aberration_Implant_Icon_Alpha.Aberration_Implant_Icon_Alpha
/Game/PrimalEarth/CoreBlueprints/Items/Artifacts/Icons/Aberration_Implant_Icon_Beta.Aberration_Implant_Icon_Beta
/Game/PrimalEarth/CoreBlueprints/Items/Artifacts/Icons/Aberration_Implant_Icon_Gamma.Aberration_Implant_Icon_Gamma
/Game/PrimalEarth/CoreBlueprints/Items/Artifacts/Icons/Artifact18_Icon.Artifact18_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Artifacts/Icons/Artifact19_Icon.Artifact19_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Artifacts/Icons/Artifact1_Icon.Artifact1_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Artifacts/Icons/Artifact21_Icon.Artifact21_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Artifacts/Icons/Artifact24_Icon.Artifact24_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Artifacts/Icons/Artifact25_Icon.Artifact25_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Artifacts/Icons/Artifact29_Icon.Artifact29_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Artifacts/Icons/Artifact2_Icon.Artifact2_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Artifacts/Icons/Artifact3_Icon.Artifact3_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Artifacts/Icons/Artifact4_Icon.Artifact4_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Artifacts/Icons/Artifact5_Icon.Artifact5_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Artifacts/Icons/Artifact6_Icon.Artifact6_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Artifacts/Icons/Artifact7_Icon.Artifact7_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Artifacts/Icons/Artifact8_Icon.Artifact8_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Artifacts/Icons/Artifact9_Icon.Artifact9_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Artifacts/Icons/Implant_Icon.Implant_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Artifacts/Icons/Implant_Icon_Alpha.Implant_Icon_Alpha
/Game/PrimalEarth/CoreBlueprints/Items/Artifacts/Icons/Implant_Icon_Alpha_Remote.Implant_Icon_Alpha_Remote
/Game/PrimalEarth/CoreBlueprints/Items/Artifacts/Icons/Implant_Icon_Beta.Implant_Icon_Beta
/Game/PrimalEarth/CoreBlueprints/Items/Artifacts/Icons/Implant_Icon_Beta_Remote.Implant_Icon_Beta_Remote
/Game/PrimalEarth/CoreBlueprints/Items/Artifacts/Icons/Implant_Icon_Gamma.Implant_Icon_Gamma
/Game/PrimalEarth/CoreBlueprints/Items/Artifacts/Icons/Implant_Icon_Gamma_Remote.Implant_Icon_Gamma_Remote
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/AmarberrySeed_Icon.AmarberrySeed_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/AmarBerry_Icon.AmarBerry_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/AmnesiaSoup_Icon.AmnesiaSoup_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/AzulberrySeed_Icon.AzulberrySeed_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/AzulBerry_Icon.AzulBerry_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/BattleTartare_Icon.BattleTartare_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/BeerBlob_Icon.BeerBlob_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/BeerGlass_Icon.BeerGlass_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/BloodPack_Icon.BloodPack_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/BugRepellent_Icon.BugRepellent_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/CactusSoup_Icon.CactusSoup_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/CanteenFilled_Icon.CanteenFilled_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/Canteen_Icon.Canteen_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/CarrotSeed_Icon.CarrotSeed_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/Chili_Icon.Chili_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/Chowder_Icon.Chowder_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/CitronalSeed_Icon.CitronalSeed_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/Citronal_Icon.Citronal_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/CookedFishMeat_Icon.CookedFishMeat_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/CookedMeat_Icon.CookedMeat_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/CookedPrimeFishMeat_Icon.CookedPrimeFishMeat_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/CookedPrimeMeat_Icon.CookedPrimeMeat_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/Curry_Icon.Curry_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/DinoPoopMassive_Icon.DinoPoopMassive_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/DinoPoop_Icon.DinoPoop_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/EasterEgg_Icon.EasterEgg_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/Egg_Icon.Egg_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/Emotes/EmoteChicken_Icon.EmoteChicken_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/Emotes/EmoteSnowball_Icon.EmoteSnowball_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/FertilizerIcon.FertilizerIcon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/FilledJar_Icon.FilledJar_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/FilledWaterskin_Icon.FilledWaterskin_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/FishEgg_Icon.FishEgg_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/GoldenEgg_Icon.GoldenEgg_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/HealthPotion_Icon.HealthPotion_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/HumanPoop_Icon.HumanPoop_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/IcedCanteenFilled_Icon.IcedCanteenFilled_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/IcedCanteen_Icon.IcedCanteen_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/IcedJar_Icon.IcedJar_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/IceFilledJar_Icon.IceFilledJar_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/Jar_Icon.Jar_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/Jerky_Icon.Jerky_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/Kibble_Icon.Kibble_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/Lambchops_Icon.Lambchops_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/LongrassSeed_Icon.LongrassSeed_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/Longrass_Icon.Longrass_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/Meat_Icon.Meat_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/MejoberrySeed_Icon.MejoberrySeed_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/MejoBerry_Icon.MejoBerry_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/Mutton_Icon.Mutton_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/NarcoberrySeed_Icon.NarcoberrySeed_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/NarcoBerry_Icon.NarcoBerry_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/Narcotic_Icon.Narcotic_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/PrimeJerky_Icon.PrimeJerky_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/PrimeMeat_Icon.PrimeMeat_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/RawFishMeat_Icon.RawFishMeat_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/RawPrimeFishMeat_Icon.RawPrimeFishMeat_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/RecipeJerky_Icon.RecipeJerky_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/Rockarrot_Icon.Rockarrot_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/SavrootSeed_Icon.SavrootSeed_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/Savroot_Icon.Savroot_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/ShadowSteak_Icon.ShadowSteak_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/Soap_Icon.Soap_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/Soup_Icon.Soup_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/Soup_Icon_Broth.Soup_Icon_Broth
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/SpitterSeed_Icon.SpitterSeed_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/SpoiledMeat_Icon.SpoiledMeat_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/StaminaPotion_Icon.StaminaPotion_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/Stew_Icon.Stew_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/StimberrySeed_Icon.StimberrySeed_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/StimBerry_Icon.StimBerry_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/Stimulant_Icon.Stimulant_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/TintoberrySeed_Icon.TintoberrySeed_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/TintoBerry_Icon.TintoBerry_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Consumables/Icons/Waterskin_Icon.Waterskin_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Misc/Icons/BroodmotherSummon_Icon_Easy.BroodmotherSummon_Icon_Easy
/Game/PrimalEarth/CoreBlueprints/Items/Misc/Icons/BroodmotherSummon_Icon_Hard.BroodmotherSummon_Icon_Hard
/Game/PrimalEarth/CoreBlueprints/Items/Misc/Icons/BroodmotherSummon_Icon_Medium.BroodmotherSummon_Icon_Medium
/Game/PrimalEarth/CoreBlueprints/Items/Misc/Icons/DragonSummon_Icon_Easy.DragonSummon_Icon_Easy
/Game/PrimalEarth/CoreBlueprints/Items/Misc/Icons/DragonSummon_Icon_Hard.DragonSummon_Icon_Hard
/Game/PrimalEarth/CoreBlueprints/Items/Misc/Icons/DragonSummon_Icon_Medium.DragonSummon_Icon_Medium
/Game/PrimalEarth/CoreBlueprints/Items/Misc/Icons/GorillaSummon_Icon_Easy.GorillaSummon_Icon_Easy
/Game/PrimalEarth/CoreBlueprints/Items/Misc/Icons/GorillaSummon_Icon_Hard.GorillaSummon_Icon_Hard
/Game/PrimalEarth/CoreBlueprints/Items/Misc/Icons/GorillaSummon_Icon_Medium.GorillaSummon_Icon_Medium
/Game/PrimalEarth/CoreBlueprints/Items/Misc/Icons/LargeTurret_Icon.LargeTurret_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Misc/Icons/Note_Icon.Note_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Misc/Icons/PortalBlue_Icon.PortalBlue_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Misc/Icons/PortalGreen_Icon.PortalGreen_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Misc/Icons/PortalRed_Icon.PortalRed_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Misc/Icons/PortalYellow_Icon.PortalYellow_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Notes/Icons/RecipeAmnesiaSoup_Icon.RecipeAmnesiaSoup_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Notes/Icons/RecipeBattleTartare_Icon.RecipeBattleTartare_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Notes/Icons/RecipeChili_Icon.RecipeChili_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Notes/Icons/RecipeChowder_Icon.RecipeChowder_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Notes/Icons/RecipeCurry_Icon.RecipeCurry_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Notes/Icons/RecipeHealingPotion_Icon.RecipeHealingPotion_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Notes/Icons/RecipeShadowSteak_Icon.RecipeShadowSteak_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Notes/Icons/RecipeSoup_Icon.RecipeSoup_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Notes/Icons/RecipeStaminaPotion_Icon.RecipeStaminaPotion_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Notes/Icons/RecipeStew_Icon.RecipeStew_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Notes/Icons/Recipe_Icon.Recipe_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Greenhouse/GreenhouseCeiling_Icon.GreenhouseCeiling_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Greenhouse/GreenhouseDoorway_Icon.GreenhouseDoorway_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Greenhouse/GreenhouseDoor_Icon.GreenhouseDoor_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Greenhouse/GreenhouseWall_Icon.GreenhouseWall_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Greenhouse/GreenhouseWindow_Icon.GreenhouseWindow_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Angler_LightSource_Icon.Angler_LightSource_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Ballista_Icon.Ballista_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Bed_Icon.Bed_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Beehive_Icon.Beehive_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/BeerBarrel_Icon.BeerBarrel_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Bookshelf_Icon.Bookshelf_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Cage_Icon.Cage_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Campfire_Icon.Campfire_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Cannon_Icon.Cannon_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/ChemistryTable_Icon.ChemistryTable_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/CookingCampfire_Icon.CookingCampfire_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/CookingPot_Icon.CookingPot_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/CropPlot_Icon.CropPlot_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/DragonFlag_Icon.DragonFlag_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/FeedingTrough_Icon.FeedingTrough_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Fireplace_Icon.Fireplace_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Flag_Icon.Flag_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Forge2_Icon.Forge2_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/ForgedBarricade_Icon.ForgedBarricade_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/ForgedRaft_Icon.ForgedRaft_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/GateDoorIcon.GateDoorIcon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/GateFrameIcon.GateFrameIcon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/GorillaFlag_Icon.GorillaFlag_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Grill_Icon.Grill_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Grinder_Icon.Grinder_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Icon_Gravestone.Icon_Gravestone
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Icon_TrophyBase.Icon_TrophyBase
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Icon_WoodBench.Icon_WoodBench
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Icon_WoodChair.Icon_WoodChair
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/IndustrialForge_Icon.IndustrialForge_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Lamp_Icon.Lamp_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/LargeStorage_Icon.LargeStorage_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/MachinedWorkbench_Icon.MachinedWorkbench_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/MediumCropPlot_Icon.MediumCropPlot_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/MetalTreeFoundation_Icon.MetalTreeFoundation_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/MetalWindow_Icon.MetalWindow_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/ModernBed_Icon.ModernBed_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/MortarPestle_Icon.MortarPestle_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/MountedCatapult_Icon.MountedCatapult_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/MountedRocketTurret_Icon.MountedRocketTurret_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/MountedSMGTurret_Icon.MountedSMGTurret_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/OmniLamp_Icon.OmniLamp_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/PaintingCanvas_Icon.PaintingCanvas_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/PipeDiagonal_Icon.PipeDiagonal_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/PipeFaucet_Icon.PipeFaucet_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/PipeHorizontal_Icon.PipeHorizontal_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/PipeIntake_Icon.PipeIntake_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/PipeIntersection_Icon.PipeIntersection_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/PipeVertical_Icon.PipeVertical_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/PrimitiveWallMountedTorch_Icon.PrimitiveWallMountedTorch_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Raft_Icon.Raft_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/RopeLadder_Icon.RopeLadder_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/SleepingBag_Icon.SleepingBag_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/SmallCropPlot_Icon.SmallCropPlot_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/SmallStorage_Icon.SmallStorage_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Smithy_Icon.Smithy_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/SpiderFlag_Icon.SpiderFlag_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/SpiralStairAdobe_Icon.SpiralStairAdobe_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/SpiralStairMetal_Icon.SpiralStairMetal_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/SpiralStairStone_Icon.SpiralStairStone_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/SpiralStairWood_Icon.SpiralStairWood_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/StoneCeilingDoor_Icon.StoneCeilingDoor_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/StoneWindow_Icon.StoneWindow_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Table_Icon.Table_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TargetDummy_Icon.TargetDummy_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKBeam_Icon.TEKBeam_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKBehemothGateDoor_Icon.TEKBehemothGateDoor_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKBuggy_Icon.TEKBuggy_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKCeilingHole_Icon.TEKCeilingHole_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKCeiling_Icon.TEKCeiling_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKCelingDoor_Icon.TEKCelingDoor_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKCloningChamber_Icon.TEKCloningChamber_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKDoorway_Icon.TEKDoorway_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKFenceFoundation_Icon.TEKFenceFoundation_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKFoundation_Icon.TEKFoundation_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKGateDoor_Icon.TEKGateDoor_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKGateFrame_Icon.TEKGateFrame_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKGenerator_Icon.TEKGenerator_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKhalfwall_left_Icon.TEKhalfwall_left_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKhalfwall_right_Icon.TEKhalfwall_right_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKLadder_Icon.TEKLadder_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKLamp_Icon.TEKLamp_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKLargeTeleporter_Icon.TEKLargeTeleporter_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKPillar_Icon.TEKPillar_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKPortal_Icon.TEKPortal_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKRailings_Icon.TEKRailings_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKReplicator_Icon.TEKReplicator_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKShieldGenerator_Icon.TEKShieldGenerator_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKslantedRoof_Icon.TEKslantedRoof_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKSpiralStairs_Icon.TEKSpiralStairs_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKTrough_Icon.TEKTrough_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKTurret_Icon.TEKTurret_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKUnderwaterCubeA_Icon.TEKUnderwaterCubeA_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKUnderwaterCubeB_Icon.TEKUnderwaterCubeB_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKWallHole_Icon.TEKWallHole_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKWall_Icon.TEKWall_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TEKWindow_Icon.TEKWindow_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Thatch/ThatchDoorway_Icon.ThatchDoorway_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Thatch/ThatchDoor_Icon.ThatchDoor_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Thatch/ThatchFloor_Icon.ThatchFloor_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Thatch/ThatchRoof_Icon.ThatchRoof_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Thatch/ThatchWall_Icon.ThatchWall_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Toilet_Icon.Toilet_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TorchEmplacement_Icon.TorchEmplacement_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TreeSapTap_Icon.TreeSapTap_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TrophyApexBroodmother_Icon.TrophyApexBroodmother_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TrophyApexBroodmother_Icon_Alpha.TrophyApexBroodmother_Icon_Alpha
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TrophyApexBroodmother_Icon_Beta.TrophyApexBroodmother_Icon_Beta
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TrophyApexDragon_Icon.TrophyApexDragon_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TrophyApexGorilla_Icon.TrophyApexGorilla_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TrophyApexGorilla_Icon_Alpha.TrophyApexGorilla_Icon_Alpha
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TrophyApexGorilla_Icon_Beta.TrophyApexGorilla_Icon_Beta
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TrophyApexRex_Icon.TrophyApexRex_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TrophyFounders_Icon.TrophyFounders_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TrophyMountedBase_Icon.TrophyMountedBase_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/TrophySOTFGold_Icon.TrophySOTFGold_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/Vault_Icon.Vault_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/WarDrums_Icon.WarDrums_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/WarMap_Icon.WarMap_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/WoodBarricade_Icon.WoodBarricade_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/WoodBeam_Icon.WoodBeam_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/WoodCeilingDoor_Icon.WoodCeilingDoor_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/WoodCeilingHole_Icon.WoodCeilingHole_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/WoodDoorway_Icon.WoodDoorway_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/WoodDoor_Icon.WoodDoor_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/WoodFloor_Icon.WoodFloor_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/WoodFridge_Icon.WoodFridge_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/WoodLadder_Icon.WoodLadder_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/WoodPillar_Icon.WoodPillar_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/WoodRailing_Icon.WoodRailing_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/WoodRamp_Icon.WoodRamp_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/WoodRoof_Icon.WoodRoof_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/WoodSign_Icon.WoodSign_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/WoodSign_Icon_Large.WoodSign_Icon_Large
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/WoodTreeFoundation_Icon.WoodTreeFoundation_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/WoodWallHole_Icon.WoodWallHole_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/WoodWallSign_Icon.WoodWallSign_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/WoodWall_Icon.WoodWall_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/WoodWindow_Icon.WoodWindow_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/WormTrophy_Icon.WormTrophy_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Icons/WyvernTrophy_Icon.WyvernTrophy_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Metal/Icons/BehemothGateDoorway_Icon.BehemothGateDoorway_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Metal/Icons/BehemothGateDoor_Icon.BehemothGateDoor_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Metal/Icons/GiantMetalCeilingDoorway_Icon.GiantMetalCeilingDoorway_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Metal/Icons/GiantMetalCeilingDoor_Icon.GiantMetalCeilingDoor_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Metal/Icons/LargeMetalSign_Icon.LargeMetalSign_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Metal/Icons/MetalBeam_Icon.MetalBeam_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Metal/Icons/MetalCeilingDoor_Icon.MetalCeilingDoor_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Metal/Icons/MetalCeilingHole_Icon.MetalCeilingHole_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Metal/Icons/MetalCeiling_Icon.MetalCeiling_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Metal/Icons/MetalDoorway_Icon.MetalDoorway_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Metal/Icons/MetalDoor_Icon.MetalDoor_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Metal/Icons/MetalFloor_Icon.MetalFloor_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Metal/Icons/MetalGateDoor_Icon.MetalGateDoor_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Metal/Icons/MetalGateFoundation_Icon.MetalGateFoundation_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Metal/Icons/MetalGateFrame_Icon.MetalGateFrame_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Metal/Icons/MetalLadder_Icon.MetalLadder_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Metal/Icons/MetalPillar_Icon.MetalPillar_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Metal/Icons/MetalRailing_Icon.MetalRailing_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Metal/Icons/MetalRamp_Icon.MetalRamp_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Metal/Icons/MetalSign_Icon.MetalSign_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Metal/Icons/MetalWallHole_Icon.MetalWallHole_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Metal/Icons/MetalWallSign_Icon.MetalWallSign_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Metal/Icons/MetaWall_Icon.MetaWall_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Misc/Icons/AutoTurret_Icon.AutoTurret_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Misc/Icons/ElevatorPillar_Icon.ElevatorPillar_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Misc/Icons/ElevatorPlatform_Icon.ElevatorPlatform_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Misc/Icons/Generator_Icon.Generator_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Pipes/Icons/MetalWaterTank_Icon.MetalWaterTank_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Pipes/Icons/StoneIntake_Icon.StoneIntake_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Pipes/Icons/StonePipeDiagonal_Icon.StonePipeDiagonal_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Pipes/Icons/StonePipeFaucet_Icon.StonePipeFaucet_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Pipes/Icons/StonePipeHorizontal_Icon.StonePipeHorizontal_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Pipes/Icons/StonePipeIntersection_Icon.StonePipeIntersection_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Pipes/Icons/StonePipeVertical_Icon.StonePipeVertical_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Pipes/Icons/StoneWaterTank_Icon.StoneWaterTank_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Roofs/Greenhouse/SlopedGreenhouseRoof_Icon.SlopedGreenhouseRoof_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Roofs/Greenhouse/SlopedGreenhouseWallLeft_Icon.SlopedGreenhouseWallLeft_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Roofs/Greenhouse/SlopedGreenhouseWallRight_Icon.SlopedGreenhouseWallRight_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Roofs/Metal/MetalRoof_Icon.MetalRoof_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Roofs/Metal/SlopedMetalWallLeftIcon.SlopedMetalWallLeftIcon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Roofs/Metal/SlopedMetalWallRightIcon.SlopedMetalWallRightIcon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Roofs/Stone/SlopedStoneWallLeftIcon.SlopedStoneWallLeftIcon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Roofs/Stone/SlopedStoneWallRightIcon.SlopedStoneWallRightIcon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Roofs/Stone/StoneRoofIcon.StoneRoofIcon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Roofs/Thatch/SlopedThatchRoofIcon.SlopedThatchRoofIcon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Roofs/Thatch/SlopedThatchWallLeftIcon.SlopedThatchWallLeftIcon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Roofs/Thatch/SlopedThatchWallRightIcon.SlopedThatchWallRightIcon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Roofs/Wood/SlopedWoodWallLeftIcon.SlopedWoodWallLeftIcon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Roofs/Wood/SlopedWoodWallRightIcon.SlopedWoodWallRightIcon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Stone/Icon/GiantStoneCeilingDoorway_Icon.GiantStoneCeilingDoorway_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Stone/Icon/GiantStoneCeilingDoor_Icon.GiantStoneCeilingDoor_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Stone/Icon/StoneCeilingHole_Icon.StoneCeilingHole_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Stone/Icon/StoneDoorway_Icon.StoneDoorway_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Stone/Icon/StoneDoor_Icon.StoneDoor_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Stone/Icon/StoneFenceFoundation_Icon.StoneFenceFoundation_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Stone/Icon/StoneFloor_Icon.StoneFloor_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Stone/Icon/StoneGateDoorIcon.StoneGateDoorIcon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Stone/Icon/StoneGateFrameIcon.StoneGateFrameIcon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Stone/Icon/StonePillar_Icon.StonePillar_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Stone/Icon/StoneRailing_Icon.StoneRailing_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Stone/Icon/StoneRoof_Icon.StoneRoof_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Stone/Icon/StoneWallHole_Icon.StoneWallHole_Icon
/Game/PrimalEarth/CoreBlueprints/Items/Structures/Stone/Icon/StoneWall_Icon.StoneWall_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Colorized/Textures/Menu_Icon.Menu_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/Absorbent_Icon.Absorbent_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/AmmoniteBile_Icon.AmmoniteBile_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/Antidote_Icon.Antidote_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/ApexDropAllo_Icon.ApexDropAllo_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/ApexDropBasilo_Icon.ApexDropBasilo_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/ApexDropBoa_Icon.ApexDropBoa_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/ApexDropGiga_Icon2.ApexDropGiga_Icon2
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/ApexDropMegalania_Icon.ApexDropMegalania_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/ApexDropSarco_Icon.ApexDropSarco_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/ApexDropSpino_Icon.ApexDropSpino_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/ApexDropSquid_Icon.ApexDropSquid_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/ApexDropTherizino_Icon.ApexDropTherizino_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/ApexDropThylacoleo_Icon.ApexDropThylacoleo_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/ApexDropYutyranus_Icon.ApexDropYutyranus_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/ApexDrop_Argentavis_Icon.ApexDrop_Argentavis_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/ApexDrop_Megalodon_Icon.ApexDrop_Megalodon_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/ApexDrop_Rex_Icon.ApexDrop_Rex_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/ApexDrop_Sauro_Icon.ApexDrop_Sauro_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/ARKBone_Icon.ARKBone_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/BlackPearl_Icon.BlackPearl_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/Boulder_Icon.Boulder_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/CementPaste_Icon.CementPaste_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/Charcoal_Icon.Charcoal_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/Chitin_Icon.Chitin_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/Electronic_Icon.Electronic_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/Fertilizer_Icon.Fertilizer_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/Fiber_Icon.Fiber_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/Flint_Icon.Flint_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/Gunpowder_Icon.Gunpowder_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/HairStyle_Icon.HairStyle_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/Hair_Icon.Hair_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/Hide_Icon.Hide_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/Honey_Icon.Honey_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/Horn_Icon.Horn_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/JellyfishGel_Icon.JellyfishGel_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/LeechBlood_Icon.LeechBlood_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/MetalIngot_Icon.MetalIngot_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/MetalOre_Icon.MetalOre_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/Obsidian_Icon.Obsidian_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/OilFuel_Icon.OilFuel_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/OrganicPolymer_Icon.OrganicPolymer_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/Pacifier_Icon.Pacifier_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/Pearl_Icon.Pearl_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/PeltOrHair_Icon.PeltOrHair_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/Pelt_Icon.Pelt_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/PlantFood_Icon.PlantFood_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/Polymer_Icon.Polymer_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/Sparkpowder_Icon.Sparkpowder_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/SquidOil_Icon.SquidOil_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/Stone_Icon.Stone_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/TastyCake_Icon.TastyCake_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/TEKElementShard_Icon.TEKElementShard_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/TEKElement_Icon.TEKElement_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/Thatch_Icon.Thatch_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/TreeSap_Icon.TreeSap_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/TributeAlphaCarno_Icon.TributeAlphaCarno_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/TributeAlphaLeedsichthys_Icon.TributeAlphaLeedsichthys_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/TributeAlphaMegalodon_Icon.TributeAlphaMegalodon_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/TributeAlphaMosasaur_Icon.TributeAlphaMosasaur_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/TributeAlphaRaptor_Icon.TributeAlphaRaptor_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/TributeAlphaRex_Icon.TributeAlphaRex_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/TributeAlphaTuso_Icon.TributeAlphaTuso_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/Wood_Icon.Wood_Icon
/Game/PrimalEarth/CoreBlueprints/Resources/Icons/Wool_Icon.Wool_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Buffed_Icon.Buffed_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/ConditionBrave_Icon.ConditionBrave_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/ConditionCamo_Icon.ConditionCamo_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/ConditionCoward_Icon.ConditionCoward_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/ConditionDrunk_Icon.ConditionDrunk_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/ConditionFixate_Icon.ConditionFixate_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/ConditionGroggy_Icon.ConditionGroggy_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/ConditionIcon_BeeShield.ConditionIcon_BeeShield
/Game/PrimalEarth/CoreBlueprints/StatusIcons/ConditionIcon_NursingBuff.ConditionIcon_NursingBuff
/Game/PrimalEarth/CoreBlueprints/StatusIcons/ConditionParalysis_Icon.ConditionParalysis_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/ConditionShocked_Icon.ConditionShocked_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/ConditionSleepDeprive_Icon.ConditionSleepDeprive_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/ConditionSting_Icon.ConditionSting_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/ConditionSwarmed_Icon.ConditionSwarmed_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/ConditionTamingMoreGlow_Icon.ConditionTamingMoreGlow_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/ConditionTamingMore_Icon.ConditionTamingMore_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/ConditionTaming_Icon.ConditionTaming_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/ConditionUnderwaterBreathing_Icon.ConditionUnderwaterBreathing_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_Befriended_Icon.Condition_Befriended_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_Cold_Icon.Condition_Cold_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_Dehydrated_Icon.Condition_Dehydrated_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_Disease_Icon.Condition_Disease_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_Encumbered_Icon.Condition_Encumbered_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_Enflamed_Icon.Condition_Enflamed_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_GainingExp_Icon.Condition_GainingExp_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_GainingExp_Icon2.Condition_GainingExp_Icon2
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_GainingExp_Icon3.Condition_GainingExp_Icon3
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_GainingExp_Icon4.Condition_GainingExp_Icon4
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_Hangover_Icon.Condition_Hangover_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_HeatStroke_Icon_1.Condition_HeatStroke_Icon_1
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_HeatStroke_Icon_10.Condition_HeatStroke_Icon_10
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_HeatStroke_Icon_2.Condition_HeatStroke_Icon_2
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_HeatStroke_Icon_3.Condition_HeatStroke_Icon_3
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_HeatStroke_Icon_4.Condition_HeatStroke_Icon_4
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_HeatStroke_Icon_5.Condition_HeatStroke_Icon_5
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_HeatStroke_Icon_6.Condition_HeatStroke_Icon_6
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_HeatStroke_Icon_7.Condition_HeatStroke_Icon_7
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_HeatStroke_Icon_8.Condition_HeatStroke_Icon_8
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_HeatStroke_Icon_9.Condition_HeatStroke_Icon_9
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_Hot_Icon.Condition_Hot_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_Hyperthermic_Icon.Condition_Hyperthermic_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_Hyperthermic_Icon_Buff.Condition_Hyperthermic_Icon_Buff
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_Hypothermic_Icon.Condition_Hypothermic_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_Injured_Icon.Condition_Injured_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_Injured_Icon2.Condition_Injured_Icon2
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_Knockedout_Icon.Condition_Knockedout_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_Leeched_Icon.Condition_Leeched_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_MothPoison_Icon.Condition_MothPoison_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_Starving_Icon.Condition_Starving_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_Suffocating_Icon.Condition_Suffocating_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Condition_Winded_Icon.Condition_Winded_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/CraftSpeed_Icon.CraftSpeed_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Food_Icon.Food_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Food_Icon_White.Food_Icon_White
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Fortitude_Icon.Fortitude_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Health_Icon.Health_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Health_Icon_White.Health_Icon_White
/Game/PrimalEarth/CoreBlueprints/StatusIcons/House_Icon_White.House_Icon_White
/Game/PrimalEarth/CoreBlueprints/StatusIcons/HUDTEKBoosts_Icon.HUDTEKBoosts_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/HUDTEKBoots_Icon.HUDTEKBoots_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/HUDTEKGloves_Icon.HUDTEKGloves_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/HUDTEKHat_Icon.HUDTEKHat_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/HUDTEKPants_Icon.HUDTEKPants_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/HUDTEKShirt_Icon.HUDTEKShirt_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/MateBoosted_Icon.MateBoosted_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Mating_Icon.Mating_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/MaxInvIcon.MaxInvIcon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Melee_Icon.Melee_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Nursing_IconBuff_Mat.Nursing_IconBuff_Mat
/Game/PrimalEarth/CoreBlueprints/StatusIcons/O2_Icon.O2_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/O2_Icon_White.O2_Icon_White
/Game/PrimalEarth/CoreBlueprints/StatusIcons/PackLeader_Icon.PackLeader_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Rage_Icon.Rage_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Speed_Icon.Speed_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Stamina_Icon.Stamina_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Stamina_Icon_White.Stamina_Icon_White
/Game/PrimalEarth/CoreBlueprints/StatusIcons/StatusIcon_BustedCrossGreyOutline.StatusIcon_BustedCrossGreyOutline
/Game/PrimalEarth/CoreBlueprints/StatusIcons/StatusIcon_HiddenGreyOutline.StatusIcon_HiddenGreyOutline
/Game/PrimalEarth/CoreBlueprints/StatusIcons/StatusIcon_NoteFoundGreyOutline.StatusIcon_NoteFoundGreyOutline
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Teeth_Icon.Teeth_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Torpid_Icon.Torpid_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Torpid_Icon_White.Torpid_Icon_White
/Game/PrimalEarth/CoreBlueprints/StatusIcons/TroodonDeathCache_Icon.TroodonDeathCache_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/TroodonEnemyPlayer_Icon.TroodonEnemyPlayer_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/TroodonEnemyTamed_Icon.TroodonEnemyTamed_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/TroodonEnemyTrap_Icon.TroodonEnemyTrap_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/TroodonWildDino_Icon.TroodonWildDino_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Water_Icon.Water_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Water_Icon_White.Water_Icon_White
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Weight_Icon.Weight_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/Weight_Icon_White.Weight_Icon_White
/Game/PrimalEarth/CoreBlueprints/StatusIcons/XP_Icon.XP_Icon
/Game/PrimalEarth/CoreBlueprints/StatusIcons/XP_IconBuff_From.XP_IconBuff_From
/Game/PrimalEarth/CoreBlueprints/StatusIcons/XP_IconBuff_Mat.XP_IconBuff_Mat
/Game/PrimalEarth/CoreBlueprints/StatusIcons/XP_Icon_White.XP_Icon_White
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/AlarmTrap_Icon.AlarmTrap_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Arrow_Icon.Arrow_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/AssaultRifle_Icon.AssaultRifle_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/BallistaArrow_Icon.BallistaArrow_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Bolas_Icon.Bolas_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Bow_Icon.Bow_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Bullet1_Icon.Bullet1_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Bullet2_Icon.Bullet2_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Bullet3_Icon.Bullet3_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Bullet4_Icon.Bullet4_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Bullet5_Icon.Bullet5_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Bullet6_Icon.Bullet6_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/C4Remote_Icon.C4Remote_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/C4_Icon.C4_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Camera_Icon.Camera_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Cannonball_Icon.Cannonball_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/CatapultAmmo_Icon.CatapultAmmo_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/ChineseSword_Icon.ChineseSword_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Club_Icon.Club_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/ElectricProd_Icon.ElectricProd_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/ElectronicTracker_Icon.ElectronicTracker_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/FishingRod_Icon.FishingRod_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/FlarePistol_Icon.FlarePistol_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Flashlight_Icon.Flashlight_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/ForgedCrossbow_Icon.ForgedCrossbow_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/GPS_Icon.GPS_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Grenade_Icon.Grenade_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Handcuffs_Icon.Handcuffs_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/HarpoonGun_Icon.HarpoonGun_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/HoloSight_Icon.HoloSight_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Lance_Icon.Lance_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/LargeBearTrap_Icon.LargeBearTrap_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/LaserSight_Icon.LaserSight_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Lasso_Icon.Lasso_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/MachinedBow_Icon.MachinedBow_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/MachinedPistol_Icon.MachinedPistol_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/MachinedShotgun_Icon.MachinedShotgun_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/MachinedSniper_Icon.MachinedSniper_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/MagnifyingGlass_Icon.MagnifyingGlass_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/MetalArrow_Icon.MetalArrow_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/MetalBola_Icon.MetalBola_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/MetalHatchet_Icon.MetalHatchet_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/MetalPick_Icon.MetalPick_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/MetalShield_Icon.MetalShield_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Pike_Icon.Pike_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Pistol_Icon.Pistol_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/PoisonGrenade_Icon.PoisonGrenade_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/PoisonTrap_Icon.PoisonTrap_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Radio_Icon.Radio_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/RocketLauncherAmmo_Icon.RocketLauncherAmmo_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/RocketLauncher_Icon.RocketLauncher_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/RocketLauncher_Icon_Firework.RocketLauncher_Icon_Firework
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Scissors_Icon.Scissors_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Scope_Icon.Scope_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Scythe_Icon.Scythe_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Shield_Icon.Shield_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Shotgun_Icon.Shotgun_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Silencer_Icon.Silencer_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Slingshot_Icon.Slingshot_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/SmallBearTrap_Icon.SmallBearTrap_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/SmokeGrenade_Icon.SmokeGrenade_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Spear_Icon.Spear_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/SprayGun_Icon.SprayGun_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Spyglass_Icon.Spyglass_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/SSR_Icon.SSR_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/StoneHatchet_Icon.StoneHatchet_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Stonepick_Icon.Stonepick_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Sword_Icon.Sword_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/TEKGrenade_Icon.TEKGrenade_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/TEKRifle_Icon.TEKRifle_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/TEKShield_Icon.TEKShield_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/TEKSword_Icon.TEKSword_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Torch_Icon.Torch_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/TranqArrow_Icon.TranqArrow_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/TranqDart2_Icon.TranqDart2_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/TranqDart3_Icon.TranqDart3_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/TranqDart_Icon.TranqDart_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/TranqSpearBolt_Icon.TranqSpearBolt_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/TransparentRiotShield_Icon.TransparentRiotShield_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Transponder_Icon.Transponder_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/Tripwire_Icon.Tripwire_Icon
/Game/PrimalEarth/CoreBlueprints/Weapons/Icons/UnderwaterMine_Icon.UnderwaterMine_Icon
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon.DinoEntryIcon
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Achatina.DinoEntryIcon_Achatina
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Allo.DinoEntryIcon_Allo
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Ammonite.DinoEntryIcon_Ammonite
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Angler.DinoEntryIcon_Angler
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Anky.DinoEntryIcon_Anky
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Ant.DinoEntryIcon_Ant
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Archa.DinoEntryIcon_Archa
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Argent.DinoEntryIcon_Argent
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Arthro.DinoEntryIcon_Arthro
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Baryonyx.DinoEntryIcon_Baryonyx
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Basilosaurus.DinoEntryIcon_Basilosaurus
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Bat.DinoEntryIcon_Bat
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Beaver.DinoEntryIcon_Beaver
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Bee.DinoEntryIcon_Bee
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Beetle.DinoEntryIcon_Beetle
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Bigfoot.DinoEntryIcon_Bigfoot
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Boa.DinoEntryIcon_Boa
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Bronto.DinoEntryIcon_Bronto
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Broodmother.DinoEntryIcon_Broodmother
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Carno.DinoEntryIcon_Carno
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Chalicotherium.DinoEntryIcon_Chalicotherium
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Cnidaria.DinoEntryIcon_Cnidaria
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Coel.DinoEntryIcon_Coel
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Compy.DinoEntryIcon_Compy
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Daedon.DinoEntryIcon_Daedon
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Dilo.DinoEntryIcon_Dilo
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Dimetro.DinoEntryIcon_Dimetro
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Dimorph.DinoEntryIcon_Dimorph
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Diplo.DinoEntryIcon_Diplo
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Diplocaulus.DinoEntryIcon_Diplocaulus
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Direbear.DinoEntryIcon_Direbear
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Direwolf.DinoEntryIcon_Direwolf
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Dodo.DinoEntryIcon_Dodo
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Doed.DinoEntryIcon_Doed
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Dolphin.DinoEntryIcon_Dolphin
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Dragon.DinoEntryIcon_Dragon
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Dragonfly.DinoEntryIcon_Dragonfly
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Dunkle.DinoEntryIcon_Dunkle
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Electrophorus.DinoEntryIcon_Electrophorus
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Equus.DinoEntryIcon_Equus
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Euryp.DinoEntryIcon_Euryp
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Galli.DinoEntryIcon_Galli
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Gigant.DinoEntryIcon_Gigant
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Gorilla.DinoEntryIcon_Gorilla
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Griffin.DinoEntryIcon_Griffin
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Hesperonis.DinoEntryIcon_Hesperonis
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Hyaenadon.DinoEntryIcon_Hyaenadon
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Ichthyornis.DinoEntryIcon_Ichthyornis
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Iguanodon.DinoEntryIcon_Iguanodon
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Jerboa.DinoEntryIcon_Jerboa
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Kairuku.DinoEntryIcon_Kairuku
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Kangaroo.DinoEntryIcon_Kangaroo
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Kaprosuchus.DinoEntryIcon_Kaprosuchus
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Kentrosaurus.DinoEntryIcon_Kentrosaurus
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Leech.DinoEntryIcon_Leech
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Leedsichthys.DinoEntryIcon_Leedsichthys
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Liopleurodon.DinoEntryIcon_Liopleurodon
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Lystro.DinoEntryIcon_Lystro
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Mammoth.DinoEntryIcon_Mammoth
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Manta.DinoEntryIcon_Manta
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Mega.DinoEntryIcon_Mega
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Megalania.DinoEntryIcon_Megalania
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Megalosaurus.DinoEntryIcon_Megalosaurus
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Megatherium.DinoEntryIcon_Megatherium
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Microraptor.DinoEntryIcon_Microraptor
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Monkey.DinoEntryIcon_Monkey
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Mosa.DinoEntryIcon_Mosa
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Moschops.DinoEntryIcon_Moschops
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Otter.DinoEntryIcon_Otter
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Overseer.DinoEntryIcon_Overseer
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Ovi.DinoEntryIcon_Ovi
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Pachyrhino.DinoEntryIcon_Pachyrhino
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Para.DinoEntryIcon_Para
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Paracer.DinoEntryIcon_Paracer
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Pegomastax.DinoEntryIcon_Pegomastax
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Pela.DinoEntryIcon_Pela
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Phiomia.DinoEntryIcon_Phiomia
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Piranha.DinoEntryIcon_Piranha
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Plesi.DinoEntryIcon_Plesi
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Ptero.DinoEntryIcon_Ptero
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Purlovia.DinoEntryIcon_Purlovia
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Quetz.DinoEntryIcon_Quetz
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Rex.DinoEntryIcon_Rex
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Rhino.DinoEntryIcon_Rhino
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Saber.DinoEntryIcon_Saber
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Salmon.DinoEntryIcon_Salmon
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Sarco.DinoEntryIcon_Sarco
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Scorp.DinoEntryIcon_Scorp
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Sheep.DinoEntryIcon_Sheep
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Spider.DinoEntryIcon_Spider
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Spino.DinoEntryIcon_Spino
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Stag.DinoEntryIcon_Stag
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Stego.DinoEntryIcon_Stego
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Tapejara.DinoEntryIcon_Tapejara
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_TerrorBird.DinoEntryIcon_TerrorBird
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Therizino.DinoEntryIcon_Therizino
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Thylacoleo.DinoEntryIcon_Thylacoleo
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Titan.DinoEntryIcon_Titan
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Toad.DinoEntryIcon_Toad
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Trike.DinoEntryIcon_Trike
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Trilobite.DinoEntryIcon_Trilobite
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Troodon.DinoEntryIcon_Troodon
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Turtle.DinoEntryIcon_Turtle
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Tusoteuthis.DinoEntryIcon_Tusoteuthis
/Game/PrimalEarth/Dinos/Icons/DinoEntryIcon_Yuty.DinoEntryIcon_Yuty
/Game/PrimalEarth/Dinos/Icons/PachyIconMat.PachyIconMat
/Game/PrimalEarth/Dinos/Icons/RaptorIconMat.RaptorIconMat
/Game/PrimalEarth/Dinos/Para/Icons/StatusIcon_ParasaurMute.StatusIcon_ParasaurMute
/Game/PrimalEarth/Effects/Materials/Creatures/MT_Yuty_loyalfearIcon.MT_Yuty_loyalfearIcon
/Game/PrimalEarth/Effects/MIC/Creatures/MI_Yuty_loyalfearIcon.MI_Yuty_loyalfearIcon
/Game/PrimalEarth/Effects/Particles/Gameplay/buffs/P_IconBuffScale.P_IconBuffScale
/Game/PrimalEarth/ExplorerNotes/DahkeyaNote_Icon.DahkeyaNote_Icon
/Game/PrimalEarth/ExplorerNotes/DianaNote_Icon.DianaNote_Icon
/Game/PrimalEarth/ExplorerNotes/EdmundNote_Icon.EdmundNote_Icon
/Game/PrimalEarth/ExplorerNotes/GradStudentsNote_Icon.GradStudentsNote_Icon
/Game/PrimalEarth/ExplorerNotes/HelenaNote_Icon.HelenaNote_Icon
/Game/PrimalEarth/ExplorerNotes/MeiJinNote_Icon.MeiJinNote_Icon
/Game/PrimalEarth/ExplorerNotes/NervaNote_Icon.NervaNote_Icon
/Game/PrimalEarth/ExplorerNotes/RaiaNote_Icon.RaiaNote_Icon
/Game/PrimalEarth/ExplorerNotes/RockwellAlienNote_Icon.RockwellAlienNote_Icon
/Game/PrimalEarth/ExplorerNotes/SheWhoWaitsNote_Icon.SheWhoWaitsNote_Icon
/Game/PrimalEarth/Human/Male/Outfits/Hats/Ball_Cap/MIC_BallCap_Icon1.MIC_BallCap_Icon1
/Game/PrimalEarth/Human/Male/Outfits/Hats/Ball_Cap/MIC_BallCap_Icon2.MIC_BallCap_Icon2
/Game/PrimalEarth/Human/Male/Outfits/Hats/Ball_Cap/MIC_BallCap_Icon3.MIC_BallCap_Icon3
/Game/PrimalEarth/Human/Male/Outfits/Hats/Ball_Cap/T_Icons.T_Icons
/Game/PrimalEarth/Structures/Christmas/Icons/CandyCane_Icon.CandyCane_Icon
/Game/PrimalEarth/Structures/Christmas/Icons/CrystalBallOff_Icon.CrystalBallOff_Icon
/Game/PrimalEarth/Structures/Christmas/Icons/CrystalBallOn_Icon.CrystalBallOn_Icon
/Game/PrimalEarth/Structures/Christmas/Icons/ReindeerCostume_Icon.ReindeerCostume_Icon
/Game/PrimalEarth/Structures/Christmas/Icons/SantaHat_Icon.SantaHat_Icon
/Game/PrimalEarth/Structures/Christmas/Icons/Wreath_Icon.Wreath_Icon
/Game/PrimalEarth/Structures/Christmas/TopHat/TopHat_Icon.TopHat_Icon
/Game/PrimalEarth/UI/Empty_AllosaurusHead_Icon.Empty_AllosaurusHead_Icon
/Game/PrimalEarth/UI/Empty_AmmoniteHead_Icon.Empty_AmmoniteHead_Icon
/Game/PrimalEarth/UI/Empty_AnglerHead_Icon.Empty_AnglerHead_Icon
/Game/PrimalEarth/UI/Empty_AnkylosaurusHead_Icon.Empty_AnkylosaurusHead_Icon
/Game/PrimalEarth/UI/Empty_ArchaeHead_Icon.Empty_ArchaeHead_Icon
/Game/PrimalEarth/UI/Empty_ArgentavisHead_Icon.Empty_ArgentavisHead_Icon
/Game/PrimalEarth/UI/Empty_ArthropleuraHead_Icon.Empty_ArthropleuraHead_Icon
/Game/PrimalEarth/UI/Empty_BaryonyxHead_Icon.Empty_BaryonyxHead_Icon
/Game/PrimalEarth/UI/Empty_BasilosaurusHead_Icon.Empty_BasilosaurusHead_Icon
/Game/PrimalEarth/UI/Empty_BatHead_Icon.Empty_BatHead_Icon