Paste #129427: Unnamed Server Log Paste

Date: 2024/12/27 19:49:26 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828


[2812월2024 12:44:09.791] [main/INFO] [FabricLoader/GameProvider/]: Loading Minecraft 1.21.1 Arclight arclight-1.21.1-1.0.0-SNAPSHOT-6aa268a with Fabric Loader 0.16.9
mainEx[2812월2024 12:44:09.996] [main/WARN] [FabricLoader/Resolution/]: Warnings were found!
 - Mod 'Forge Config API Port' (forgeconfigapiport) 21.1.3 recommends any version of modmenu, which is missing!
     - You should install any version of modmenu for the optimal experience.
mainEx[2812월2024 12:44:09.997] [main/INFO] [FabricLoader/]: Loading 66 mods:
    - architectury 13.0.8
    - arclight 1.0.0-SNAPSHOT+6aa268a
    - cobblemon 1.6.0+1.21.1
       \-- fabric-language-kotlin 1.11.0+kotlin.2.0.0
            |-- org_jetbrains_kotlin_kotlin-reflect 2.0.0
            |-- org_jetbrains_kotlin_kotlin-stdlib 2.0.0
            |-- org_jetbrains_kotlin_kotlin-stdlib-jdk7 2.0.0
            |-- org_jetbrains_kotlin_kotlin-stdlib-jdk8 2.0.0
            |-- org_jetbrains_kotlinx_atomicfu-jvm 0.24.0
            |-- org_jetbrains_kotlinx_kotlinx-coroutines-core-jvm 1.8.1
            |-- org_jetbrains_kotlinx_kotlinx-coroutines-jdk8 1.8.1
            |-- org_jetbrains_kotlinx_kotlinx-datetime-jvm 0.6.0
            |-- org_jetbrains_kotlinx_kotlinx-serialization-cbor-jvm 1.6.3
            |-- org_jetbrains_kotlinx_kotlinx-serialization-core-jvm 1.6.3
            \-- org_jetbrains_kotlinx_kotlinx-serialization-json-jvm 1.6.3
    - cobblemonridingfabric 1.3.2
    - fabric-api 0.109.0+1.21.1
       |-- fabric-api-base 0.4.42+6573ed8c19
       |-- fabric-api-lookup-api-v1 1.6.70+b559734419
       |-- fabric-biome-api-v1 13.0.30+be1ed2d719
       |-- fabric-block-api-v1 1.0.22+0af3f5a719
       |-- fabric-block-view-api-v2 1.0.10+6573ed8c19
       |-- fabric-blockrenderlayer-v1 1.1.52+0af3f5a719
       |-- fabric-client-tags-api-v1 1.1.15+6573ed8c19
       |-- fabric-command-api-v1 1.2.49+f71b366f19
       |-- fabric-command-api-v2 2.2.28+6ced4dd919
       |-- fabric-commands-v0 0.2.66+df3654b319
       |-- fabric-content-registries-v0 8.0.18+b559734419
       |-- fabric-convention-tags-v1 2.1.2+7f945d5b19
       |-- fabric-convention-tags-v2 2.9.2+e60e56d419
       |-- fabric-crash-report-info-v1 0.2.29+0af3f5a719
       |-- fabric-data-attachment-api-v1 1.4.0+da19b51a19
       |-- fabric-data-generation-api-v1 20.2.23+16c4ae2519
       |-- fabric-dimensions-v1 4.0.0+6fc22b9919
       |-- fabric-entity-events-v1 1.7.0+2122d82819
       |-- fabric-events-interaction-v0 0.7.13+ba9dae0619
       |-- fabric-game-rule-api-v1 1.0.53+6ced4dd919
       |-- fabric-item-api-v1 11.1.1+d5debaed19
       |-- fabric-item-group-api-v1 4.1.6+6823f7cd19
       |-- fabric-key-binding-api-v1 1.0.47+0af3f5a719
       |-- fabric-keybindings-v0 0.2.45+df3654b319
       |-- fabric-lifecycle-events-v1 2.5.0+01d9a51c19
       |-- fabric-loot-api-v2 3.0.15+3f89f5a519
       |-- fabric-loot-api-v3 1.0.3+3f89f5a519
       |-- fabric-message-api-v1 6.0.13+6573ed8c19
       |-- fabric-model-loading-api-v1 2.0.0+fe474d6b19
       |-- fabric-networking-api-v1 4.3.0+c7469b2119
       |-- fabric-object-builder-api-v1 15.2.1+40875a9319
       |-- fabric-particles-v1 4.0.2+6573ed8c19
       |-- fabric-recipe-api-v1 5.0.13+6508971219
       |-- fabric-registry-sync-v0 5.1.3+60c3209b19
       |-- fabric-renderer-api-v1 3.4.0+c705a49c19
       |-- fabric-renderer-indigo 1.7.0+c705a49c19
       |-- fabric-renderer-registries-v1 3.2.68+df3654b319
       |-- fabric-rendering-data-attachment-v1 0.3.48+73761d2e19
       |-- fabric-rendering-fluids-v1 3.1.6+1daea21519
       |-- fabric-rendering-v0 1.1.71+df3654b319
       |-- fabric-rendering-v1 5.0.5+df16efd019
       |-- fabric-resource-conditions-api-v1 4.3.0+8dc279b119
       |-- fabric-resource-loader-v0 1.3.1+5b5275af19
       |-- fabric-screen-api-v1 2.0.25+8b68f1c719
       |-- fabric-screen-handler-api-v1 1.3.87+b559734419
       |-- fabric-sound-api-v1 1.0.23+6573ed8c19
       |-- fabric-transfer-api-v1 5.4.2+95bead5f19
       \-- fabric-transitive-access-wideners-v1 6.1.0+1daea21519
    - fabricloader 0.16.9
       \-- mixinextras 0.4.1
    - forgeconfigapiport 21.1.3
       |-- com_electronwill_night-config_core 3.8.0
       \-- com_electronwill_night-config_toml 3.8.0
    - java 21
    - jei 19.8.4.113
    - lithium 0.14.3-snapshot+mc1.21.1-build.92
    - minecraft 1.21.1
    - rctapi 0.10.2-beta
    - rctmod 0.13.3-beta
    - terralith 2.5.7
    - voicechat 1.21.1-2.5.26
       \-- fabric-key-binding-api-v1 1.0.47+0af3f5a76a
mainEx[2812월2024 12:44:10.259] [main/INFO] [FabricLoader/Mixin/]: SpongePowered MIXIN Subsystem Version=0.8.7 Source=file:/C:/Users/user/Desktop/포켓몬%20패브릭1.21.1/libraries/net/fabricmc/sponge-mixin/0.15.4+mixin.0.8.7/sponge-mixin-0.15.4+mixin.0.8.7.jar Service=Knot/Fabric Env=SERVER
mainEx[2812월2024 12:44:10.318] [main/INFO] [FabricLoader/Mixin/]: Compatibility level set to JAVA_16
mainEx[2812월2024 12:44:10.323] [main/INFO] [FabricLoader/Mixin/]: Compatibility level set to JAVA_17
mainEx[2812월2024 12:44:10.328] [main/INFO] [FabricLoader/Mixin/]: Compatibility level set to JAVA_21
mainEx[2812월2024 12:44:10.779] [main/INFO] [Arclight/]: 언어 en_us 대신 ko_kr을 사용합니다.
mainEx[2812월2024 12:44:10.784] [main/INFO] [Arclight/]: 

       ___           ___     __   /\
      /   | ________/ (_)__ / /  / /
     / /| |/ __/ __/ / / _ / _ \/__/
    / ___ / / / /_/ / / / / // / /
   /_/  |/_/  \__/_/_/\_ /_//_/ /
                     /__/     \/

    버전: 诸王 (Feudal Kings) / arclight-1.21.1-1.0.0-SNAPSHOT-6aa268a
    빌드 날짜: 2024-12-19 16:04:00

mainEx[2812월2024 12:44:10.824] [main/WARN] [FabricLoader/Mixin/]: Reference map 'forgeconfigapiport.common.refmap.json' for forgeconfigapiport.common.mixins.json could not be read. If this is a development environment you can ignore this message
mainEx[2812월2024 12:44:10.865] [main/INFO] [LithiumConfig/]: Option 'mixin.entity.collisions.fluid' requires 'mixin.util.block_tracking=true' but found 'false'. Setting 'mixin.entity.collisions.fluid=false'.
mainEx[2812월2024 12:44:10.865] [main/INFO] [LithiumConfig/]: Option 'mixin.experimental.entity.block_caching.suffocation' requires 'mixin.util.block_tracking=true' but found 'false'. Setting 'mixin.experimental.entity.block_caching.suffocation=false'.
mainEx[2812월2024 12:44:10.865] [main/INFO] [LithiumConfig/]: Option 'mixin.experimental.entity.block_caching.block_support' requires 'mixin.util.block_tracking=true' but found 'false'. Setting 'mixin.experimental.entity.block_caching.block_support=false'.
mainEx[2812월2024 12:44:10.865] [main/INFO] [LithiumConfig/]: Option 'mixin.experimental.entity.block_caching.fluid_pushing' requires 'mixin.util.block_tracking=true' but found 'false'. Setting 'mixin.experimental.entity.block_caching.fluid_pushing=false'.
mainEx[2812월2024 12:44:10.865] [main/INFO] [LithiumConfig/]: Option 'mixin.experimental.entity.block_caching.block_touching' requires 'mixin.util.block_tracking=true' but found 'false'. Setting 'mixin.experimental.entity.block_caching.block_touching=false'.
mainEx[2812월2024 12:44:10.865] [main/INFO] [LithiumConfig/]: Option 'mixin.experimental.entity.block_caching' requires 'mixin.util.block_tracking=true' but found 'false'. Setting 'mixin.experimental.entity.block_caching=false'.
mainEx[2812월2024 12:44:10.866] [main/INFO] [Lithium/]: Loaded configuration file for Lithium: 144 options available, 1 override(s) found
mainEx[2812월2024 12:44:11.592] [main/WARN] [FabricLoader/Mixin/]: Error loading class: net/minecraft/class_350 (java.lang.ClassNotFoundException: net/minecraft/class_350)
mainEx[2812월2024 12:44:11.592] [main/WARN] [FabricLoader/Mixin/]: @Mixin target net.minecraft.class_350 was not found mixins.cobblemon-common.json:accessor.EntryListWidgetAccessor from mod cobblemon
mainEx[2812월2024 12:44:11.593] [main/WARN] [FabricLoader/Mixin/]: Error loading class: juuxel/adorn/block/variant/BlockVariantSets (java.lang.ClassNotFoundException: juuxel/adorn/block/variant/BlockVariantSets)
mainEx[2812월2024 12:44:11.593] [main/WARN] [FabricLoader/Mixin/]: @Mixin target juuxel.adorn.block.variant.BlockVariantSets was not found mixins.cobblemon-common.json:invoker.AdornRegisterInvoker from mod cobblemon
mainEx[2812월2024 12:44:11.763] [main/INFO] [Lithium/]: Force-enabling mixin 'compat.transfer_api.TransferApiHelperMixin' as rule 'mixin.compat.transfer_api' (added by mods [lithium]) enables it
mainEx[2812월2024 12:44:11.772] [main/WARN] [FabricLoader/Mixin/]: Error loading class: net/minecraft/class_918 (java.lang.ClassNotFoundException: net/minecraft/class_918)
mainEx[2812월2024 12:44:11.772] [main/WARN] [FabricLoader/Mixin/]: @Mixin target net.minecraft.class_918 was not found rctmod.mixins.json:client.ItemRendererMixin from mod rctmod
mainEx[2812월2024 12:44:12.035] [main/INFO] [FabricLoader/MixinExtras|Service/]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.4.1).
mainEx[2812월2024 12:44:14.416] [main/WARN] [FabricLoader/Mixin/]: Method overwrite conflict for method_5736 in lithium.mixins.json:alloc.deep_passengers.EntityMixin from mod lithium, previously written by io.izzel.arclight.common.mixin.optimization.general.EntityMixin_Optimize. Skipping method.
mainEx[2812월2024 12:44:20.430] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Booting LaxPermissionValidator, permissions will be checked using Minecrafts permission level system, see https://minecraft.fandom.com/wiki/Permission_level
mainEx[2812월2024 12:44:20.435] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Launching Cobblemon 1.6.0 
mainEx[2812월2024 12:44:20.855] [main/ERROR] [net.minecraft.class_156/]: No data fixer registered for cobblemon:pokemon
mainEx[2812월2024 12:44:20.858] [main/ERROR] [net.minecraft.class_156/]: No data fixer registered for cobblemon:empty_pokeball
mainEx[2812월2024 12:44:20.858] [main/ERROR] [net.minecraft.class_156/]: No data fixer registered for cobblemon:boat
mainEx[2812월2024 12:44:20.859] [main/ERROR] [net.minecraft.class_156/]: No data fixer registered for cobblemon:chest_boat
mainEx[2812월2024 12:44:20.862] [main/ERROR] [net.minecraft.class_156/]: No data fixer registered for cobblemon:poke_bobber
mainEx[2812월2024 12:44:20.862] [main/ERROR] [net.minecraft.class_156/]: No data fixer registered for cobblemon:generic_bedrock
mainEx[2812월2024 12:44:20.863] [main/ERROR] [net.minecraft.class_156/]: No data fixer registered for cobblemon:npc
mainEx[2812월2024 12:44:21.340] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Starting the Best Spawner...
mainEx[2812월2024 12:44:21.343] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Loaded 7 spawning condition types.
mainEx[2812월2024 12:44:21.349] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Loaded 6 spawning context types.
mainEx[2812월2024 12:44:21.353] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Loaded 2 spawn detail types.
mainEx[2812월2024 12:44:21.479] [Cobblemon Showdown/INFO] [com.cobblemon.mod.common.Cobblemon/]: Starting showdown service...
Cobblemon ShowdownEx[2812월2024 12:44:23.417] [Cobblemon Showdown/INFO] [com.cobblemon.mod.common.Cobblemon/]: Showdown has been started!
Cobblemon ShowdownEx[2812월2024 12:44:23.418] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Note: Cobblemon data registries are only loaded once per server instance as Pokémon species are not safe to reload.
mainEx[2812월2024 12:44:23.418] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:molang registry
mainEx[2812월2024 12:44:23.420] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:species_features registry
mainEx[2812월2024 12:44:23.421] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:global_species_features registry
mainEx[2812월2024 12:44:23.421] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:species_feature_assignments registry
mainEx[2812월2024 12:44:23.433] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:action_effects registry
mainEx[2812월2024 12:44:23.434] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:moves registry
mainEx[2812월2024 12:44:23.436] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:abilities registry
mainEx[2812월2024 12:44:23.437] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:brain_presets registry
mainEx[2812월2024 12:44:23.437] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:species registry
mainEx[2812월2024 12:44:23.437] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:species_additions registry
mainEx[2812월2024 12:44:23.437] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:pokeballs registry
mainEx[2812월2024 12:44:23.438] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:properties_tab_completion registry
mainEx[2812월2024 12:44:23.438] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:spawn_detail_presets registry
mainEx[2812월2024 12:44:23.443] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:spawn_rules registry
mainEx[2812월2024 12:44:23.453] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:mechanics registry
mainEx[2812월2024 12:44:23.453] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:bag_items registry
mainEx[2812월2024 12:44:23.456] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:dialogues registry
mainEx[2812월2024 12:44:23.457] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:natural_materials registry
mainEx[2812월2024 12:44:23.458] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:fossils registry
mainEx[2812월2024 12:44:23.462] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:npc_preset registry
mainEx[2812월2024 12:44:23.464] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:npc registry
mainEx[2812월2024 12:44:23.465] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:dex_entries registry
mainEx[2812월2024 12:44:23.466] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:dex_entry_additions registry
mainEx[2812월2024 12:44:23.468] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:dexes registry
mainEx[2812월2024 12:44:23.469] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:dex_additions registry
mainEx[2812월2024 12:44:23.470] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:flows registry
mainEx[2812월2024 12:44:23.474] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:spawn_pool_world registry
mainEx[2812월2024 12:44:23.475] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:pokerods registry
mainEx[2812월2024 12:44:23.482] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:berries registry
mainEx[2812월2024 12:44:23.483] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Registered the cobblemon:fishing_baits registry
mainEx[2812월2024 12:44:23.909] [main/ERROR] [net.minecraft.class_156/]: No data fixer registered for trainer
mainEx[2812월2024 12:44:24.006] [main/INFO] [voicechat/]: [voicechat] Compatibility version 18
mainEx[2812월2024 12:44:24.031] [main/INFO] [voicechat/]: [voicechat] Loading plugins
mainEx[2812월2024 12:44:24.032] [main/INFO] [voicechat/]: [voicechat] Loaded 0 plugin(s)
mainEx[2812월2024 12:44:24.032] [main/INFO] [voicechat/]: [voicechat] Initializing plugins
mainEx[2812월2024 12:44:24.032] [main/INFO] [voicechat/]: [voicechat] Initialized 0 plugin(s)
mainEx[2812월2024 12:44:24.306] [main/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
mainEx[2812월2024 12:44:24.550] [main/INFO] [net.minecraft.class_3279/]: Found non-pack entry '.\world\datapacks\MyTrainerDataPack', ignoring
mainEx[2812월2024 12:44:25.589] [Worker-Main-3/ERROR] [net.minecraft.class_8490/]: Couldn't parse element minecraft:loot_table/rctmod:generic/unique/tms - Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_zippyzap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_zingzap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_zenheadbutt; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_zapcannon; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_yawn; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_xscissor; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_wringout; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_wrap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_worryseed; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_workup; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_woodhammer; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_wonderroom; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_withdraw; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_wish; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_wingattack; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_willowisp; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_wildcharge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_wildboltstorm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_wideguard; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_wickedtorque; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_wickedblow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_whirlwind; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_whirlpool; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_weatherball; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_wavecrash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_waterspout; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_watersport; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_watershuriken; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_waterpulse; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_waterpledge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_watergun; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_waterfall; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_wakeupslap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_volttackle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_voltswitch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_vitalthrow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_visegrip; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_vinewhip; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_victorydance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_venoshock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_venomdrench; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_veeveevolley; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_vcreate; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_vacuumwave; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_uproar; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_uturn; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_twister; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_twinkletackle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_twineedle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_twinbeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_trumpcard; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_tropkick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_triplekick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_tripledive; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_tripleaxel; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_triplearrows; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_trickroom; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_trickortreat; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_trick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_triattack; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_transform; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_trailblaze; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_toxicthread; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_toxicspikes; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_toxic; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_torment; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_torchsong; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_topsyturvy; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_tidyup; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_tickle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_thunderwave; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_thundershock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_thunderpunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_thunderouskick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_thunderfang; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_thundercage; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_thunderbolt; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_thunder; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_throatchop; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_thrash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_thousandwaves; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_thousandarrows; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_thief; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_terrainpulse; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_terablast; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_teleport; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_telekinesis; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_teeterdance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_tectonicrage; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_technoblast; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_teatime; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_tearfullook; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_taunt; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_tarshot; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_takeheart; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_takedown; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_tailwind; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_tailwhip; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_tailslap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_tailglow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_tackle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_synthesis; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_synchronoise; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_swordsdance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_switcheroo; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_swift; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_sweetscent; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_sweetkiss; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_swallow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_swagger; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_surgingstrikes; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_surf; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_supersonicskystrike; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_supersonic; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_superpower; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_superfang; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_sunsteelstrike; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_sunnyday; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_suckerpunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_subzeroslammer; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_substitute; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_submission; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_stunspore; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_stuffcheeks; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_strugglebug; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_struggle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_stringshot; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_strengthsap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_strength; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_strangesteam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_stormthrow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_storedpower; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_stoneedge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_stoneaxe; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_stompingtantrum; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_stomp; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_stokedsparksurfer; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_stockpile; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_stickyweb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_steelwing; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_steelroller; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_steelbeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_steamroller; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_steameruption; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_stealthrock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_springtidestorm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_spotlight; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_spore; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_splishysplash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_splinteredstormshards; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_splash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_spite; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_spitup; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_spiritshackle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_spiritbreak; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_spinout; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_spikyshield; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_spikes; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_spikecannon; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_spiderweb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_spicyextract; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_speedswap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_spectralthief; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_sparklyswirl; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_sparklingaria; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_spark; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_spacialrend; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_soulstealing7starstrike; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_sonicboom; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_solarblade; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_solarbeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_softboiled; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_soak; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_snowscape; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_snore; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_snipeshot; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_snatch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_snarl; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_snaptrap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_smokescreen; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_smog; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_smellingsalts; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_smartstrike; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_smackdown; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_sludgewave; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_sludgebomb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_sludge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_sleeptalk; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_sleeppowder; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_slash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_slam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_slackoff; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_skyuppercut; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_skydrop; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_skyattack; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_skullbash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_skittersmack; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_skillswap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_sketch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_sizzlyslide; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_sinisterarrowraid; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_sing; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_simplebeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_silverwind; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_silktrap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_signalbeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_shoreup; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_shockwave; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_shiftgear; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_shelter; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_shelltrap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_shellsmash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_shellsidearm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_sheercold; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_shedtail; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_shatteredpsyche; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_sharpen; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_shadowstrike; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_shadowsneak; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_shadowpunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_shadowforce; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_shadowclaw; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_shadowbone; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_shadowball; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_selfdestruct; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_seismictoss; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_seedflare; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_seedbomb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_secretsword; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_secretpower; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_searingsunrazesmash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_searingshot; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_screech; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_scratch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_scorchingsands; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_scaryface; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_scaleshot; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_scald; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_savagespinout; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_sappyseed; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_sandtomb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_sandstorm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_sandsearstorm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_sandattack; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_saltcure; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_safeguard; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_sacredsword; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_sacredfire; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_ruination; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_round; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_rototiller; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_roost; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_rollout; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_rollingkick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_roleplay; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_rockwrecker; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_rocktomb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_rockthrow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_rocksmash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_rockslide; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_rockpolish; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_rockclimb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_rockblast; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_roaroftime; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_roar; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_risingvoltage; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_revivalblessing; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_reversal; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_revenge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_revelationdance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_return; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_retaliate; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_rest; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_relicsong; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_refresh; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_reflecttype; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_reflect; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_recycle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_recover; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_razorwind; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_razorshell; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_razorleaf; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_rapidspin; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_raindance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_ragingfury; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_ragingbull; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_ragepowder; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_ragefist; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_rage; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_quiverdance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_quickguard; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_quickattack; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_quash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_pyroball; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_pursuit; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_purify; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_punishment; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_pulverizingpancake; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_psywave; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_psystrike; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_psyshock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_psyshieldbash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_psychoshift; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_psychocut; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_psychoboost; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_psychicterrain; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_psychicfangs; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_psychic; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_psychup; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_psyblade; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_psybeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_protect; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_prismaticlaser; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_present; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_precipiceblades; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_powerwhip; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_poweruppunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_powertrip; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_powertrick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_powerswap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_powersplit; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_powershift; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_powergem; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_powdersnow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_powder; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_pound; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_pounce; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_populationbomb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_poltergeist; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_pollenpuff; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_poisontail; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_poisonsting; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_poisonpowder; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_poisonjab; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_poisongas; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_poisonfang; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_pluck; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_playrough; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_playnice; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_plasmafists; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_pinmissile; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_pikapapow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_photongeyser; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_phantomforce; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_petaldance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_petalblizzard; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_perishsong; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_peck; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_payday; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_payback; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_partingshot; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_paraboliccharge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_painsplit; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_overheat; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_overdrive; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_outrage; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_originpulse; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_orderup; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_ominouswind; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_odorsleuth; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_octolock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_octazooka; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_oceanicoperetta; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_obstruct; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_oblivionwing; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_nuzzle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_noxioustorque; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_noretreat; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_nobleroar; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_nightslash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_nightshade; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_nightmare; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_nightdaze; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_neverendingnightmare; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_needlearm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_naturesmadness; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_naturepower; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_naturalgift; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_nastyplot; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_mysticalpower; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_mysticalfire; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_multiattack; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_muddywater; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_mudsport; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_mudslap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_mudshot; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_mudbomb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_mountaingale; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_mortalspin; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_morningsun; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_moonlight; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_moongeistbeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_moonblast; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_mistyterrain; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_mistyexplosion; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_mistball; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_mist; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_mirrorshot; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_mirrormove; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_mirrorcoat; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_miracleeye; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_minimize; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_mindreader; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_mindblown; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_mimic; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_milkdrink; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_metronome; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_meteormash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_meteorbeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_meteorassault; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_metalsound; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_metalclaw; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_metalburst; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_menacingmoonrazemaelstrom; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_memento; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_megapunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_megakick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_megahorn; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_megadrain; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_mefirst; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_meditate; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_meanlook; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_maxwyrmwind; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_maxstrike; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_maxsteelspike; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_maxstarfall; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_maxrockfall; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_maxquake; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_maxphantasm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_maxovergrowth; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_maxooze; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_maxmindstorm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_maxlightning; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_maxknuckle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_maxhailstorm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_maxguard; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_maxgeyser; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_maxflutterby; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_maxflare; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_maxdarkness; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_maxairstream; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_matblock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_maliciousmoonsault; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_makeitrain; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_magnitude; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_magnetrise; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_magneticflux; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_magnetbomb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_magmastorm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_magicroom; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_magicpowder; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_magiccoat; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_magicaltorque; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_magicalleaf; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_machpunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_lusterpurge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_lunge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_lunardance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_lunarblessing; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_luminacrash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_luckychant; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_lowsweep; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_lowkick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_lovelykiss; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_lockon; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_liquidation; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_lightthatburnsthesky; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_lightscreen; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_lightofruin; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_lifedew; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_lick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_letssnuggleforever; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_leer; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_leechseed; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_leechlife; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_leaftornado; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_leafstorm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_leafblade; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_leafage; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_lavaplume; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_lastrespects; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_lastresort; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_lashout; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_laserfocus; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_landswrath; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_kowtowcleave; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_knockoff; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_kingsshield; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_kinesis; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_karatechop; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_junglehealing; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_jumpkick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_judgment; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_jetpunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_jawlock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_irontail; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_ironhead; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_irondefense; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_iondeluge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_instruct; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_ingrain; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_infestation; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_infernooverdrive; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_inferno; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_infernalparade; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_incinerate; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_imprison; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_icywind; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_iciclespear; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_iciclecrash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_icespinner; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_iceshard; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_icepunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_icehammer; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_icefang; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_iceburn; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_icebeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_iceball; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_hypnosis; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_hypervoice; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_hyperspacehole; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_hyperspacefury; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_hyperfang; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_hyperdrill; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_hyperbeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_hydrovortex; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_hydrosteam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_hydropump; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_hydrocannon; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_hurricane; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_howl; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_hornleech; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_horndrill; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_hornattack; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_honeclaws; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_holdhands; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_holdback; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_highjumpkick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_highhorsepower; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_hiddenpower; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_hex; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_helpinghand; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_heavyslam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_heatwave; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_heatcrash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_heartswap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_heartstamp; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_healpulse; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_healorder; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_healingwish; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_healblock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_healbell; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_headsmash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_headlongrush; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_headcharge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_headbutt; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_haze; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_harden; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_happyhour; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_hammerarm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_hail; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gyroball; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gust; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gunkshot; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_guillotine; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_guardswap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_guardsplit; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_guardianofalola; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_grudge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_growth; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_growl; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gravity; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gravapple; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_grassyterrain; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_grassyglide; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_grasswhistle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_grasspledge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_grassknot; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxwindrage; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxwildfire; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxvoltcrash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxvolcalith; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxvinelash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxterror; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxtartness; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxsweetness; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxstunshock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxstonesurge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxsteelsurge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxsnooze; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxsmite; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxsandblast; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxresonance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxreplenish; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxrapidflow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxoneblow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxmeltdown; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxmalodor; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxhydrosnipe; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxgravitas; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxgoldrush; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxfoamburst; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxfireball; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxfinale; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxdrumsolo; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxdepletion; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxcuddle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxchistrike; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxcentiferno; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxcannonade; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gmaxbefuddle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_glitzyglow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_glare; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_glaiverush; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_glaciate; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_glaciallance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gigavolthavoc; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gigatonhammer; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gigaimpact; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gigadrain; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_geomancy; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_genesissupernova; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gearup; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_geargrind; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_gastroacid; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_futuresight; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_fusionflare; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_fusionbolt; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_furyswipes; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_furycutter; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_furyattack; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_frustration; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_frostbreath; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_frenzyplant; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_freezyfrost; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_freezingglare; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_freezeshock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_freezedry; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_foulplay; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_forestscurse; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_foresight; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_forcepalm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_followme; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_focuspunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_focusenergy; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_focusblast; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_flyingpress; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_fly; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_flowertrick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_flowershield; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_floralhealing; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_floatyfall; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_flipturn; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_fling; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_fleurcannon; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_flatter; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_flashcannon; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_flash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_flareblitz; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_flamethrower; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_flamewheel; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_flamecharge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_flameburst; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_flail; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_fissure; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_fishiousrend; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_firstimpression; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_firespin; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_firepunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_firepledge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_firelash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_firefang; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_fireblast; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_finalgambit; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_filletaway; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_fierywrath; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_fierydance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_fellstinger; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_feintattack; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_feint; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_featherdance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_falseswipe; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_falsesurrender; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_faketears; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_fakeout; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_fairywind; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_fairylock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_facade; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_extremespeed; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_extremeevoboost; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_extrasensory; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_explosion; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_expandingforce; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_eternabeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_esperwing; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_eruption; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_entrainment; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_energyball; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_endure; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_endeavor; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_encore; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_ember; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_embargo; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_electroweb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_electrodrift; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_electroball; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_electrify; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_electricterrain; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_eggbomb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_eeriespell; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_eerieimpulse; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_echoedvoice; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_earthquake; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_earthpower; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_dynamicpunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_dynamaxcannon; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_dualwingbeat; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_dualchop; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_drumbeating; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_drillrun; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_drillpeck; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_dreameater; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_drainpunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_drainingkiss; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_dragontail; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_dragonrush; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_dragonrage; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_dragonpulse; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_dragonhammer; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_dragonenergy; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_dragondarts; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_dragondance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_dragonclaw; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_dragonbreath; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_dragonascent; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_dracometeor; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_doubleteam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_doubleslap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_doubleshock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_doublekick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_doubleironbash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_doublehit; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_doubleedge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_doomdesire; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_doodle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_dizzypunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_dive; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_direclaw; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_discharge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_disarmingvoice; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_disable; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_dig; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_diamondstorm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_devastatingdrake; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_detect; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_destinybond; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_defog; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_defensecurl; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_defendorder; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_decorate; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_dazzlinggleam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_darkvoid; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_darkpulse; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_darkestlariat; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_cut; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_curse; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_crushgrip; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_crushclaw; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_crunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_crosspoison; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_crosschop; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_craftyshield; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_crabhammer; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_covet; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_courtchange; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_counter; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_cottonspore; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_cottonguard; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_cosmicpower; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_corrosivegas; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_corkscrewcrash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_coreenforcer; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_copycat; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_conversion2; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_conversion; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_continentalcrush; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_constrict; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_confusion; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_confuseray; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_confide; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_comeuppance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_cometpunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_combattorque; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_collisioncourse; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_coil; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_coaching; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_closecombat; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_clearsmog; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_clangoroussoulblaze; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_clangoroussoul; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_clangingscales; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_clamp; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_circlethrow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_chloroblast; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_chipaway; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_chillyreception; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_chillingwater; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_chatter; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_charm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_chargebeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_charge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_celebrate; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_ceaselessedge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_catastropika; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_captivate; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_camouflage; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_calmmind; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_buzzybuzz; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_burnup; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_burningjealousy; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_bulletseed; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_bulletpunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_bulldoze; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_bulkup; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_bugbuzz; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_bugbite; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_bubblebeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_bubble; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_brutalswing; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_brine; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_brickbreak; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_breakneckblitz; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_breakingswipe; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_bravebird; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_branchpoke; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_bouncybubble; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_bounce; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_boomburst; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_bonerush; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_bonemerang; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_boneclub; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_boltstrike; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_boltbeak; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_bodyslam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_bodypress; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_blueflare; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_bloomdoom; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_block; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_blizzard; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_bleakwindstorm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_blazingtorque; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_blazekick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_blastburn; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_blackholeeclipse; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_bittermalice; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_bitterblade; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_bite; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_bind; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_bide; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_bestow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_bellydrum; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_belch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_behemothblade; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_behemothbash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_beatup; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_beakblast; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_batonpass; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_barrier; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_barrage; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_barbbarrage; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_banefulbunker; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_baddybad; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_babydolleyes; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_axekick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_avalanche; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_autotomize; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_auroraveil; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_aurorabeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_aurawheel; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_aurasphere; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_attract; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_attackorder; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_astralbarrage; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_astonish; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_assurance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_assist; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_aromaticmist; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_aromatherapy; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_armthrust; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_armorcannon; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_aquatail; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_aquastep; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_aquaring; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_aquajet; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_aquacutter; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_appleacid; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_ancientpower; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_anchorshot; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_amnesia; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_allyswitch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_alloutpummeling; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_airslash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_aircutter; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_agility; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_afteryou; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_aeroblast; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_aerialace; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_acupressure; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_acrobatics; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_acidspray; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_aciddownpour; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_acidarmor; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_acid; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_accelerock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_absorb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tm_10000000voltthunderbolt
Worker-Main-3Ex[2812월2024 12:44:25.637] [Worker-Main-3/ERROR] [net.minecraft.class_8490/]: Couldn't parse element minecraft:loot_table/rctmod:generic/rare/trs - Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_zippyzap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_zingzap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_zenheadbutt; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_zapcannon; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_yawn; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_xscissor; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_wringout; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_wrap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_worryseed; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_workup; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_woodhammer; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_wonderroom; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_withdraw; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_wish; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_wingattack; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_willowisp; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_wildcharge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_wildboltstorm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_wideguard; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_wickedtorque; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_wickedblow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_whirlwind; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_whirlpool; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_weatherball; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_wavecrash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_waterspout; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_watersport; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_watershuriken; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_waterpulse; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_waterpledge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_watergun; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_waterfall; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_wakeupslap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_volttackle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_voltswitch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_vitalthrow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_visegrip; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_vinewhip; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_victorydance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_venoshock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_venomdrench; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_veeveevolley; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_vcreate; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_vacuumwave; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_uproar; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_uturn; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_twister; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_twinkletackle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_twineedle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_twinbeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_trumpcard; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_tropkick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_triplekick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_tripledive; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_tripleaxel; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_triplearrows; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_trickroom; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_trickortreat; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_trick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_triattack; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_transform; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_trailblaze; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_toxicthread; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_toxicspikes; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_toxic; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_torment; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_torchsong; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_topsyturvy; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_tidyup; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_tickle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_thunderwave; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_thundershock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_thunderpunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_thunderouskick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_thunderfang; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_thundercage; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_thunderbolt; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_thunder; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_throatchop; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_thrash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_thousandwaves; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_thousandarrows; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_thief; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_terrainpulse; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_terablast; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_teleport; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_telekinesis; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_teeterdance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_tectonicrage; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_technoblast; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_teatime; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_tearfullook; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_taunt; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_tarshot; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_takeheart; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_takedown; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_tailwind; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_tailwhip; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_tailslap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_tailglow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_tackle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_synthesis; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_synchronoise; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_swordsdance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_switcheroo; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_swift; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_sweetscent; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_sweetkiss; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_swallow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_swagger; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_surgingstrikes; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_surf; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_supersonicskystrike; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_supersonic; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_superpower; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_superfang; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_sunsteelstrike; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_sunnyday; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_suckerpunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_subzeroslammer; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_substitute; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_submission; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_stunspore; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_stuffcheeks; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_strugglebug; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_struggle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_stringshot; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_strengthsap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_strength; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_strangesteam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_stormthrow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_storedpower; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_stoneedge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_stoneaxe; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_stompingtantrum; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_stomp; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_stokedsparksurfer; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_stockpile; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_stickyweb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_steelwing; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_steelroller; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_steelbeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_steamroller; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_steameruption; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_stealthrock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_springtidestorm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_spotlight; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_spore; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_splishysplash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_splinteredstormshards; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_splash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_spite; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_spitup; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_spiritshackle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_spiritbreak; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_spinout; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_spikyshield; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_spikes; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_spikecannon; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_spiderweb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_spicyextract; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_speedswap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_spectralthief; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_sparklyswirl; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_sparklingaria; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_spark; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_spacialrend; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_soulstealing7starstrike; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_sonicboom; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_solarblade; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_solarbeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_softboiled; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_soak; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_snowscape; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_snore; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_snipeshot; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_snatch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_snarl; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_snaptrap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_smokescreen; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_smog; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_smellingsalts; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_smartstrike; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_smackdown; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_sludgewave; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_sludgebomb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_sludge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_sleeptalk; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_sleeppowder; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_slash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_slam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_slackoff; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_skyuppercut; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_skydrop; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_skyattack; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_skullbash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_skittersmack; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_skillswap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_sketch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_sizzlyslide; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_sinisterarrowraid; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_sing; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_simplebeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_silverwind; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_silktrap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_signalbeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_shoreup; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_shockwave; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_shiftgear; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_shelter; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_shelltrap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_shellsmash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_shellsidearm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_sheercold; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_shedtail; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_shatteredpsyche; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_sharpen; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_shadowstrike; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_shadowsneak; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_shadowpunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_shadowforce; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_shadowclaw; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_shadowbone; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_shadowball; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_selfdestruct; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_seismictoss; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_seedflare; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_seedbomb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_secretsword; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_secretpower; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_searingsunrazesmash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_searingshot; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_screech; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_scratch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_scorchingsands; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_scaryface; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_scaleshot; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_scald; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_savagespinout; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_sappyseed; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_sandtomb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_sandstorm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_sandsearstorm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_sandattack; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_saltcure; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_safeguard; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_sacredsword; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_sacredfire; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_ruination; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_round; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_rototiller; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_roost; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_rollout; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_rollingkick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_roleplay; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_rockwrecker; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_rocktomb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_rockthrow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_rocksmash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_rockslide; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_rockpolish; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_rockclimb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_rockblast; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_roaroftime; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_roar; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_risingvoltage; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_revivalblessing; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_reversal; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_revenge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_revelationdance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_return; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_retaliate; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_rest; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_relicsong; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_refresh; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_reflecttype; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_reflect; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_recycle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_recover; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_razorwind; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_razorshell; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_razorleaf; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_rapidspin; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_raindance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_ragingfury; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_ragingbull; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_ragepowder; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_ragefist; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_rage; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_quiverdance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_quickguard; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_quickattack; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_quash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_pyroball; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_pursuit; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_purify; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_punishment; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_pulverizingpancake; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_psywave; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_psystrike; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_psyshock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_psyshieldbash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_psychoshift; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_psychocut; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_psychoboost; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_psychicterrain; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_psychicfangs; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_psychic; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_psychup; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_psyblade; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_psybeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_protect; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_prismaticlaser; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_present; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_precipiceblades; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_powerwhip; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_poweruppunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_powertrip; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_powertrick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_powerswap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_powersplit; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_powershift; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_powergem; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_powdersnow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_powder; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_pound; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_pounce; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_populationbomb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_poltergeist; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_pollenpuff; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_poisontail; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_poisonsting; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_poisonpowder; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_poisonjab; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_poisongas; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_poisonfang; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_pluck; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_playrough; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_playnice; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_plasmafists; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_pinmissile; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_pikapapow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_photongeyser; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_phantomforce; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_petaldance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_petalblizzard; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_perishsong; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_peck; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_payday; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_payback; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_partingshot; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_paraboliccharge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_painsplit; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_overheat; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_overdrive; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_outrage; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_originpulse; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_orderup; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_ominouswind; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_odorsleuth; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_octolock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_octazooka; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_oceanicoperetta; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_obstruct; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_oblivionwing; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_nuzzle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_noxioustorque; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_noretreat; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_nobleroar; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_nightslash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_nightshade; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_nightmare; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_nightdaze; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_neverendingnightmare; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_needlearm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_naturesmadness; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_naturepower; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_naturalgift; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_nastyplot; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_mysticalpower; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_mysticalfire; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_multiattack; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_muddywater; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_mudsport; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_mudslap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_mudshot; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_mudbomb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_mountaingale; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_mortalspin; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_morningsun; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_moonlight; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_moongeistbeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_moonblast; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_mistyterrain; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_mistyexplosion; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_mistball; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_mist; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_mirrorshot; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_mirrormove; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_mirrorcoat; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_miracleeye; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_minimize; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_mindreader; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_mindblown; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_mimic; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_milkdrink; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_metronome; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_meteormash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_meteorbeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_meteorassault; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_metalsound; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_metalclaw; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_metalburst; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_menacingmoonrazemaelstrom; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_memento; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_megapunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_megakick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_megahorn; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_megadrain; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_mefirst; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_meditate; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_meanlook; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_maxwyrmwind; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_maxstrike; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_maxsteelspike; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_maxstarfall; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_maxrockfall; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_maxquake; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_maxphantasm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_maxovergrowth; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_maxooze; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_maxmindstorm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_maxlightning; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_maxknuckle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_maxhailstorm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_maxguard; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_maxgeyser; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_maxflutterby; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_maxflare; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_maxdarkness; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_maxairstream; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_matblock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_maliciousmoonsault; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_makeitrain; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_magnitude; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_magnetrise; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_magneticflux; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_magnetbomb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_magmastorm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_magicroom; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_magicpowder; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_magiccoat; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_magicaltorque; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_magicalleaf; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_machpunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_lusterpurge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_lunge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_lunardance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_lunarblessing; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_luminacrash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_luckychant; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_lowsweep; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_lowkick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_lovelykiss; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_lockon; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_liquidation; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_lightthatburnsthesky; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_lightscreen; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_lightofruin; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_lifedew; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_lick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_letssnuggleforever; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_leer; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_leechseed; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_leechlife; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_leaftornado; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_leafstorm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_leafblade; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_leafage; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_lavaplume; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_lastrespects; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_lastresort; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_lashout; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_laserfocus; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_landswrath; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_kowtowcleave; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_knockoff; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_kingsshield; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_kinesis; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_karatechop; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_junglehealing; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_jumpkick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_judgment; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_jetpunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_jawlock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_irontail; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_ironhead; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_irondefense; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_iondeluge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_instruct; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_ingrain; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_infestation; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_infernooverdrive; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_inferno; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_infernalparade; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_incinerate; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_imprison; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_icywind; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_iciclespear; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_iciclecrash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_icespinner; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_iceshard; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_icepunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_icehammer; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_icefang; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_iceburn; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_icebeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_iceball; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_hypnosis; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_hypervoice; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_hyperspacehole; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_hyperspacefury; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_hyperfang; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_hyperdrill; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_hyperbeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_hydrovortex; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_hydrosteam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_hydropump; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_hydrocannon; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_hurricane; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_howl; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_hornleech; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_horndrill; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_hornattack; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_honeclaws; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_holdhands; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_holdback; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_highjumpkick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_highhorsepower; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_hiddenpower; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_hex; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_helpinghand; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_heavyslam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_heatwave; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_heatcrash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_heartswap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_heartstamp; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_healpulse; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_healorder; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_healingwish; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_healblock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_healbell; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_headsmash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_headlongrush; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_headcharge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_headbutt; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_haze; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_harden; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_happyhour; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_hammerarm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_hail; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gyroball; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gust; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gunkshot; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_guillotine; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_guardswap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_guardsplit; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_guardianofalola; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_grudge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_growth; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_growl; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gravity; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gravapple; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_grassyterrain; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_grassyglide; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_grasswhistle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_grasspledge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_grassknot; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxwindrage; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxwildfire; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxvoltcrash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxvolcalith; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxvinelash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxterror; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxtartness; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxsweetness; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxstunshock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxstonesurge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxsteelsurge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxsnooze; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxsmite; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxsandblast; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxresonance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxreplenish; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxrapidflow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxoneblow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxmeltdown; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxmalodor; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxhydrosnipe; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxgravitas; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxgoldrush; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxfoamburst; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxfireball; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxfinale; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxdrumsolo; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxdepletion; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxcuddle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxchistrike; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxcentiferno; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxcannonade; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gmaxbefuddle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_glitzyglow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_glare; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_glaiverush; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_glaciate; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_glaciallance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gigavolthavoc; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gigatonhammer; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gigaimpact; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gigadrain; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_geomancy; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_genesissupernova; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gearup; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_geargrind; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_gastroacid; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_futuresight; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_fusionflare; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_fusionbolt; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_furyswipes; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_furycutter; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_furyattack; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_frustration; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_frostbreath; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_frenzyplant; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_freezyfrost; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_freezingglare; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_freezeshock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_freezedry; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_foulplay; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_forestscurse; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_foresight; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_forcepalm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_followme; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_focuspunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_focusenergy; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_focusblast; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_flyingpress; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_fly; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_flowertrick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_flowershield; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_floralhealing; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_floatyfall; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_flipturn; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_fling; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_fleurcannon; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_flatter; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_flashcannon; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_flash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_flareblitz; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_flamethrower; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_flamewheel; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_flamecharge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_flameburst; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_flail; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_fissure; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_fishiousrend; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_firstimpression; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_firespin; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_firepunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_firepledge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_firelash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_firefang; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_fireblast; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_finalgambit; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_filletaway; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_fierywrath; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_fierydance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_fellstinger; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_feintattack; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_feint; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_featherdance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_falseswipe; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_falsesurrender; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_faketears; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_fakeout; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_fairywind; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_fairylock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_facade; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_extremespeed; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_extremeevoboost; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_extrasensory; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_explosion; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_expandingforce; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_eternabeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_esperwing; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_eruption; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_entrainment; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_energyball; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_endure; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_endeavor; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_encore; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_ember; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_embargo; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_electroweb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_electrodrift; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_electroball; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_electrify; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_electricterrain; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_eggbomb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_eeriespell; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_eerieimpulse; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_echoedvoice; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_earthquake; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_earthpower; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_dynamicpunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_dynamaxcannon; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_dualwingbeat; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_dualchop; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_drumbeating; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_drillrun; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_drillpeck; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_dreameater; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_drainpunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_drainingkiss; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_dragontail; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_dragonrush; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_dragonrage; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_dragonpulse; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_dragonhammer; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_dragonenergy; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_dragondarts; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_dragondance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_dragonclaw; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_dragonbreath; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_dragonascent; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_dracometeor; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_doubleteam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_doubleslap; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_doubleshock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_doublekick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_doubleironbash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_doublehit; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_doubleedge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_doomdesire; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_doodle; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_dizzypunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_dive; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_direclaw; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_discharge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_disarmingvoice; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_disable; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_dig; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_diamondstorm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_devastatingdrake; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_detect; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_destinybond; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_defog; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_defensecurl; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_defendorder; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_decorate; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_dazzlinggleam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_darkvoid; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_darkpulse; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_darkestlariat; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_cut; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_curse; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_crushgrip; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_crushclaw; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_crunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_crosspoison; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_crosschop; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_craftyshield; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_crabhammer; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_covet; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_courtchange; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_counter; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_cottonspore; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_cottonguard; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_cosmicpower; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_corrosivegas; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_corkscrewcrash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_coreenforcer; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_copycat; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_conversion2; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_conversion; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_continentalcrush; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_constrict; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_confusion; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_confuseray; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_confide; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_comeuppance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_cometpunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_combattorque; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_collisioncourse; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_coil; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_coaching; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_closecombat; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_clearsmog; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_clangoroussoulblaze; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_clangoroussoul; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_clangingscales; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_clamp; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_circlethrow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_chloroblast; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_chipaway; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_chillyreception; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_chillingwater; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_chatter; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_charm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_chargebeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_charge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_celebrate; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_ceaselessedge; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_catastropika; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_captivate; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_camouflage; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_calmmind; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_buzzybuzz; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_burnup; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_burningjealousy; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_bulletseed; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_bulletpunch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_bulldoze; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_bulkup; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_bugbuzz; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_bugbite; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_bubblebeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_bubble; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_brutalswing; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_brine; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_brickbreak; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_breakneckblitz; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_breakingswipe; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_bravebird; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_branchpoke; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_bouncybubble; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_bounce; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_boomburst; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_bonerush; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_bonemerang; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_boneclub; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_boltstrike; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_boltbeak; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_bodyslam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_bodypress; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_blueflare; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_bloomdoom; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_block; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_blizzard; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_bleakwindstorm; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_blazingtorque; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_blazekick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_blastburn; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_blackholeeclipse; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_bittermalice; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_bitterblade; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_bite; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_bind; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_bide; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_bestow; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_bellydrum; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_belch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_behemothblade; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_behemothbash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_beatup; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_beakblast; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_batonpass; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_barrier; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_barrage; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_barbbarrage; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_banefulbunker; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_baddybad; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_babydolleyes; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_axekick; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_avalanche; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_autotomize; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_auroraveil; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_aurorabeam; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_aurawheel; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_aurasphere; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_attract; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_attackorder; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_astralbarrage; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_astonish; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_assurance; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_assist; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_aromaticmist; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_aromatherapy; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_armthrust; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_armorcannon; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_aquatail; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_aquastep; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_aquaring; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_aquajet; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_aquacutter; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_appleacid; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_ancientpower; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_anchorshot; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_amnesia; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_allyswitch; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_alloutpummeling; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_airslash; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_aircutter; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_agility; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_afteryou; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_aeroblast; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_aerialace; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_acupressure; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_acrobatics; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_acidspray; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_aciddownpour; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_acidarmor; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_acid; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_accelerock; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_absorb; Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: simpletms:tr_10000000voltthunderbolt
Worker-Main-3Ex[2812월2024 12:44:25.660] [Worker-Main-3/ERROR] [net.minecraft.class_8490/]: Couldn't parse element minecraft:loot_table/rctmod:generic/unique/cobblebadges_6 - Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: cobblebadges:the_soul_badge
Worker-Main-3Ex[2812월2024 12:44:25.661] [Worker-Main-3/ERROR] [net.minecraft.class_8490/]: Couldn't parse element minecraft:loot_table/rctmod:generic/unique/cobblebadges_5 - Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: cobblebadges:the_marsh_badge
Worker-Main-3Ex[2812월2024 12:44:25.661] [Worker-Main-3/ERROR] [net.minecraft.class_8490/]: Couldn't parse element minecraft:loot_table/rctmod:generic/unique/cobblebadges_4 - Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: cobblebadges:the_rainbow_badge
Worker-Main-3Ex[2812월2024 12:44:25.661] [Worker-Main-3/ERROR] [net.minecraft.class_8490/]: Couldn't parse element minecraft:loot_table/rctmod:generic/unique/cobblebadges_3 - Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: cobblebadges:the_thunder_badge
Worker-Main-3Ex[2812월2024 12:44:25.661] [Worker-Main-3/ERROR] [net.minecraft.class_8490/]: Couldn't parse element minecraft:loot_table/rctmod:generic/unique/cobblebadges_8 - Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: cobblebadges:the_rising_badge
Worker-Main-3Ex[2812월2024 12:44:25.661] [Worker-Main-3/ERROR] [net.minecraft.class_8490/]: Couldn't parse element minecraft:loot_table/rctmod:generic/unique/cobblebadges_7 - Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: cobblebadges:the_volcano_badge
Worker-Main-3Ex[2812월2024 12:44:25.661] [Worker-Main-3/ERROR] [net.minecraft.class_8490/]: Couldn't parse element minecraft:loot_table/rctmod:generic/unique/cobblebadges_2 - Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: cobblebadges:the_cascade_badge
Worker-Main-3Ex[2812월2024 12:44:25.661] [Worker-Main-3/ERROR] [net.minecraft.class_8490/]: Couldn't parse element minecraft:loot_table/rctmod:generic/unique/cobblebadges_1 - Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: cobblebadges:the_boulder_badge
Worker-Main-3Ex[2812월2024 12:44:25.689] [Worker-Main-3/ERROR] [net.minecraft.class_8490/]: Couldn't parse element minecraft:loot_table/rctmod:generic/epic/diverse - Failed to get element minecraft:sweeping
Worker-Main-3Ex[2812월2024 12:44:25.703] [Worker-Main-3/ERROR] [net.minecraft.class_8490/]: Couldn't parse element minecraft:loot_table/rctmod:generic/unique/pkgbadges_3 - Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: pkgbadges:the_thunder_badge
Worker-Main-3Ex[2812월2024 12:44:25.703] [Worker-Main-3/ERROR] [net.minecraft.class_8490/]: Couldn't parse element minecraft:loot_table/rctmod:generic/unique/pkgbadges_2 - Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: pkgbadges:the_cascade_badge
Worker-Main-3Ex[2812월2024 12:44:25.703] [Worker-Main-3/ERROR] [net.minecraft.class_8490/]: Couldn't parse element minecraft:loot_table/rctmod:generic/unique/pkgbadges_1 - Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: pkgbadges:the_boulder_badge
Worker-Main-3Ex[2812월2024 12:44:25.703] [Worker-Main-3/ERROR] [net.minecraft.class_8490/]: Couldn't parse element minecraft:loot_table/rctmod:generic/unique/pkgbadges_7 - Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: pkgbadges:the_volcano_badge
Worker-Main-3Ex[2812월2024 12:44:25.703] [Worker-Main-3/ERROR] [net.minecraft.class_8490/]: Couldn't parse element minecraft:loot_table/rctmod:generic/unique/pkgbadges_6 - Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: pkgbadges:the_soul_badge
Worker-Main-3Ex[2812월2024 12:44:25.703] [Worker-Main-3/ERROR] [net.minecraft.class_8490/]: Couldn't parse element minecraft:loot_table/rctmod:generic/unique/pkgbadges_5 - Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: pkgbadges:the_marsh_badge
Worker-Main-3Ex[2812월2024 12:44:25.703] [Worker-Main-3/ERROR] [net.minecraft.class_8490/]: Couldn't parse element minecraft:loot_table/rctmod:generic/unique/pkgbadges_4 - Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: pkgbadges:the_rainbow_badge
Worker-Main-3Ex[2812월2024 12:44:25.705] [Worker-Main-3/ERROR] [net.minecraft.class_8490/]: Couldn't parse element minecraft:loot_table/rctmod:generic/unique/pkgbadges_8 - Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: pkgbadges:the_rising_badge
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/boss_giovanni}.pools[1].entries[1]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/gambler}.pools[0].entries[23]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/engineer}.pools[0].entries[73]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/burglar}.pools[0].entries[73]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_misty_019f}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[4]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_lt_surge_01a0}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[0]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_blaine_01a3}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[3]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/cue_ball}.pools[0].entries[8]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/juggler}.pools[0].entries[68]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:generic/epic}.pools[0].entries[8]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/swimmerm}.pools[0].entries[53]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/champion}.pools[1].entries[3]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/team_rocket_grunt}.pools[0].entries[63]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/beauty}.pools[0].entries[28]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/bird_keeper}.pools[0].entries[53]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_lt_surge_01a0}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[1]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/rocker}.pools[0].entries[53]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_misty_019f}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[3]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/hiker}.pools[0].entries[53]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/elite_four}.pools[1].entries[1]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_brock_019e}.pools[1].entries[0]: Unknown loot table called rctmod:generic/unique/cobblebadges_1
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/boss_giovanni}.pools[1].entries[2]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_brock_019e}.pools[2].entries[0]: Unknown loot table called rctmod:generic/unique/pkgbadges_1
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/aroma_lady}.pools[0].entries[48]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/boss}.pools[0].entries[53]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/swimmerf}.pools[0].entries[73]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_blaine_01a3}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[2]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/youngster}.pools[0].entries[58]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/champion}.pools[1].entries[2]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/biker}.pools[0].entries[58]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/cool_couple}.pools[0].entries[73]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/picnicker}.pools[0].entries[58]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/lady}.pools[0].entries[73]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_koga_01a2}.pools[2].entries[0]: Unknown loot table called rctmod:generic/unique/pkgbadges_6
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/rocket_admin}.pools[1].entries[0]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_lt_surge_01a0}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[2]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/cue_ball}.pools[0].entries[18]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/twins}.pools[0].entries[63]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/elite_four}.pools[1].entries[2]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_koga_01a2}.pools[1].entries[0]: Unknown loot table called rctmod:generic/unique/cobblebadges_6
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/sailor}.pools[0].entries[68]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/engineer}.pools[0].entries[63]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/ace_trainer}.pools[1].entries[1]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/gambler}.pools[0].entries[13]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/gatekeeper}.pools[0].entries[18]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/twins}.pools[0].entries[73]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/burglar}.pools[0].entries[63]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/gambler}.pools[0].entries[8]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/rocker}.pools[0].entries[63]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/boss}.pools[0].entries[68]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/team_rocket_admin}.pools[1].entries[0]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/juggler}.pools[0].entries[58]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/swimmerm}.pools[0].entries[63]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/biker}.pools[0].entries[68]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/beauty}.pools[0].entries[38]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_clair_004a}.pools[1].entries[0]: Unknown loot table called rctmod:generic/unique/cobblebadges_8
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/bird_keeper}.pools[0].entries[63]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_lt_surge_01a0}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[3]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/team_rocket_grunt}.pools[0].entries[73]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_misty_019f}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[1]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_sabrina_01a4}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[4]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_clair_004a}.pools[2].entries[0]: Unknown loot table called rctmod:generic/unique/pkgbadges_8
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/hiker}.pools[0].entries[63]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/crush_girl}.pools[0].entries[53]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/ace_trainer}.pools[1].entries[2]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/boss_giovanni}.pools[1].entries[0]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/ace_trainer}.pools[1].entries[0]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/gentleman}.pools[0].entries[18]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/aroma_lady}.pools[0].entries[38]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_erika_01a1}.pools[1].entries[0]: Unknown loot table called rctmod:generic/unique/cobblebadges_4
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/champion}.pools[1].entries[4]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/swimmerf}.pools[0].entries[63]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_blaine_01a3}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[4]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/team_rocket_admin}.pools[1].entries[1]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/youngster}.pools[0].entries[68]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_erika_01a1}.pools[2].entries[0]: Unknown loot table called rctmod:generic/unique/pkgbadges_4
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/picnicker}.pools[0].entries[68]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/lady}.pools[0].entries[63]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/cool_couple}.pools[0].entries[63]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_lt_surge_01a0}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[4]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/psychic}.pools[0].entries[73]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/painter}.pools[0].entries[8]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/expert}.pools[1].entries[0]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_sabrina_01a4}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[3]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_misty_019f}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[2]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/sailor}.pools[0].entries[58]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/gatekeeper}.pools[1].entries[0]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/elite_four}.pools[1].entries[0]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/friendly_maniac}.pools[1].entries[4]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/leader}.pools[1].entries[3]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/boss}.pools[0].entries[58]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/gentleman}.pools[0].entries[13]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_erika_01a1}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[3]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/team_rocket_admin}.pools[1].entries[2]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/swimmerm}.pools[0].entries[73]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/sis_and_bro}.pools[0].entries[73]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/beauty}.pools[0].entries[48]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/bird_keeper}.pools[0].entries[73]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/expert}.pools[1].entries[1]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/juggler}.pools[0].entries[63]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/rocket_admin}.pools[1].entries[3]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/aroma_lady}.pools[0].entries[43]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_sabrina_01a4}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[2]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/psychic}.pools[0].entries[58]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_brock_019e}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[3]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/gatekeeper}.pools[1].entries[1]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/cue_ball}.pools[0].entries[13]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/leader}.pools[1].entries[4]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/gatekeeper}.pools[0].entries[23]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/friendly_maniac}.pools[1].entries[3]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_erika_01a1}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[4]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/team_rocket_admin}.pools[1].entries[3]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/lass}.pools[0].entries[73]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/cool_couple}.pools[0].entries[53]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/hiker}.pools[0].entries[58]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/rocker}.pools[0].entries[68]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/expert}.pools[1].entries[2]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.803] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/rocket_admin}.pools[1].entries[4]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_sabrina_01a4}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[1]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_misty_019f}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[0]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_blaine_01a3}.pools[1].entries[0]: Unknown loot table called rctmod:generic/unique/cobblebadges_7
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/crush_girl}.pools[0].entries[58]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/school_kid}.pools[0].entries[68]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_brock_019e}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[2]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/default}.pools[0].entries[3]->{rctmod:generic/epic}.pools[0].entries[8]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/gatekeeper}.pools[1].entries[2]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/tuber}.pools[0].entries[68]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/lady}.pools[0].entries[53]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/young_couple}.pools[0].entries[68]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/friendly_maniac}.pools[1].entries[2]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/leader}.pools[1].entries[1]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/gentleman}.pools[1].entries[1]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/boss}.pools[0].entries[48]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_erika_01a1}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[1]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/team_rocket_admin}.pools[1].entries[4]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/team_rocket_grunt}.pools[0].entries[53]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/sis_and_bro}.pools[0].entries[63]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/expert}.pools[1].entries[3]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/picnicker}.pools[0].entries[53]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/rocket_admin}.pools[1].entries[1]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/juggler}.pools[0].entries[53]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_sabrina_01a4}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[0]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/aroma_lady}.pools[0].entries[33]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/gatekeeper}.pools[1].entries[3]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/cool_couple}.pools[0].entries[68]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_brock_019e}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[1]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/friendly_maniac}.pools[1].entries[1]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/gatekeeper}.pools[1].entries[4]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/gatekeeper}.pools[0].entries[13]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/leader}.pools[1].entries[2]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/gentleman}.pools[0].entries[8]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/gentleman}.pools[1].entries[0]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_erika_01a1}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[2]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/gambler}.pools[0].entries[18]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/hiker}.pools[0].entries[68]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/expert}.pools[1].entries[4]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/lass}.pools[0].entries[63]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/rocket_admin}.pools[1].entries[2]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/beauty}.pools[0].entries[33]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/crush_girl}.pools[0].entries[68]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/school_kid}.pools[0].entries[58]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/tuber}.pools[0].entries[58]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_brock_019e}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[0]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/young_couple}.pools[0].entries[58]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/friendly_maniac}.pools[1].entries[0]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/sailor}.pools[0].entries[73]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/youngster}.pools[0].entries[63]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/painter}.pools[0].entries[13]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/gentleman}.pools[0].entries[3]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/boss_giovanni_0045}.pools[0].entries[0]->{rctmod:trainers/groups/boss_giovanni}.pools[1].entries[3]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_sabrina_01a4}.pools[2].entries[0]: Unknown loot table called rctmod:generic/unique/pkgbadges_5
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/gentleman}.pools[1].entries[3]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/sis_and_bro}.pools[0].entries[53]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/boss_giovanni_0045}.pools[0].entries[0]->{rctmod:trainers/groups/boss_giovanni}.pools[1].entries[4]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_sabrina_01a4}.pools[1].entries[0]: Unknown loot table called rctmod:generic/unique/cobblebadges_5
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/swimmerf}.pools[0].entries[68]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/school_kid}.pools[0].entries[63]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/picnicker}.pools[0].entries[63]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/lady}.pools[0].entries[68]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/cool_couple}.pools[0].entries[58]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/tuber}.pools[0].entries[63]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/gambler}.pools[0].entries[3]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/young_couple}.pools[0].entries[63]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/leader}.pools[1].entries[0]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/burglar}.pools[0].entries[68]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/engineer}.pools[0].entries[58]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/gentleman}.pools[1].entries[2]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_clair_004a}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[0]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/lass}.pools[0].entries[53]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/biker}.pools[0].entries[73]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_erika_01a1}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[0]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/beauty}.pools[0].entries[43]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/team_rocket_grunt}.pools[0].entries[58]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/sailor}.pools[0].entries[63]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/youngster}.pools[0].entries[73]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/painter}.pools[0].entries[23]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/boss_giovanni_0045}.pools[0].entries[0]->{rctmod:trainers/groups/boss_giovanni}.pools[1].entries[1]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/gentleman}.pools[0].entries[23]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_koga_01a2}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[4]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/juggler}.pools[0].entries[73]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/picnicker}.pools[0].entries[73]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/swimmerf}.pools[0].entries[58]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/school_kid}.pools[0].entries[53]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/lady}.pools[0].entries[58]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/psychic}.pools[0].entries[68]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/twins}.pools[0].entries[58]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/tuber}.pools[0].entries[53]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/cue_ball}.pools[0].entries[23]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/gatekeeper}.pools[0].entries[8]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/young_couple}.pools[0].entries[53]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/swimmerm}.pools[0].entries[58]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_lt_surge_01a0}.pools[2].entries[0]: Unknown loot table called rctmod:generic/unique/pkgbadges_3
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/boss_giovanni_0045}.pools[0].entries[0]->{rctmod:trainers/groups/boss_giovanni}.pools[1].entries[2]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_lt_surge_01a0}.pools[1].entries[0]: Unknown loot table called rctmod:generic/unique/cobblebadges_3
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/gentleman}.pools[1].entries[4]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/burglar}.pools[0].entries[58]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/rocker}.pools[0].entries[58]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_misty_019f}.pools[2].entries[0]: Unknown loot table called rctmod:generic/unique/pkgbadges_2
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_brock_019e}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[4]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/team_rocket_grunt}.pools[0].entries[68]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/engineer}.pools[0].entries[53]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/default}.pools[0].entries[0]->{rctmod:generic/common}.pools[0].entries[6]: Unknown loot table called rctmod:generic/common/evolution
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_koga_01a2}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[2]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/sailor}.pools[0].entries[53]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/burglar}.pools[0].entries[53]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/lass}.pools[0].entries[68]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_clair_004a}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[3]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/rocker}.pools[0].entries[73]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_misty_019f}.pools[1].entries[0]: Unknown loot table called rctmod:generic/unique/cobblebadges_2
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/cue_ball}.pools[0].entries[3]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/hiker}.pools[0].entries[73]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/ace_trainer}.pools[1].entries[4]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/crush_girl}.pools[0].entries[63]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/twins}.pools[0].entries[68]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/default}.pools[0].entries[0]->{rctmod:generic/common}.pools[0].entries[5]: Unknown loot table called rctmod:generic/common/training
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_koga_01a2}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[3]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/swimmerm}.pools[0].entries[68]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/aroma_lady}.pools[0].entries[28]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/boss_giovanni_0045}.pools[0].entries[0]->{rctmod:trainers/groups/boss_giovanni}.pools[1].entries[0]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/swimmerf}.pools[0].entries[53]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_clair_004a}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[4]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/painter}.pools[0].entries[18]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/biker}.pools[0].entries[53]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/psychic}.pools[0].entries[63]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_blaine_01a3}.pools[2].entries[0]: Unknown loot table called rctmod:generic/unique/pkgbadges_7
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/ace_trainer}.pools[1].entries[3]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/bird_keeper}.pools[0].entries[58]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/sis_and_bro}.pools[0].entries[68]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_koga_01a2}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[0]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/youngster}.pools[0].entries[53]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/boss_giovanni}.pools[1].entries[3]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/gatekeeper}.pools[0].entries[3]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/lass}.pools[0].entries[58]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/champion}.pools[1].entries[1]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_clair_004a}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[1]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:generic/common}.pools[0].entries[5]: Unknown loot table called rctmod:generic/common/training
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/school_kid}.pools[0].entries[73]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_blaine_01a3}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[1]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/painter}.pools[0].entries[3]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/elite_four}.pools[1].entries[3]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.804] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/crush_girl}.pools[0].entries[73]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.805] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_koga_01a2}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[1]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.805] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/tuber}.pools[0].entries[73]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.805] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/boss_giovanni}.pools[1].entries[4]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.805] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/engineer}.pools[0].entries[68]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.805] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/young_couple}.pools[0].entries[73]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.805] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/boss}.pools[0].entries[63]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.805] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_clair_004a}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[2]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.805] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/champion}.pools[1].entries[0]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.805] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:generic/common}.pools[0].entries[6]: Unknown loot table called rctmod:generic/common/evolution
Worker-Main-3Ex[2812월2024 12:44:25.805] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/biker}.pools[0].entries[63]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.805] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/single/leader_blaine_01a3}.pools[0].entries[0]->{rctmod:trainers/groups/leader}.pools[1].entries[0]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.805] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/psychic}.pools[0].entries[53]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.805] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/sis_and_bro}.pools[0].entries[58]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.805] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/twins}.pools[0].entries[53]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:25.805] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/elite_four}.pools[1].entries[4]: Unknown loot table called rctmod:generic/rare/trs
Worker-Main-3Ex[2812월2024 12:44:25.805] [Worker-Main-3/WARN] [net.minecraft.class_9383/]: Found loot table element validation problem in {minecraft:loot_table/rctmod:trainers/groups/bird_keeper}.pools[0].entries[68]: Unknown loot table called rctmod:generic/epic/diverse
Worker-Main-3Ex[2812월2024 12:44:26.415] [main/INFO] [net.minecraft.class_1863/]: Loaded 1788 recipes
mainEx[2812월2024 12:44:26.604] [main/INFO] [net.minecraft.class_163/]: Loaded 1962 advancements
mainEx[2812월2024 12:44:26.615] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Loaded 5 server scripts and 1 client scripts
mainEx[2812월2024 12:44:28.820] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Loaded 936 moves
mainEx[2812월2024 12:44:28.871] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Loaded 314 abilities
mainEx[2812월2024 12:44:29.163] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Finished additions
mainEx[2812월2024 12:44:29.402] [cobblemon Datafixer Bootstrap/INFO] [com.mojang.datafixers.DataFixerBuilder/]: 2 Datafixer optimizations took 7 milliseconds
cobblemon Datafixer BootstrapEx[2812월2024 12:44:30.085] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Imported 259 held item IDs from showdown
mainEx[2812월2024 12:44:30.085] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Loaded 1025 Pokémon species
mainEx[2812월2024 12:44:30.101] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Loaded 44 spawn detail presets.
mainEx[2812월2024 12:44:30.122] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Starting dummy Showdown battle to force it to pre-load data.
mainEx[2812월2024 12:44:30.525] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Loaded 15 fossils
mainEx[2812월2024 12:44:30.567] [main/ERROR] [net.fabricmc.fabric.impl.resource.loader.ModNioResourcePack/]: Invalid path in mod resource-pack cobblemon: cobblemon:dex_entry_additions/README.md, ignoring
mainEx[2812월2024 12:44:30.575] [main/ERROR] [net.fabricmc.fabric.impl.resource.loader.ModNioResourcePack/]: Invalid path in mod resource-pack cobblemon: cobblemon:dex_additions/README.md, ignoring
mainEx[2812월2024 12:44:30.577] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Loaded 1 flows and 0 client flows
mainEx[2812월2024 12:44:30.980] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:30.981] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:30.982] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:30.984] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: water_surface.
mainEx[2812월2024 12:44:30.984] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:30.986] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:30.987] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:30.988] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:30.989] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:30.989] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:30.991] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:30.992] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:30.992] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:30.993] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:30.993] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:30.993] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:30.994] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:30.994] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:30.994] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:30.995] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.000] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.003] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.003] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.007] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.009] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.009] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.009] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.017] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.018] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.018] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.020] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.021] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.021] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.022] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.023] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.023] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.025] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.025] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.029] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.029] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.029] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.029] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.034] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.034] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.034] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.035] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.036] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.037] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.044] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.045] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.046] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.046] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.046] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.047] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.048] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.048] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.049] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.049] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.049] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.050] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.050] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.051] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.051] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.051] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.052] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.052] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.054] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.056] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.057] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.063] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.064] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.065] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.066] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.066] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.067] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.067] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.067] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.072] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.073] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.073] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.076] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.077] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.084] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.085] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.090] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.091] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.091] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.091] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.094] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.095] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.095] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.097] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.098] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.098] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.099] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.099] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.102] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.103] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.106] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.106] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.108] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.108] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.108] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.111] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.111] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.113] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.113] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.114] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.114] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.116] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.116] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.117] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.117] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.118] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.120] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.120] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.122] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.128] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.129] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.129] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.129] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: water_surface.
mainEx[2812월2024 12:44:31.129] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.134] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.135] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.136] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.139] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.140] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.140] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.140] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.143] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: water_surface.
mainEx[2812월2024 12:44:31.143] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: water_surface.
mainEx[2812월2024 12:44:31.144] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: water_surface.
mainEx[2812월2024 12:44:31.144] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: water_surface.
mainEx[2812월2024 12:44:31.145] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.147] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.152] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.155] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.155] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.156] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.158] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.158] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.161] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.163] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.163] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.164] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.164] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.164] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.164] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.165] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.172] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.172] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.173] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.176] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.177] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.177] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.178] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.178] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.179] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.179] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.181] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.181] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.182] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.184] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.184] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.184] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.187] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.189] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.190] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.191] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.196] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.197] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.198] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.199] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.199] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.199] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.202] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.206] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.207] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.207] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.207] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.208] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.209] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.209] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.211] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.214] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.214] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.215] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.217] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.219] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.219] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.220] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.223] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.223] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.223] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.225] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.225] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.227] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.228] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.228] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.231] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.232] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.233] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.234] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.241] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.241] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.246] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.247] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.247] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.248] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.251] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.252] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.252] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.252] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.253] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.255] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.256] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.256] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.257] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.258] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underwater.
mainEx[2812월2024 12:44:31.262] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.262] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.263] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.263] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Unknown preset name: underground.
mainEx[2812월2024 12:44:31.269] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Invalid species for spawn detail: froakie_museum
mainEx[2812월2024 12:44:31.269] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Invalid species for spawn detail: sobble_museum
mainEx[2812월2024 12:44:31.271] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Invalid species for spawn detail: flaafy_fish
mainEx[2812월2024 12:44:31.271] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Invalid species for spawn detail: sneaseler_museum
mainEx[2812월2024 12:44:31.272] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Invalid species for spawn detail: yamask_museum
mainEx[2812월2024 12:44:31.274] [main/ERROR] [com.cobblemon.mod.common.Cobblemon/]: Invalid species for spawn detail: cofagrigus_museum
mainEx[2812월2024 12:44:31.294] [main/INFO] [com.cobblemon.mod.common.Cobblemon/]: Loaded 69 berries
mainEx[2812월2024 12:44:31.866] [main/INFO] [net.fabricmc.fabric.impl.biome.modification.BiomeModificationImpl/]: Applied 1646 biome modifications to 159 of 159 new biomes in 29.11 ms
mainEx[2812월2024 12:44:31.892] [Server thread/INFO] [Radical Cobblemon Trainers/]: Data pack initialized: rctmod
Server threadEx[2812월2024 12:44:32.212] [Server thread/INFO] [net.minecraft.class_3176/]: Starting minecraft server version 1.21.1
Server threadEx[2812월2024 12:44:32.212] [Server thread/INFO] [net.minecraft.class_3176/]: Loading properties
Server threadEx[2812월2024 12:44:32.212] [Server thread/INFO] [net.minecraft.class_3176/]: Default game type: SURVIVAL
Server threadEx[2812월2024 12:44:32.212] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Generating keypair
Server threadEx[2812월2024 12:44:32.234] [Server thread/INFO] [net.minecraft.class_3176/]: Starting Minecraft server on *:25565
Server threadEx[2812월2024 12:44:32.342] [Server thread/INFO] [net.minecraft.class_3242/]: Using default channel type
Server threadEx[2812월2024 12:44:32.587] [Server thread/INFO] [Minecraft/]: This server is running Arclight version arclight-1.21.1-1.0.0-SNAPSHOT-6aa268a (MC: 1.21.1) (Implementing API version 1.21.1-R0.1-SNAPSHOT)
Server threadEx[2812월2024 12:44:33.274] [Server thread/INFO] [Minecraft/]: *** This version of Spigot contains changes to some enums. If you notice that plugins no longer work after updating, please report this to the developers of those plugins first. ***
Server threadEx[2812월2024 12:44:33.274] [Server thread/INFO] [Minecraft/]: *** If you cannot update those plugins, you can try setting `settings.compatibility.enum-compatibility-mode` to `true` in `bukkit.yml`. ***
Server threadEx[2812월2024 12:44:33.333] [Server thread/INFO] [Arclight/]: 버킷에 적용 중...
Server threadEx[2812월2024 12:44:33.400] [Server thread/INFO] [Arclight/]: 신규 자원(총 621종: 블록 220종, 아이템 401종) 적용 완료
Server threadEx[2812월2024 12:44:33.530] [Server thread/INFO] [Arclight/]: 신규 엔티티(8종) 적용 완료
Server threadEx[2812월2024 12:44:33.533] [Server thread/INFO] [Arclight/]: 신규 바이옴(95종) 적용 완료
Server threadEx[2812월2024 12:44:33.551] [Server thread/INFO] [Minecraft/]: Debug logging is enabled
Server threadEx[2812월2024 12:44:33.555] [Server thread/INFO] [Minecraft/]: Using 4 threads for Netty based IO
Server threadEx[2812월2024 12:44:33.556] [Server thread/INFO] [net.minecraft.class_2983/]: [STDOUT]: Server Ping Player Sample Count: 12
Server threadEx[2812월2024 12:44:33.803] [Server thread/INFO] [Arclight/]: 맵핑 로드 중...
Server threadEx[2812월2024 12:44:34.103] [Server thread/INFO] [Arclight/]: 플러그인 패치기 로드 중...
Server threadEx[2812월2024 12:44:34.341] [Server thread/INFO] [Minecraft/]: [LoneLibs] Loading 1 libraries... please wait
Server threadEx[2812월2024 12:44:34.443] [Server thread/INFO] [Minecraft/]: [LoneLibs] Loaded library C:\Users\user\Desktop\포켓몬 패브릭1.21.1\libraries\org\fusesource\jansi\jansi\2.4.1\jansi-2.4.1.jar
Server threadEx[2812월2024 12:44:34.732] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]: Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
Server threadEx[2812월2024 12:44:42.049] [Server thread/WARN] [Minecraft/]: Legacy plugin SkEtcR v4.0 does not specify an api-version.
Server threadEx[2812월2024 12:44:42.062] [Server thread/WARN] [Minecraft/]: Legacy plugin VTV1 v1.4.1 does not specify an api-version.
Server threadEx[2812월2024 12:44:42.102] [Server thread/WARN] [Minecraft/]: Legacy plugin skUtilities v0.9.2 does not specify an api-version.
Server threadEx[2812월2024 12:44:42.258] [Server thread/INFO] [Minecraft/]: [ItemsAdder] Loading 4 libraries... please wait
Server threadEx[2812월2024 12:44:42.338] [Server thread/INFO] [Minecraft/]: [ItemsAdder] Loaded library C:\Users\user\Desktop\포켓몬 패브릭1.21.1\libraries\org\apache\httpcomponents\httpmime\4.5.14\httpmime-4.5.14.jar
Server threadEx[2812월2024 12:44:42.338] [Server thread/INFO] [Minecraft/]: [ItemsAdder] Loaded library C:\Users\user\Desktop\포켓몬 패브릭1.21.1\libraries\org\apache\httpcomponents\httpclient\4.5.14\httpclient-4.5.14.jar
Server threadEx[2812월2024 12:44:42.338] [Server thread/INFO] [Minecraft/]: [ItemsAdder] Loaded library C:\Users\user\Desktop\포켓몬 패브릭1.21.1\libraries\org\apache\httpcomponents\httpcore\4.4.16\httpcore-4.4.16.jar
Server threadEx[2812월2024 12:44:42.338] [Server thread/INFO] [Minecraft/]: [ItemsAdder] Loaded library C:\Users\user\Desktop\포켓몬 패브릭1.21.1\libraries\commons-logging\commons-logging\1.2\commons-logging-1.2.jar
Server threadEx[2812월2024 12:44:42.338] [Server thread/INFO] [Minecraft/]: [ItemsAdder] Loaded library C:\Users\user\Desktop\포켓몬 패브릭1.21.1\libraries\commons-codec\commons-codec\1.11\commons-codec-1.11.jar
Server threadEx[2812월2024 12:44:42.338] [Server thread/INFO] [Minecraft/]: [ItemsAdder] Loaded library C:\Users\user\Desktop\포켓몬 패브릭1.21.1\libraries\org\apache\commons\commons-math3\3.6.1\commons-math3-3.6.1.jar
Server threadEx[2812월2024 12:44:42.338] [Server thread/INFO] [Minecraft/]: [ItemsAdder] Loaded library C:\Users\user\Desktop\포켓몬 패브릭1.21.1\libraries\net\sourceforge\streamsupport\speedy-math\1.0.0\speedy-math-1.0.0.jar
Server threadEx[2812월2024 12:44:42.338] [Server thread/INFO] [Minecraft/]: [ItemsAdder] Loaded library C:\Users\user\Desktop\포켓몬 패브릭1.21.1\libraries\org\fusesource\jansi\jansi\2.4.1\jansi-2.4.1.jar
Server threadEx[2812월2024 12:44:42.445] [Server thread/INFO] [LuckPerms/]: Loading LuckPerms v5.4.131
Server threadEx[2812월2024 12:44:42.693] [Server thread/INFO] [PlaceholderAPI/]: Loading PlaceholderAPI v2.11.6
Server threadEx[2812월2024 12:44:42.694] [Server thread/INFO] [Vault/]: Loading Vault v1.7.3-b131
Server threadEx[2812월2024 12:44:42.694] [Server thread/INFO] [LoneLibs/]: Loading LoneLibs v1.0.63
Server threadEx[2812월2024 12:44:42.694] [Server thread/INFO] [ProtocolLib/]: Loading ProtocolLib v5.3.0
Server threadEx[2812월2024 12:44:43.211] [Server thread/INFO] [Citizens/]: Loading Citizens v2.0.35-SNAPSHOT (build 3583)
Server threadEx[2812월2024 12:44:43.211] [Server thread/INFO] [Skript/]: Loading Skript v2.9.5
Server threadEx[2812월2024 12:44:43.211] [Server thread/INFO] [SkBee/]: Loading SkBee v3.6.6
Server threadEx[2812월2024 12:44:43.211] [Server thread/INFO] [Essentials/]: Loading Essentials v2.21.0-dev+151-f2af952
Server threadEx[2812월2024 12:44:43.217] [Server thread/INFO] [SkEtcR/]: Loading SkEtcR v4.0
Server threadEx[2812월2024 12:44:43.217] [Server thread/INFO] [VTV1/]: Loading VTV1 v1.4.1
Server threadEx[2812월2024 12:44:43.217] [Server thread/INFO] [skript-reflect/]: Loading skript-reflect v2.5.1
Server threadEx[2812월2024 12:44:43.217] [Server thread/INFO] [skUtilities/]: Loading skUtilities v0.9.2
Server threadEx[2812월2024 12:44:43.217] [Server thread/INFO] [BetterEconomy/]: Loading BetterEconomy v3.1
Server threadEx[2812월2024 12:44:43.225] [Server thread/INFO] [SkQuery/]: Loading SkQuery v4.1.10
Server threadEx[2812월2024 12:44:43.225] [Server thread/INFO] [SkJade/]: Loading SkJade v1.4.3
Server threadEx[2812월2024 12:44:43.226] [Server thread/INFO] [ItemsAdder/]: Loading ItemsAdder v4.0.6
Server threadEx[2812월2024 12:44:43.335] [Server thread/WARN] [Minecraft/]: [ItemsAdder] 'allow_other_plugins_resourcepacks' enabled. Do not report resourcepack loading issues.
Server threadEx[2812월2024 12:44:43.348] [Server thread/INFO] [PermSk/]: Loading PermSk v1.1.1-LEGACY-1.16
Server threadEx[2812월2024 12:44:43.348] [Server thread/INFO] [Skellett/]: Loading Skellett v2.0.10
Server threadEx[2812월2024 12:44:43.348] [Server thread/INFO] [skRayFall/]: Loading skRayFall v1.9.28
Server threadEx[2812월2024 12:44:43.351] [Server thread/INFO] [LuckPerms/]: Enabling LuckPerms v5.4.131
Server threadEx[2812월2024 12:44:44.231] [Server thread/INFO] [Console/]:         __    
Server threadEx[2812월2024 12:44:44.231] [Server thread/INFO] [Console/]:   |    |__)   LuckPerms v5.4.131
Server threadEx[2812월2024 12:44:44.231] [Server thread/INFO] [Console/]:   |___ |      Running on Bukkit - Arclight
Server threadEx[2812월2024 12:44:44.231] [Server thread/INFO] [Console/]: 
Server threadEx[2812월2024 12:44:44.235] [Server thread/INFO] [LuckPerms/]: Loading configuration...
Server threadEx[2812월2024 12:44:44.498] [Server thread/INFO] [LuckPerms/]: Loading storage provider... [H2]
Server threadEx[2812월2024 12:44:45.311] [Server thread/INFO] [LuckPerms/]: Loading internal permission managers...
Server threadEx[2812월2024 12:44:45.462] [Server thread/INFO] [LuckPerms/]: Performing initial data load...
Server threadEx[2812월2024 12:44:45.551] [Server thread/INFO] [LuckPerms/]: Successfully enabled. (took 2200ms)
Server threadEx[2812월2024 12:44:45.554] [Server thread/INFO] [Vault/]: Enabling Vault v1.7.3-b131
Server threadEx[2812월2024 12:44:45.593] [Server thread/WARN] [Vault/]: Loaded class com.earth2me.essentials.api.Economy from Essentials v2.21.0-dev+151-f2af952 which is not a depend or softdepend of this plugin.
Server threadEx[2812월2024 12:44:45.595] [Server thread/INFO] [Vault/]: [Economy] Essentials Economy found: Waiting
Server threadEx[2812월2024 12:44:45.661] [Server thread/INFO] [Vault/]: [Permission] SuperPermissions loaded as backup permission system.
Server threadEx[2812월2024 12:44:45.703] [Server thread/INFO] [Vault/]: Enabled Version 1.7.3-b131
Server threadEx[2812월2024 12:44:45.715] [Server thread/INFO] [LuckPerms/]: Registered Vault permission & chat hook.
Server threadEx[2812월2024 12:44:45.715] [Server thread/INFO] [LoneLibs/]: Enabling LoneLibs v1.0.63
Server threadEx[2812월2024 12:44:45.721] [Server thread/INFO] [ProtocolLib/]: Enabling ProtocolLib v5.3.0
Server threadEx[2812월2024 12:44:45.743] [Server thread/INFO] [net.minecraft.class_3176/]: Preparing level "world"
Server threadEx[2812월2024 12:44:45.764] [Server thread/INFO] [Arclight/]: 신규 차원(0종) 적용 완료
Server threadEx[2812월2024 12:44:46.203] [Server thread/INFO] [Minecraft/]: -------- World Settings For [Cobbled Farms] --------
Server threadEx[2812월2024 12:44:46.203] [Server thread/INFO] [Minecraft/]: Item Merge Radius: 2.5
Server threadEx[2812월2024 12:44:46.206] [Server thread/INFO] [Minecraft/]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
Server threadEx[2812월2024 12:44:46.207] [Server thread/INFO] [Minecraft/]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
Server threadEx[2812월2024 12:44:46.207] [Server thread/INFO] [Minecraft/]: Mob Spawn Range: 6
Server threadEx[2812월2024 12:44:46.207] [Server thread/INFO] [Minecraft/]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
Server threadEx[2812월2024 12:44:46.207] [Server thread/INFO] [Minecraft/]: Cactus Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.207] [Server thread/INFO] [Minecraft/]: Cane Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.207] [Server thread/INFO] [Minecraft/]: Melon Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.207] [Server thread/INFO] [Minecraft/]: Mushroom Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.207] [Server thread/INFO] [Minecraft/]: Pumpkin Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.207] [Server thread/INFO] [Minecraft/]: Sapling Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.207] [Server thread/INFO] [Minecraft/]: Beetroot Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.207] [Server thread/INFO] [Minecraft/]: Carrot Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.207] [Server thread/INFO] [Minecraft/]: Potato Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.207] [Server thread/INFO] [Minecraft/]: Wheat Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.207] [Server thread/INFO] [Minecraft/]: NetherWart Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.207] [Server thread/INFO] [Minecraft/]: Vine Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.207] [Server thread/INFO] [Minecraft/]: Cocoa Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.207] [Server thread/INFO] [Minecraft/]: Bamboo Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.207] [Server thread/INFO] [Minecraft/]: SweetBerry Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.207] [Server thread/INFO] [Minecraft/]: Kelp Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.207] [Server thread/INFO] [Minecraft/]: TwistingVines Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.207] [Server thread/INFO] [Minecraft/]: WeepingVines Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.207] [Server thread/INFO] [Minecraft/]: CaveVines Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.207] [Server thread/INFO] [Minecraft/]: Nerfing mobs spawned from spawners: false
Server threadEx[2812월2024 12:44:46.208] [Server thread/INFO] [Minecraft/]: Item Despawn Rate: 6000
Server threadEx[2812월2024 12:44:46.208] [Server thread/INFO] [Minecraft/]: View Distance: 10
Server threadEx[2812월2024 12:44:46.213] [Server thread/INFO] [Minecraft/]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
Server threadEx[2812월2024 12:44:46.213] [Server thread/INFO] [Minecraft/]: Max TNT Explosions: 100
Server threadEx[2812월2024 12:44:46.213] [Server thread/INFO] [Minecraft/]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
Server threadEx[2812월2024 12:44:46.213] [Server thread/INFO] [Minecraft/]: Zombie Aggressive Towards Villager: true
Server threadEx[2812월2024 12:44:46.213] [Server thread/INFO] [Minecraft/]: Allow Zombie Pigmen to spawn from portal blocks: true
Server threadEx[2812월2024 12:44:46.213] [Server thread/INFO] [Minecraft/]: Simulation Distance: 10
Server threadEx[2812월2024 12:44:46.213] [Server thread/INFO] [Minecraft/]: Experience Merge Radius: 3.0
Server threadEx[2812월2024 12:44:46.215] [Server thread/INFO] [Minecraft/]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: -------- World Settings For [Cobbled Farms/DIM-1] --------
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: Item Merge Radius: 2.5
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: Mob Spawn Range: 6
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: Cactus Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: Cane Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: Melon Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: Mushroom Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: Pumpkin Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: Sapling Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: Beetroot Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: Carrot Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: Potato Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: Wheat Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: NetherWart Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: Vine Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: Cocoa Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: Bamboo Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: SweetBerry Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: Kelp Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: TwistingVines Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: WeepingVines Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: CaveVines Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: Nerfing mobs spawned from spawners: false
Server threadEx[2812월2024 12:44:46.658] [Server thread/INFO] [Minecraft/]: Item Despawn Rate: 6000
Server threadEx[2812월2024 12:44:46.659] [Server thread/INFO] [Minecraft/]: View Distance: 10
Server threadEx[2812월2024 12:44:46.659] [Server thread/INFO] [Minecraft/]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
Server threadEx[2812월2024 12:44:46.659] [Server thread/INFO] [Minecraft/]: Max TNT Explosions: 100
Server threadEx[2812월2024 12:44:46.659] [Server thread/INFO] [Minecraft/]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
Server threadEx[2812월2024 12:44:46.659] [Server thread/INFO] [Minecraft/]: Zombie Aggressive Towards Villager: true
Server threadEx[2812월2024 12:44:46.659] [Server thread/INFO] [Minecraft/]: Allow Zombie Pigmen to spawn from portal blocks: true
Server threadEx[2812월2024 12:44:46.659] [Server thread/INFO] [Minecraft/]: Simulation Distance: 10
Server threadEx[2812월2024 12:44:46.659] [Server thread/INFO] [Minecraft/]: Experience Merge Radius: 3.0
Server threadEx[2812월2024 12:44:46.659] [Server thread/INFO] [Minecraft/]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: -------- World Settings For [Cobbled Farms/DIM1] --------
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: Item Merge Radius: 2.5
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true / Isa false
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Di 128 / Other 64
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: Mob Spawn Range: 6
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: Cactus Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: Cane Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: Melon Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: Mushroom Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: Pumpkin Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: Sapling Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: Beetroot Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: Carrot Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: Potato Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: Wheat Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: NetherWart Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: Vine Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: Cocoa Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: Bamboo Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: SweetBerry Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: Kelp Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: TwistingVines Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: WeepingVines Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: CaveVines Growth Modifier: 100%
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: Nerfing mobs spawned from spawners: false
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: Item Despawn Rate: 6000
Server threadEx[2812월2024 12:44:46.681] [Server thread/INFO] [Minecraft/]: View Distance: 10
Server threadEx[2812월2024 12:44:46.682] [Server thread/INFO] [Minecraft/]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
Server threadEx[2812월2024 12:44:46.682] [Server thread/INFO] [Minecraft/]: Max TNT Explosions: 100
Server threadEx[2812월2024 12:44:46.682] [Server thread/INFO] [Minecraft/]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
Server threadEx[2812월2024 12:44:46.682] [Server thread/INFO] [Minecraft/]: Zombie Aggressive Towards Villager: true
Server threadEx[2812월2024 12:44:46.682] [Server thread/INFO] [Minecraft/]: Allow Zombie Pigmen to spawn from portal blocks: true
Server threadEx[2812월2024 12:44:46.682] [Server thread/INFO] [Minecraft/]: Simulation Distance: 10
Server threadEx[2812월2024 12:44:46.682] [Server thread/INFO] [Minecraft/]: Experience Merge Radius: 3.0
Server threadEx[2812월2024 12:44:46.682] [Server thread/INFO] [Minecraft/]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
Server threadEx[2812월2024 12:44:46.687] [Server thread/INFO] [PlaceholderAPI/]: Enabling PlaceholderAPI v2.11.6
Server threadEx[2812월2024 12:44:46.936] [Server thread/INFO] [PlaceholderAPI/]: Fetching available expansion information...
Server threadEx[2812월2024 12:44:46.948] [Server thread/INFO] [Citizens/]: Enabling Citizens v2.0.35-SNAPSHOT (build 3583)
Server threadEx[2812월2024 12:44:47.400] [Server thread/INFO] [Citizens/]: Loading external libraries
Server threadEx[2812월2024 12:44:47.738] [Server thread/INFO] [Minecraft/]: [Citizens] Detected system language [[ko]]. If youd like you can contribute to Citizens translations via our Discord! https://discord.gg/Q6pZGSR
Server threadEx[2812월2024 12:44:47.827] [Server thread/WARN] [FabricLoader/Mixin/]: @Redirect conflict. Skipping lithium.mixins.json:alloc.entity_tracker.ChunkMap$TrackedEntityMixin from mod lithium->@Redirect::useFasterCollection()Ljava/util/Set; with priority 1000, already redirected by mixins.arclight.impl.optimization.json:network.ChunkMapMixin_Optimize$TrackedEntityMixin from mod arclight->@Redirect::arclight$useFastUtilSet()Ljava/util/Set; with priority 1000
Server threadEx[2812월2024 12:44:48.009] [Server thread/INFO] [Minecraft/]: [Citizens] Loaded 0 templates.
Server threadEx[2812월2024 12:44:48.047] [Server thread/INFO] [PlaceholderAPI/]: Successfully registered internal expansion: citizensplaceholder [1.0.0]
Server threadEx[2812월2024 12:44:48.048] [Server thread/INFO] [Minecraft/]: [Citizens] Loaded economy handling via Vault.
Server threadEx[2812월2024 12:44:48.123] [Server thread/INFO] [Skript/]: Enabling Skript v2.9.5
Server threadEx[2812월2024 12:44:48.847] [ForkJoinPool.commonPool-worker-16/INFO] [Console/]: [Skript] You're currently running the latest stable version of Skript.
ForkJoinPool.commonPool-worker-16Ex[2812월2024 12:44:55.242] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ice_stone_ore is not valid
Server threadEx[2812월2024 12:44:55.242] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:tumblestone_brick_wall is not valid
Server threadEx[2812월2024 12:44:55.242] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:restoration_tank is not valid
Server threadEx[2812월2024 12:44:55.242] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:belue_berry is not valid
Server threadEx[2812월2024 12:44:55.242] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:fossil_analyzer is not valid
Server threadEx[2812월2024 12:44:55.242] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:wiki_berry is not valid
Server threadEx[2812월2024 12:44:55.242] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:pomeg_berry is not valid
Server threadEx[2812월2024 12:44:55.242] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:lectern is not valid
Server threadEx[2812월2024 12:44:55.242] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:wepear_berry is not valid
Server threadEx[2812월2024 12:44:55.242] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:tumblestone_brick_stairs is not valid
Server threadEx[2812월2024 12:44:55.242] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:enigma_berry is not valid
Server threadEx[2812월2024 12:44:55.243] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:apricorn_leaves is not valid
Server threadEx[2812월2024 12:44:55.243] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:kebia_berry is not valid
Server threadEx[2812월2024 12:44:55.243] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:yache_berry is not valid
Server threadEx[2812월2024 12:44:55.243] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:display_case is not valid
Server threadEx[2812월2024 12:44:55.243] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:sky_tumblestone_cluster is not valid
Server threadEx[2812월2024 12:44:55.243] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:small_budding_sky_tumblestone is not valid
Server threadEx[2812월2024 12:44:55.243] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:blue_apricorn_sapling is not valid
Server threadEx[2812월2024 12:44:55.243] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:yellow_gilded_chest is not valid
Server threadEx[2812월2024 12:44:55.243] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:occa_berry is not valid
Server threadEx[2812월2024 12:44:55.243] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:thunder_stone_ore is not valid
Server threadEx[2812월2024 12:44:55.243] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:fire_stone_block is not valid
Server threadEx[2812월2024 12:44:55.243] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:chiseled_polished_black_tumblestone is not valid
Server threadEx[2812월2024 12:44:55.243] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:moon_stone_ore is not valid
Server threadEx[2812월2024 12:44:55.243] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:apricorn_hanging_sign is not valid
Server threadEx[2812월2024 12:44:55.244] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:coba_berry is not valid
Server threadEx[2812월2024 12:44:55.244] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:apricorn_slab is not valid
Server threadEx[2812월2024 12:44:55.244] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:polished_black_tumblestone is not valid
Server threadEx[2812월2024 12:44:55.244] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:polished_black_tumblestone_slab is not valid
Server threadEx[2812월2024 12:44:55.244] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:oran_berry is not valid
Server threadEx[2812월2024 12:44:55.244] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:red_apricorn is not valid
Server threadEx[2812월2024 12:44:55.244] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:nomel_berry is not valid
Server threadEx[2812월2024 12:44:55.244] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:deepslate_moon_stone_ore is not valid
Server threadEx[2812월2024 12:44:55.244] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:sun_stone_block is not valid
Server threadEx[2812월2024 12:44:55.244] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:salac_berry is not valid
Server threadEx[2812월2024 12:44:55.244] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:energy_root is not valid
Server threadEx[2812월2024 12:44:55.244] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:sky_tumblestone_bricks is not valid
Server threadEx[2812월2024 12:44:55.244] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:black_apricorn_sapling is not valid
Server threadEx[2812월2024 12:44:55.245] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:rowap_berry is not valid
Server threadEx[2812월2024 12:44:55.245] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:apricorn_wall_sign is not valid
Server threadEx[2812월2024 12:44:55.245] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:dawn_stone_ore is not valid
Server threadEx[2812월2024 12:44:55.245] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:chiseled_sky_tumblestone_bricks is not valid
Server threadEx[2812월2024 12:44:55.245] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:leaf_stone_block is not valid
Server threadEx[2812월2024 12:44:55.245] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:relic_coin_sack is not valid
Server threadEx[2812월2024 12:44:55.245] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:babiri_berry is not valid
Server threadEx[2812월2024 12:44:55.245] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:smooth_sky_tumblestone_stairs is not valid
Server threadEx[2812월2024 12:44:55.245] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:magost_berry is not valid
Server threadEx[2812월2024 12:44:55.245] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:mago_berry is not valid
Server threadEx[2812월2024 12:44:55.245] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:fire_stone_ore is not valid
Server threadEx[2812월2024 12:44:55.245] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:haban_berry is not valid
Server threadEx[2812월2024 12:44:55.245] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:apricorn_planks is not valid
Server threadEx[2812월2024 12:44:55.245] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:tamato_berry is not valid
Server threadEx[2812월2024 12:44:55.245] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:tumblestone_brick_slab is not valid
Server threadEx[2812월2024 12:44:55.245] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:liechi_berry is not valid
Server threadEx[2812월2024 12:44:55.245] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:green_apricorn_sapling is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:deepslate_fire_stone_ore is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:wacan_berry is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:apricorn_trapdoor is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:black_tumblestone_bricks is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:black_gilded_chest is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:pc is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:sitrus_berry is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:green_mint is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:potted_pep_up_flower is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:polished_black_tumblestone_stairs is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:figy_berry is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:deepslate_dawn_stone_ore is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:red_apricorn_sapling is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:big_root is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:pamtre_berry is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:apricorn_door is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:gimmighoul_chest is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:deepslate_water_stone_ore is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:passho_berry is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:large_budding_black_tumblestone is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:watmel_berry is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:dusk_stone_ore is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:black_apricorn is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:sky_tumblestone_brick_slab is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:aguav_berry is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:kasib_berry is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:apricorn_log is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:jaboca_berry is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:cyan_mint is not valid
Server threadEx[2812월2024 12:44:55.246] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:gilded_chest is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:polished_black_tumblestone_wall is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:lansat_berry is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:apricorn_sign is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:nether_fire_stone_ore is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:deepslate_shiny_stone_ore is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:chiseled_black_tumblestone_bricks is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:maranga_berry is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:thunder_stone_block is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:pink_gilded_chest is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:red_mint is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:apicot_berry is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:small_budding_tumblestone is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:tumblestone_block is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:chiseled_tumblestone_bricks is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:sky_tumblestone_brick_wall is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:terracotta_sun_stone_ore is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:water_stone_ore is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:black_tumblestone_brick_stairs is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:apricorn_fence is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:yellow_apricorn is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:leaf_stone_ore is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:apricorn_pressure_plate is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:hopo_berry is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:apricorn_wall_hanging_sign is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:spelon_berry is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:shiny_stone_ore is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:sun_stone_ore is not valid
Server threadEx[2812월2024 12:44:55.247] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:water_stone_block is not valid
Server threadEx[2812월2024 12:44:55.248] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:revival_herb is not valid
Server threadEx[2812월2024 12:44:55.248] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:vivichoke_seeds is not valid
Server threadEx[2812월2024 12:44:55.248] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:rabuta_berry is not valid
Server threadEx[2812월2024 12:44:55.248] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:white_mint is not valid
Server threadEx[2812월2024 12:44:55.248] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:deepslate_dusk_stone_ore is not valid
Server threadEx[2812월2024 12:44:55.248] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:pink_mint is not valid
Server threadEx[2812월2024 12:44:55.248] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:iapapa_berry is not valid
Server threadEx[2812월2024 12:44:55.248] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:black_tumblestone_brick_wall is not valid
Server threadEx[2812월2024 12:44:55.248] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:smooth_tumblestone is not valid
Server threadEx[2812월2024 12:44:55.248] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:sky_tumblestone_brick_stairs is not valid
Server threadEx[2812월2024 12:44:55.248] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:qualot_berry is not valid
Server threadEx[2812월2024 12:44:55.248] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:moon_stone_block is not valid
Server threadEx[2812월2024 12:44:55.248] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:small_budding_black_tumblestone is not valid
Server threadEx[2812월2024 12:44:55.248] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:custap_berry is not valid
Server threadEx[2812월2024 12:44:55.248] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:pecha_berry is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:pink_apricorn_sapling is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:leppa_berry is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:smooth_tumblestone_slab is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:dawn_stone_block is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:polished_tumblestone_wall is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:durin_berry is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ice_stone_block is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:green_gilded_chest is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:healing_machine is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:chiseled_polished_tumblestone is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:polished_sky_tumblestone is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:colbur_berry is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:razz_berry is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:stripped_apricorn_wood is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:monitor is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:kee_berry is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:medicinal_leek is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:touga_berry is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:black_tumblestone_cluster is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:aspear_berry is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:polished_sky_tumblestone_slab is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:chesto_berry is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:pasture is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:apricorn_fence_gate is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:medium_budding_black_tumblestone is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:pinap_berry is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:medium_budding_sky_tumblestone is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:smooth_black_tumblestone is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:apricorn_wood is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:white_gilded_chest is not valid
Server threadEx[2812월2024 12:44:55.249] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:smooth_tumblestone_stairs is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:white_apricorn is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:chople_berry is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:polished_tumblestone_stairs is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:deepslate_sun_stone_ore is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:pink_apricorn is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:starf_berry is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:shuca_berry is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:polished_sky_tumblestone_stairs is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:petaya_berry is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ganlon_berry is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:yellow_apricorn_sapling is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:grepa_berry is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:smooth_black_tumblestone_stairs is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:persim_berry is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:shiny_stone_block is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:blue_apricorn is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:nanab_berry is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:dusk_stone_block is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:sky_tumblestone_block is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:smooth_sky_tumblestone_slab is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:charti_berry is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:smooth_sky_tumblestone is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:relic_coin_pouch is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:micle_berry is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:lum_berry is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:large_budding_sky_tumblestone is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:large_budding_tumblestone is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:black_tumblestone_block is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:deepslate_leaf_stone_ore is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:stripped_apricorn_log is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:chiseled_polished_sky_tumblestone is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:dripstone_moon_stone_ore is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:polished_tumblestone_slab is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:bluk_berry is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:white_apricorn_sapling is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:rindo_berry is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:deepslate_thunder_stone_ore is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:tumblestone_bricks is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:cheri_berry is not valid
Server threadEx[2812월2024 12:44:55.250] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:chilan_berry is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:rawst_berry is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:blue_mint is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:pep_up_flower is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:blue_gilded_chest is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:roseli_berry is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:black_tumblestone_brick_slab is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:apricorn_stairs is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:cornn_berry is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:polished_tumblestone is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:apricorn_button is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:tanga_berry is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:medium_budding_tumblestone is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:kelpsy_berry is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:smooth_black_tumblestone_slab is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:polished_sky_tumblestone_wall is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:payapa_berry is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:green_apricorn is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:tumblestone_cluster is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:deepslate_ice_stone_ore is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:hondew_berry is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id rctmod:trainer_spawner is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:light_clay is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:relic_coin is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:power_weight is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:clover_sweet is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:unremarkable_teacup is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:gentle_mint is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:twisted_spoon is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:x_special_attack is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:sail_fossil is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:fossilized_bird is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:dusk_stone is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:great_rod is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_gigaton_ball is not valid
Server threadEx[2812월2024 12:44:55.252] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:magmarizer is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_origin_rod is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:dome_fossil is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:max_elixir is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:blunder_policy is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:friend_ball is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:sport_rod is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:remedy is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:max_ether is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:protective_pads is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:flower_sweet is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:slate_ball is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:iron is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:potion is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:red_mint_leaf is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:covert_cloak is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:fairy_feather is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:wide_lens is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:beast_ball is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:shed_shell is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:yellow_apricorn_seed is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:max_revive is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:light_ball is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_wing_rod is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:lure_rod is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:park_ball is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:reaper_cloth is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:master_rod is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:awakening is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:wise_glasses is not valid
Server threadEx[2812월2024 12:44:55.253] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:sun_stone is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:psychic_gem is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:bright_powder is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:magnet is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:steel_gem is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:choice_scarf is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:hasty_mint is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:claw_fossil is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:white_mint_leaf is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:iron_ball is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_great_rod is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:blue_mint_leaf is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:growth_mulch is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:upgrade is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:galarica_cuff is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:pink_mint_leaf is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:repeat_rod is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ultra_ball is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:cyan_mint_seeds is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:soothe_bell is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:thunder_stone is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:dusk_rod is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:choice_band is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:heavy_duty_boots is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ring_target is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:dawn_stone is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:cyan_mint_leaf is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:sky_tumblestone is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:helix_sherd is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:apricorn_chest_boat is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:muscle_feather is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:x_speed is not valid
Server threadEx[2812월2024 12:44:55.254] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:master_ball is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:super_potion is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:razor_claw is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:pokedex_black is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_ultra_rod is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:dive_rod is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:cracked_pot is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:deep_sea_tooth is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:galarica_wreath is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:shiny_stone is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:roasted_leek is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:zoom_lens is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_verdant_rod is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:vivichoke is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:mirror_herb is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_poke_ball is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:prism_scale is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:serious_mint is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:poison_gem is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:azure_rod is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:sachet is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:superb_remedy is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:bug_gem is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:quick_claw is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:dragon_scale is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:exp_share is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:capture_sherd is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:tumblestone is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ground_gem is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:verdant_ball is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:pink_apricorn_seed is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:fighting_gem is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:pokedex_white is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:guard_spec is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:love_ball is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:charcoal_stick is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:grass_gem is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:roseate_rod is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:npc_editor is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:apricorn_boat is not valid
Server threadEx[2812월2024 12:44:55.255] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:clever_feather is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:antidote is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:star_sweet is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:elixir is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:scope_lens is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:heavy_ball is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:rich_mulch is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:level_ball is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:whipped_dream is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:eviolite is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:protector is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:hard_stone is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:black_glasses is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:muscle_band is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:fossilized_drake is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:sweet_apple is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:cell_battery is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:fast_rod is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:tart_apple is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:rare_candy is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:naughty_mint is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:metronome is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:float_stone is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_jet_ball is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:metal_powder is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:heal_rod is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:green_mint_leaf is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:chipped_pot is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:dusk_ball is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_gigaton_rod is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:moon_rod is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:smooth_rock is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:lax_mint is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_slate_ball is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:lure_ball is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:peat_block is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:braised_vivichoke is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:white_herb is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ribbon_sweet is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:beast_rod is not valid
Server threadEx[2812월2024 12:44:55.256] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_ultra_ball is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:verdant_rod is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_slate_rod is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:zinc is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:calm_mint is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:plume_fossil is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:protein is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:quick_powder is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:repeat_ball is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:love_sweet is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:quick_ball is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:timer_ball is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:peat_mulch is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:berry_juice is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ice_heal is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:leek_and_potato_stew is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:revive is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:humid_mulch is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:normal_gem is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:mystic_water is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:power_herb is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:flying_gem is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:moon_ball is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:electric_seed is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:x_accuracy is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:malicious_armor is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_ivory_rod is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:blue_mint_seeds is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:binding_band is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:full_heal is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ice_stone is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_ivory_ball is not valid
Server threadEx[2812월2024 12:44:55.257] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ultra_rod is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:vivichoke_dip is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:icy_rock is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:smoke_ball is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:heavy_rod is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:throat_spray is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:power_anklet is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:link_cable is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:black_sludge is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:love_rod is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_citrine_ball is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:poke_ball is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_origin_ball is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_heavy_ball is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_citrine_rod is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:exp_candy_xl is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:net_ball is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:psychic_seed is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:exp_candy_xs is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:electirizer is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:poison_barb is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:cherish_rod is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:rock_gem is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:quiet_mint is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ability_shield is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:focus_sash is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ether is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ice_gem is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:shell_bell is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:fairy_gem is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:loaded_dice is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:razor_fang is not valid
Server threadEx[2812월2024 12:44:55.258] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:dome_sherd is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:pokedex_blue is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:medicinal_brew is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_azure_ball is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:deep_sea_scale is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:metal_coat is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:air_balloon is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:burn_heal is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:root_fossil is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:premier_ball is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:timer_rod is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:impish_mint is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:surprise_mulch is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:sharp_beak is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:flame_orb is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:moon_stone is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:great_ball is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:weakness_policy is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:red_apricorn_seed is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:kings_rock is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:safari_rod is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:net_rod is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_feather_ball is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_wing_ball is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:rash_mint is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:dragon_fang is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:x_defence is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:quick_rod is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:loamy_mulch is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:green_mint_seeds is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:choice_specs is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:life_orb is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:relaxed_mint is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:green_apricorn_seed is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:rocky_helmet is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:power_belt is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_roseate_ball is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:power_lens is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:jaw_fossil is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:fossilized_fish is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_jet_rod is not valid
Server threadEx[2812월2024 12:44:55.259] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:old_amber_fossil is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:red_mint_seeds is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:timid_mint is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:fire_stone is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:pokedex_yellow is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:park_rod is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:dream_ball is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:safari_ball is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:fast_ball is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:azure_ball is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:power_bracer is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:roseate_ball is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:heat_rock is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:jolly_mint is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:utility_umbrella is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:resist_feather is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:expert_belt is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:luxury_ball is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:eject_pack is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:destiny_knot is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:silk_scarf is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:spell_tag is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_roseate_rod is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_heavy_rod is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:terrain_extender is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:genius_feather is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:bygone_sherd is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:max_potion is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:naive_mint is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:heal_ball is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:dragon_gem is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:paralyze_heal is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:everstone is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:punching_glove is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:focus_band is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:miracle_seed is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:black_augurite is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:pokedex_red is not valid
Server threadEx[2812월2024 12:44:55.260] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:poke_rod is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:skull_fossil is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:heal_powder is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:careful_mint is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:lonely_mint is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:toxic_orb is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:slate_rod is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:cherish_ball is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:safety_goggles is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:blue_apricorn_seed is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ability_capsule is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:cover_fossil is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:hp_up is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:absorb_bulb is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:citrine_rod is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:fire_gem is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:strawberry_sweet is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:armor_fossil is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:coarse_mulch is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:calcium is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:x_special_defence is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:white_mint_seeds is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ability_patch is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:pokerod_smithing_template is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:mental_herb is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:pp_max is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:auspicious_armor is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:pokedex_pink is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:grassy_seed is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:dark_gem is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:exp_candy_m is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:exp_candy_l is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:never_melt_ice is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:pink_mint_seeds is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:nostalgic_sherd is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:level_rod is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:soft_sand is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:damp_rock is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:full_restore is not valid
Server threadEx[2812월2024 12:44:55.261] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:eject_button is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:sandy_mulch is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:luxury_rod is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:assault_vest is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:friend_rod is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:carbos is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:exp_candy_s is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:leaf_stone is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:dire_hit is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:helix_fossil is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:black_apricorn_seed is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:pp_up is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:red_card is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:health_feather is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:bold_mint is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_leaden_rod is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:electric_gem is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:berry_sweet is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_verdant_ball is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:x_attack is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:modest_mint is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:brave_mint is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_azure_rod is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:pokedex_green is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ghost_gem is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:nest_rod is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:dream_rod is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_leaden_ball is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:oval_stone is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:black_belt is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:mulch_base is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:fine_remedy is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_great_ball is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:pokemon_model is not valid
Server threadEx[2812월2024 12:44:55.262] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:masterpiece_teacup is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:citrine_ball is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:swift_feather is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:leftovers is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:adamant_mint is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:cleanse_tag is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:suspicious_sherd is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_poke_rod is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:premier_rod is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:hyper_potion is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:room_service is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:black_tumblestone is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:nest_ball is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:sticky_barb is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:fossilized_dino is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:silver_powder is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:dubious_disc is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:sport_ball is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:dive_ball is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:white_apricorn_seed is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:mild_mint is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:sassy_mint is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:automaton_armor_trim_smithing_template is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:lucky_egg is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:water_stone is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:water_gem is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:ancient_feather_rod is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:power_band is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id cobblemon:misty_seed is not valid
Server threadEx[2812월2024 12:44:55.263] [Server thread/INFO] [Console/]: [Skript]     Minecraft id rctmod:trainer_card is not valid
Server threadEx[2812월2024 12:44:55.266] [Server thread/INFO] [Console/]: [Skript] Loaded 233074 aliases in 6748ms
Server threadEx[2812월2024 12:44:55.970] [Server thread/INFO] [Console/]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
Server threadEx[2812월2024 12:44:55.976] [Server thread/INFO] [SkBee/]: Enabling SkBee v3.6.6
Server threadEx[2812월2024 12:44:56.266] [Server thread/INFO] [Console/]: [SkBee] Loading NBTApi...
Server threadEx[2812월2024 12:44:56.266] [Server thread/INFO] [Console/]: [SkBee] [NBTAPI] Found Minecraft: v1_21_R1! Trying to find NMS support
Server threadEx[2812월2024 12:44:56.267] [Server thread/INFO] [Console/]: [SkBee] [NBTAPI] NMS support 'MC1_21_R1' loaded!
Server threadEx[2812월2024 12:44:56.272] [Server thread/INFO] [Console/]: [SkBee] Successfully loaded NBTApi!
Server threadEx[2812월2024 12:44:56.377] [Server thread/INFO] [Console/]: [SkBee] NBT Elements successfully loaded
Server threadEx[2812월2024 12:44:56.378] [Server thread/INFO] [Console/]: [SkBee] Text Component Elements disabled
Server threadEx[2812월2024 12:44:56.378] [Server thread/INFO] [Console/]: [SkBee] - Text components require a PaperMC server.
Server threadEx[2812월2024 12:44:56.385] [Server thread/INFO] [Console/]: [SkBee] Advancement Elements successfully loaded
Server threadEx[2812월2024 12:44:56.390] [Server thread/INFO] [Console/]: [SkBee] BossBar Elements successfully loaded
Server threadEx[2812월2024 12:44:56.406] [Server thread/INFO] [Console/]: [SkBee] Bound Elements successfully loaded
Server threadEx[2812월2024 12:44:56.409] [Server thread/INFO] [Console/]: [SkBee] Damage Source elements successfully loaded
Server threadEx[2812월2024 12:44:56.429] [Server thread/INFO] [Console/]: [SkBee] Display Entity elements successfully loaded
Server threadEx[2812월2024 12:44:56.436] [Server thread/INFO] [Console/]: [SkBee] Fishing elements successfully loaded
Server threadEx[2812월2024 12:44:56.441] [Server thread/INFO] [Console/]: [SkBee] Game Event Elements successfully loaded
Server threadEx[2812월2024 12:44:56.447] [Server thread/INFO] [Console/]: [SkBee] Item Component Elements successfully loaded
Server threadEx[2812월2024 12:44:56.451] [Server thread/INFO] [Console/]: [SkBee] Particle Elements successfully loaded
Server threadEx[2812월2024 12:44:56.454] [Server thread/INFO] [Console/]: [SkBee] RayTrace elements successfully loaded
Server threadEx[2812월2024 12:44:56.478] [Server thread/INFO] [Console/]: [SkBee] Recipe Elements successfully loaded
Server threadEx[2812월2024 12:44:56.484] [Server thread/INFO] [Console/]: [SkBee] Scoreboard Elements successfully loaded
Server threadEx[2812월2024 12:44:56.492] [Server thread/INFO] [Console/]: [SkBee] Scoreboard Objective Elements successfully loaded
Server threadEx[2812월2024 12:44:56.494] [Server thread/INFO] [Console/]: [SkBee] Statistic Elements successfully loaded
Server threadEx[2812월2024 12:44:56.501] [Server thread/INFO] [Console/]: [SkBee] Structure Elements successfully loaded
Server threadEx[2812월2024 12:44:56.504] [Server thread/INFO] [Console/]: [SkBee] Minecraft Tag elements successfully loaded
Server threadEx[2812월2024 12:44:56.512] [Server thread/INFO] [Console/]: [SkBee] Team Elements successfully loaded
Server threadEx[2812월2024 12:44:56.516] [Server thread/INFO] [Console/]: [SkBee] Tick Manager elements successfully loaded
Server threadEx[2812월2024 12:44:56.529] [Server thread/INFO] [Console/]: [SkBee] Villager Elements successfully loaded
Server threadEx[2812월2024 12:44:56.529] [Server thread/INFO] [Console/]: [SkBee] Virtual Furnace Elements disabled via config
Server threadEx[2812월2024 12:44:56.533] [Server thread/INFO] [Console/]: [SkBee] World Border Elements successfully loaded
Server threadEx[2812월2024 12:44:56.541] [Server thread/INFO] [Console/]: [SkBee] World Creator Elements successfully loaded
Server threadEx[2812월2024 12:44:56.549] [Server thread/INFO] [Console/]: [SkBee] Chunk Generator Elements successfully loaded
Server threadEx[2812월2024 12:44:56.549] [Server thread/INFO] [Console/]: [SkBee] Loaded (361) elements:
Server threadEx[2812월2024 12:44:56.549] [Server thread/INFO] [Console/]: [SkBee]  - 31 events
Server threadEx[2812월2024 12:44:56.549] [Server thread/INFO] [Console/]: [SkBee]  - 64 effects
Server threadEx[2812월2024 12:44:56.549] [Server thread/INFO] [Console/]: [SkBee]  - 227 expressions
Server threadEx[2812월2024 12:44:56.549] [Server thread/INFO] [Console/]: [SkBee]  - 26 conditions
Server threadEx[2812월2024 12:44:56.549] [Server thread/INFO] [Console/]: [SkBee]  - 13 sections
Server threadEx[2812월2024 12:44:56.553] [Server thread/INFO] [Console/]: [SkBee] Checking for update...
Server threadEx[2812월2024 12:44:56.823] [Server thread/INFO] [Console/]: [SkBee] Plugin is up to date!
Server threadEx[2812월2024 12:44:56.823] [Server thread/INFO] [Console/]: [SkBee] Successfully enabled v3.6.6 in 0.85 seconds
Server threadEx[2812월2024 12:44:56.825] [Server thread/INFO] [Essentials/]: Enabling Essentials v2.21.0-dev+151-f2af952
Server threadEx[2812월2024 12:44:57.055] [Server thread/ERROR] [Essentials/]: 서버가 버킷 플러그인을 제대로 지원하지 않습니다. 버킷 플러그인은 Forge/Fabric 모드와 함께 사용되어선 안됩니다! Forge의 경우: ForgeEssentials, 혹은 SpongeForge + Nucleus 사용을 고려해보세요.
Server threadEx[2812월2024 12:44:57.060] [Server thread/INFO] [Essentials/]: 의존성 클래스 상태: net.fabricmc.loader.launch.knot.KnotServer
Server threadEx[2812월2024 12:44:57.208] [Server thread/INFO] [Essentials/]: Attempting to convert old kits in config.yml to new kits.yml
Server threadEx[2812월2024 12:44:57.208] [Server thread/INFO] [Essentials/]: No kits found to migrate.
Server threadEx[2812월2024 12:44:57.389] [Server thread/INFO] [Essentials/]: Loaded 43465 items from items.json.
Server threadEx[2812월2024 12:44:57.391] [Server thread/INFO] [Essentials/]: Using locale ko_KR
Server threadEx[2812월2024 12:44:57.426] [Server thread/INFO] [Essentials/]: ServerListPingEvent: Spigot iterator API
Server threadEx[2812월2024 12:44:57.689] [Server thread/INFO] [Essentials/]: Starting Metrics. Opt-out using the global bStats config.
Server threadEx[2812월2024 12:44:57.691] [Server thread/INFO] [Vault/]: [Economy] Essentials Economy hooked.
Server threadEx[2812월2024 12:44:57.697] [Server thread/INFO] [Essentials/]: Using Vault based permissions (LuckPerms)
Server threadEx[2812월2024 12:44:57.698] [Server thread/INFO] [SkEtcR/]: Enabling SkEtcR v4.0
Server threadEx[2812월2024 12:44:57.703] [Server thread/INFO] [net.minecraft.class_2983/]: [STDOUT]: [SkEtcR] 패킷을 사용합니다
Server threadEx[2812월2024 12:44:57.703] [Server thread/INFO] [net.minecraft.class_2983/]: [STDOUT]: [SkEtcR] 패킷을 사용합니다
Server threadEx[2812월2024 12:44:57.762] [Server thread/INFO] [net.minecraft.class_2983/]: [STDOUT]: [SkEtcR] Database Loaded
Server threadEx[2812월2024 12:44:57.817] [Server thread/INFO] [Console/]: 
Server threadEx[2812월2024 12:44:57.817] [Server thread/INFO] [Console/]: 
Server threadEx[2812월2024 12:44:57.817] [Server thread/INFO] [Console/]: □□■■■■□□□■□□□□□■■■■■■□□□□□□□□□□□□■■■■■□□
Server threadEx[2812월2024 12:44:57.817] [Server thread/INFO] [Console/]: □■□□□□■□□■□□□□□■□□□□□□□■□□□□□□□□□■□□□□■□
Server threadEx[2812월2024 12:44:57.817] [Server thread/INFO] [Console/]: □■□□□□■□□■□□□□□■□□□□□□□■□□□□□□□□□■□□□□■□
Server threadEx[2812월2024 12:44:57.817] [Server thread/INFO] [Console/]: □■□□□□□□□■□□□■□■□□□□□□■■■□□■■■□□□■□□□□■□
Server threadEx[2812월2024 12:44:57.817] [Server thread/INFO] [Console/]: □□■■□□□□□■□□■□□■■■■■■□□■□□■□□□■□□■■■■■□□
Server threadEx[2812월2024 12:44:57.817] [Server thread/INFO] [Console/]: □□□□■■□□□■□■□□□■□□□□□□□■□□■□□□□□□■□□□□■□
Server threadEx[2812월2024 12:44:57.817] [Server thread/INFO] [Console/]: □□□□□□■□□■■□□□□■□□□□□□□■□□■□□□□□□■□□□□■□
Server threadEx[2812월2024 12:44:57.817] [Server thread/INFO] [Console/]: □■□□□□■□□■□■□□□■□□□□□□□■□□■□□□□□□■□□□□■□
Server threadEx[2812월2024 12:44:57.817] [Server thread/INFO] [Console/]: □■□□□□■□□■□□■□□■□□□□□□□■□□■□□□■□□■□□□□■□
Server threadEx[2812월2024 12:44:57.817] [Server thread/INFO] [Console/]: □□■■■■□□□■□□□■□■■■■■■□□□■□□■■■□□□■□□□□■□
Server threadEx[2812월2024 12:44:57.817] [Server thread/INFO] [Console/]: 
Server threadEx[2812월2024 12:44:57.817] [Server thread/INFO] [Console/]: 
Server threadEx[2812월2024 12:44:57.819] [Server thread/INFO] [VTV1/]: Enabling VTV1 v1.4.1
Server threadEx[2812월2024 12:44:57.845] [Server thread/INFO] [VTV1/]: objects loaded.
Server threadEx[2812월2024 12:44:57.846] [Server thread/INFO] [VTV1/]: 0 WalkTriggers loaded.
Server threadEx[2812월2024 12:44:57.847] [Server thread/INFO] [VTV1/]: 0 ClickTriggers loaded.
Server threadEx[2812월2024 12:44:57.850] [Server thread/INFO] [VTV1/]: 0 EventTriggers loaded.
Server threadEx[2812월2024 12:44:57.851] [Server thread/INFO] [VTV1/]: 0 AreaTriggers loaded.
Server threadEx[2812월2024 12:44:57.852] [Server thread/INFO] [VTV1/]: No Triggers found.
Server threadEx[2812월2024 12:44:57.852] [Server thread/INFO] [VTV1/]: 0 CommandTriggers loaded.
Server threadEx[2812월2024 12:44:57.856] [Server thread/INFO] [VTV1/]: 2 Scripts from 1 files loaded.
Server threadEx[2812월2024 12:44:57.856] [Server thread/INFO] [VTV1/]: Hooked Vault
Server threadEx[2812월2024 12:44:57.856] [Server thread/INFO] [VTV1/]: Using BetterEconomy
Server threadEx[2812월2024 12:44:57.856] [Server thread/INFO] [VTV1/]: Using LuckPerms
Server threadEx[2812월2024 12:44:57.856] [Server thread/INFO] [VTV1/]: Using LuckPerms
Server threadEx[2812월2024 12:44:57.859] [Server thread/INFO] [VTV1/]: Running in compatability mode for 1.12
Server threadEx[2812월2024 12:44:57.861] [Server thread/INFO] [skript-reflect/]: Enabling skript-reflect v2.5.1
Server threadEx[2812월2024 12:44:57.946] [Server thread/INFO] [skUtilities/]: Enabling skUtilities v0.9.2
Server threadEx[2812월2024 12:44:57.999] [Server thread/INFO] [Minecraft/]: [skUtilities] v0.9.2: loaded modules (Conversions, Files, Yaml, Urls, Utilities) in 53ms
Server threadEx[2812월2024 12:44:58.001] [Server thread/INFO] [BetterEconomy/]: Enabling BetterEconomy v3.1
Server threadEx[2812월2024 12:44:58.017] [Server thread/INFO] [PlaceholderAPI/]: Successfully registered internal expansion: bettereconomy [3.1]
Server threadEx[2812월2024 12:44:58.024] [Server thread/INFO] [SkQuery/]: Enabling SkQuery v4.1.10
Server threadEx[2812월2024 12:44:58.031] [Server thread/INFO] [Minecraft/]: [skQuery] Locating classes from SkQuery...
Server threadEx[2812월2024 12:44:58.117] [Server thread/INFO] [Minecraft/]: [skQuery] Beginning to process a total of 117 from SkQuery
Server threadEx[2812월2024 12:44:58.136] [Server thread/INFO] [Minecraft/]: [skQuery] Out of 117 classes, 117 classes were loaded from SkQuery
Server threadEx[2812월2024 12:44:58.141] [Server thread/INFO] [SkJade/]: Enabling SkJade v1.4.3
Server threadEx[2812월2024 12:44:58.143] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]: You are using an unknown version (v1_21_R1). You could be using a version before 1.7, or a newer version I haven't supported.
Server threadEx[2812월2024 12:44:58.144] [Server thread/WARN] [SkJade/]: SkJade | Could not find any NMS support for 1.4.3! Please note SkJade only supports the latest sub-version of each version above 1.13.
Server threadEx[2812월2024 12:44:58.144] [Server thread/WARN] [SkJade/]: SkJade | There is also a chance you are using a version I haven't implemented support for yet.
Server threadEx[2812월2024 12:44:58.144] [Server thread/INFO] [SkJade/]: SkJade | SkJade will remain enabled, however anything using NMS will not be enabled!
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]: java.lang.NullPointerException
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at java.base/java.util.Objects.requireNonNull(Objects.java:233)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at java.base/java.lang.invoke.DirectMethodHandle.checkBase(DirectMethodHandle.java:547)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at java.base/jdk.internal.reflect.MethodHandleFloatFieldAccessorImpl.getFloat(MethodHandleFloatFieldAccessorImpl.java:87)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at java.base/jdk.internal.reflect.MethodHandleFloatFieldAccessorImpl.get(MethodHandleFloatFieldAccessorImpl.java:55)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at java.base/java.lang.reflect.Field.get(Field.java:444)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at com.ankoki.skjade.elements.lasers.Laser$Packets.getField(Laser.java:1009)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at com.ankoki.skjade.elements.lasers.Laser$Packets.<clinit>(Laser.java:748)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at java.base/java.lang.Class.forName0(Native Method)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at java.base/java.lang.Class.forName(Class.java:534)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at java.base/java.lang.Class.forName(Class.java:513)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at knot//io.izzel.arclight.common.mod.util.remapper.generated.ArclightReflectionHandler_7.redirectClassForName(ArclightReflectionHandler.java:234)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at ch.njol.skript.util.Utils.getClasses(Utils.java:241)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at ch.njol.skript.SkriptAddon.loadClasses(SkriptAddon.java:82)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at com.ankoki.skjade.SkJade.loadElements(SkJade.java:145)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at com.ankoki.skjade.SkJade.onEnable(SkJade.java:67)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at knot//org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPluginMixin.java:267)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at knot//org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoaderMixin.java:342)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at knot//org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:492)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at knot//org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugin(CraftServerMixin.java:576)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at knot//org.bukkit.craftbukkit.v1_21_R1.CraftServer.enablePlugins(CraftServerMixin.java:490)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at knot//net.minecraft.server.MinecraftServer.handler$zdp000$arclight$enablePlugins(MinecraftServerMixin.java:2354)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at knot//net.minecraft.server.MinecraftServer.method_3786(MinecraftServerMixin.java:423)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at knot//net.minecraft.server.MinecraftServer.method_3735(MinecraftServerMixin.java:342)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at knot//net.minecraft.class_3176.method_3823(DedicatedServerMixin_Vanilla.java:185)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at knot//net.minecraft.server.MinecraftServer.method_29741(MinecraftServerMixin.java:664)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at knot//net.minecraft.server.MinecraftServer.method_29739(MinecraftServerMixin.java:281)
Server threadEx[2812월2024 12:44:58.194] [Server thread/INFO] [net.minecraft.class_2983/]: [STDERR]:     at java.base/java.lang.Thread.run(Thread.java:1583)
Server threadEx[2812월2024 12:44:58.200] [Server thread/INFO] [SkJade/]: SkJade | ProtocolLib was found! Enabling support
Server threadEx[2812월2024 12:44:58.212] [Server thread/INFO] [SkJade/]: SkJade | SkJade v1.4.3 has been successfully enabled in 0.07 seconds (71ms)
Server threadEx[2812월2024 12:44:58.214] [Server thread/INFO] [ItemsAdder/]: Enabling ItemsAdder v4.0.6
Server threadEx[2812월2024 12:44:58.400] [Server thread/INFO] [Minecraft/]: [ItemsAdder] 
                                                   ItemsAdder 4.0.6
  ___  ___        __        __   __   ___  __      LoneLibs 1.0.63
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     ProtocolLib 5.3.0
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Arclight arclight-1.21.1-1.0.0-SNAPSHOT-6aa268a (MC: 1.21.1)
                                                   Build Date: 2024-12-19_14.54.20
                                                   Java Version: 21.0.1
                                                   OS: Windows 11 10.0
Server threadEx[2812월2024 12:44:58.413] [Server thread/INFO] [Minecraft/]: [ItemsAdder] Registered Skript API
Server threadEx[2812월2024 12:44:58.416] [Server thread/INFO] [Minecraft/]: [ItemsAdder] Registered Citizens NPC Trait: customentity
Server threadEx[2812월2024 12:44:58.500] [Server thread/WARN] [Minecraft/]: [ItemsAdder] 'allow_other_plugins_resourcepacks' enabled. Do not report resourcepack loading issues.
Server threadEx[2812월2024 12:44:58.519] [Server thread/INFO] [Minecraft/]: [ItemsAdder] [Host] Starting self-host webserver on port: 8163
Server threadEx[2812월2024 12:44:58.918] [Server thread/INFO] [Minecraft/]: [ItemsAdder] [Pack] Extracting internal contents from .jar
Server threadEx[2812월2024 12:44:58.983] [Server thread/INFO] [Minecraft/]: [ItemsAdder] [Pack] Done extracting internal contents from .jar
Server threadEx[2812월2024 12:44:59.891] [Server thread/ERROR] [Minecraft/]: [ItemsAdder] [Items] 'iawearables:cigar'. Error: 'max_durability' must be > 0. File: /contents/iawearables/configs/items.yml
Server threadEx[2812월2024 12:45:00.231] [Server thread/INFO] [PermSk/]: Enabling PermSk v1.1.1-LEGACY-1.16
Server threadEx[2812월2024 12:45:00.233] [Server thread/INFO] [Console/]: [PermSk] Checking for update...
Server threadEx[2812월2024 12:45:00.475] [Server thread/INFO] [Console/]: [PermSk] You are using an legacy Version of PermSk!
Server threadEx[2812월2024 12:45:00.480] [Server thread/INFO] [Console/]: [PermSk] [Skript] Dependency found, loading Skript syntaxes
Server threadEx[2812월2024 12:45:00.483] [Server thread/INFO] [Console/]: [PermSk] [Vault] Dependency found, Vault syntaxes loaded
Server threadEx[2812월2024 12:45:00.491] [Server thread/INFO] [Console/]: [PermSk] [LuckPerms] Dependency found, permission plugin syntaxes loaded
Server threadEx[2812월2024 12:45:00.491] [Server thread/INFO] [Console/]: [PermSk] Add-on loaded successfully
Server threadEx[2812월2024 12:45:00.496] [Server thread/INFO] [Console/]: [PermSk] [bStats] Sucessfully loaded
Server threadEx[2812월2024 12:45:00.498] [Server thread/INFO] [Skellett/]: Enabling Skellett v2.0.10
Server threadEx[2812월2024 12:45:00.644] [Server thread/INFO] [Console/]: [Skellett] Main.PrepareEnchant syntax is for 1.11.2+ spigot versions!
Server threadEx[2812월2024 12:45:00.706] [Server thread/INFO] [Console/]: [Skellett] Syntax.Events.AnvilPrepare syntax is for 1.11.2+ spigot versions!
Server threadEx[2812월2024 12:45:00.706] [Server thread/INFO] [Console/]: [Skellett] Syntax.Events.BrewingFuel syntax is for 1.11.2+ spigot versions!
Server threadEx[2812월2024 12:45:00.715] [Server thread/INFO] [Console/]: [Skellett] Main.PrepareEnchant syntax is for 1.11.2+ spigot versions!
Server threadEx[2812월2024 12:45:00.718] [Server thread/INFO] [Console/]: [Skellett] Syntax.Events.BrewingFuel syntax is for 1.11.2+ spigot versions!
Server threadEx[2812월2024 12:45:00.740] [Server thread/INFO] [Console/]: [Skellett] Main.Maps syntax is for 1.11+ spigot versions!
Server threadEx[2812월2024 12:45:00.743] [Server thread/INFO] [Console/]: [Skellett] ItemCooldown syntax is for 1.11.2+ spigot versions!
Server threadEx[2812월2024 12:45:00.756] [Server thread/INFO] [Console/]: [Skellett] Main.PrepareEnchant syntax is for 1.11.2+ spigot versions!
Server threadEx[2812월2024 12:45:00.756] [Server thread/INFO] [Console/]: [Skellett] CollidableState syntax is for 1.9+ spigot versions!
Server threadEx[2812월2024 12:45:00.782] [Server thread/INFO] [Console/]: [Skellett] SpectralArrow syntax is for 1.10+ spigot versions!
Server threadEx[2812월2024 12:45:00.784] [Server thread/INFO] [Console/]: [Skellett] Syntax.Events.AnvilPrepare syntax is for 1.11.2+ spigot versions!
Server threadEx[2812월2024 12:45:00.789] [Server thread/INFO] [Console/]: [Skellett] Main.PrepareEnchant syntax is for 1.11.2+ spigot versions!
Server threadEx[2812월2024 12:45:00.851] [Server thread/INFO] [Console/]: [Skellett] Registered 26 Effects, 11 Conditions, 59 Expressions and 16 Events
Server threadEx[2812월2024 12:45:00.854] [Server thread/INFO] [skRayFall/]: Enabling skRayFall v1.9.28
Server threadEx[2812월2024 12:45:00.854] [Server thread/INFO] [skRayFall/]: Yay! You are running skRayFall 1.9.28!
Server threadEx[2812월2024 12:45:00.854] [Server thread/INFO] [skRayFall/]: Nathan and Lewis <3 you.
Server threadEx[2812월2024 12:45:00.856] [Server thread/INFO] [skRayFall/]: Cooking Bacon...
Server threadEx[2812월2024 12:45:00.867] [Server thread/INFO] [skRayFall/]: Getting more bacon for the army of citizens...
Server threadEx[2812월2024 12:45:00.888] [Server thread/INFO] [skRayFall/]: Got bacon for the EffectLib particle ninjas!
Server threadEx[2812월2024 12:45:00.896] [Server thread/INFO] [skRayFall/]: No Votifier Found! *Checks oven for finished bacon*
Server threadEx[2812월2024 12:45:00.922] [Server thread/INFO] [skRayFall/]: Enabling general 1.8+ bacon!
Server threadEx[2812월2024 12:45:00.925] [Server thread/INFO] [skRayFall/]: Getting the general 1.9+ bacon!
Server threadEx[2812월2024 12:45:00.933] [Server thread/INFO] [skRayFall/]: Getting the extra special 1.17+ bacon!
Server threadEx[2812월2024 12:45:00.969] [Server thread/INFO] [skRayFall/]: Bacon is ready!
Server threadEx[2812월2024 12:45:01.005] [Server thread/INFO] [Minecraft/]: Server permissions file permissions.yml is empty, ignoring it
Server threadEx[2812월2024 12:45:01.027] [Server thread/INFO] [PlaceholderAPI/]: Placeholder expansion registration initializing...
Server threadEx[2812월2024 12:45:01.031] [Server thread/INFO] [Console/]: 0 placeholder hook(s) registered!
Server threadEx[2812월2024 12:45:01.031] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for dimension minecraft:overworld
Server threadEx[2812월2024 12:45:01.726] [Worker-Main-1/INFO] [net.minecraft.class_3951/]: Preparing spawn area: 0%
Worker-Main-1Ex[2812월2024 12:45:01.726] [Worker-Main-1/INFO] [net.minecraft.class_3951/]: Preparing spawn area: 0%
Worker-Main-1Ex[2812월2024 12:45:02.166] [Server thread/INFO] [net.minecraft.class_3951/]: Time elapsed: 1134 ms
Server threadEx[2812월2024 12:45:02.166] [Server thread/INFO] [net.minecraft.class_3176/]: Done (16.423s)! For help, type "help"
Server threadEx[2812월2024 12:45:02.187] [Server thread/INFO] [Radical Cobblemon Trainers/]: Data pack initialized: rctmod
Server threadEx[2812월2024 12:45:03.242] [Server thread/INFO] [Radical Cobblemon Trainers/]: Registered 741 trainers
Server threadEx[2812월2024 12:45:03.280] [Server thread/INFO] [dev.zanckor.cobblemonridingfabric.CobblemonRidingFabric/]: Cobblemon pokemon ride config file already exists at C:\Users\user\Desktop\포켓몬 패브릭1.21.1\.\world\.\pokemonRideConfig.json
Server threadEx[2812월2024 12:45:03.298] [VoiceChatServerThread/INFO] [voicechat/]: [voicechat] Voice chat server started at port 24454
VoiceChatServerThreadEx[2812월2024 12:45:03.335] [Server thread/INFO] [Console/]: [Skript] Loading variables...
Server threadEx[2812월2024 12:45:03.360] [Server thread/INFO] [Console/]: [Skript] Loaded 58 variables in 0.0 seconds
Server threadEx[2812월2024 12:45:03.397] [Server thread/WARN] [skript-reflect/]: Loaded class dev.lone.itemsadder.api.ItemsAdder from ItemsAdder v4.0.6 which is not a depend or softdepend of this plugin.
Server threadEx[2812월2024 12:45:05.235] [Server thread/INFO] [Console/]: [Skript] All scripts loaded without errors.
Server threadEx[2812월2024 12:45:05.235] [Server thread/INFO] [Console/]: [Skript] Loaded 3 scripts with a total of 28 structures in 1.87 seconds
Server threadEx[2812월2024 12:45:05.235] [Server thread/INFO] [Console/]: [Skript] Finished loading.
Server threadEx[2812월2024 12:45:05.238] [Server thread/INFO] [Essentials/]: Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
Server threadEx[2812월2024 12:45:05.256] [Craft Scheduler Thread - 2/INFO] [Minecraft/]: [ItemsAdder] [License] Store product licensed to: mele0417 (528726)
Craft Scheduler Thread - 2Ex[2812월2024 12:45:05.258] [Craft Scheduler Thread - 1/INFO] [Essentials/]: 버전 정보를 가져오는중...
Craft Scheduler Thread - 1Ex[2812월2024 12:45:05.274] [Craft Scheduler Thread - 4/ERROR] [Minecraft/]: [ItemsAdder] [Recipes] 'restoration_table'. Replacement item not found 'alchemy_candles'. File: /contents/iasurvival/configs/machinery/restoration_table.yml
Craft Scheduler Thread - 4Ex[2812월2024 12:45:05.292] [Craft Scheduler Thread - 4/INFO] [Minecraft/]: [ItemsAdder] [Recipes] 'cigar'. Result item 'iawearables:cigar' not found. File /contents/iawearables/configs/recipes.yml
Craft Scheduler Thread - 4Ex[2812월2024 12:45:05.293] [Craft Scheduler Thread - 4/INFO] [Minecraft/]: [ItemsAdder] [Recipes] 'carton_box'. Result item 'iageneric:carton_box' not found. File /contents/iageneric/configs/items.yml
Craft Scheduler Thread - 4Ex[2812월2024 12:45:05.535] [Server thread/INFO] [net.minecraft.class_2983/]: [STDOUT]: Lithium Cached BlockState Flags are disabled!
Server threadEx[2812월2024 12:45:05.581] [Craft Scheduler Thread - 4/INFO] [Minecraft/]: [ItemsAdder] Loaded 312 items
Craft Scheduler Thread - 4Ex[2812월2024 12:45:05.583] [Craft Scheduler Thread - 4/INFO] [Minecraft/]: [ItemsAdder] Used 0/188 REAL block IDs
Craft Scheduler Thread - 4Ex[2812월2024 12:45:05.583] [Craft Scheduler Thread - 4/INFO] [Minecraft/]: [ItemsAdder] Used 29/750 REAL_NOTE block IDs
Craft Scheduler Thread - 4Ex[2812월2024 12:45:05.583] [Craft Scheduler Thread - 4/INFO] [Minecraft/]: [ItemsAdder] Used 0/63 REAL_TRANSPARENT block IDs
Craft Scheduler Thread - 4Ex[2812월2024 12:45:05.583] [Craft Scheduler Thread - 4/INFO] [Minecraft/]: [ItemsAdder] Used 0/127 REAL_WIRE block IDs
Craft Scheduler Thread - 4Ex[2812월2024 12:45:05.583] [Craft Scheduler Thread - 4/INFO] [Minecraft/]: [ItemsAdder] Used 0/14 FIRE block IDs
Craft Scheduler Thread - 4Ex[2812월2024 12:45:05.585] [Craft Scheduler Thread - 4/INFO] [Minecraft/]: [ItemsAdder] Used 596/6608 font_images
Craft Scheduler Thread - 4Ex[2812월2024 12:45:05.666] [Craft Scheduler Thread - 4/INFO] [Minecraft/]: [ItemsAdder] [Init] Loaded 28 categories
Craft Scheduler Thread - 4Ex[2812월2024 12:45:05.684] [Server thread/INFO] [Minecraft/]: [Citizens] Loaded 1 NPCs.
Server threadEx[2812월2024 12:45:05.684] [Craft Scheduler Thread - 4/INFO] [Minecraft/]: [ItemsAdder] [Init] Loaded successfully.
Craft Scheduler Thread - 4Ex[2812월2024 12:45:05.703] [Craft Scheduler Thread - 3/INFO] [Vault/]: Checking for Updates ... 
Craft Scheduler Thread - 3Ex[2812월2024 12:45:05.710] [Craft Scheduler Thread - 3/INFO] [Vault/]: No new version available
Craft Scheduler Thread - 3Ex[2812월2024 12:45:05.757] [Craft Scheduler Thread - 4/INFO] [Minecraft/]: [ItemsAdder] [Pack] Resourcepack URL (self-host): http://121.171.230.146:8163/generated.zip
Craft Scheduler Thread - 4Ex[2812월2024 12:45:05.866] [Server thread/ERROR] [Minecraft/]: [ItemsAdder] [Recipes] 'recipes.crafting_table.cassiterite' (Crafting) already exists in file: /contents/iasurvival/configs/ores/recipes/recipe_cassiterite.yml
Server threadEx[2812월2024 12:45:05.866] [Server thread/ERROR] [Minecraft/]: [ItemsAdder] [Recipes] Registering it anyway with new name: iasurvival:cassiterite_0_recipes_minerals_blocks
Server threadEx[2812월2024 12:45:05.907] [Server thread/INFO] [PlaceholderAPI/]: Successfully registered internal expansion: img [1.0.1]
Server threadEx[2812월2024 12:45:05.908] [Server thread/INFO] [PlaceholderAPI/]: Successfully registered internal expansion: iaplayerstat [1.0.1]
Server threadEx[2812월2024 12:45:05.909] [Server thread/INFO] [Minecraft/]: [ItemsAdder] Reloading ItemsAdder Custom Entities Citizens NPCs...
Server threadEx[2812월2024 12:45:05.913] [Server thread/INFO] [Minecraft/]: [ItemsAdder] Reloaded 0 ItemsAdder Custom Entities Citizens NPCs.
Server threadEx[2812월2024 12:45:06.184] [Server thread/WARN] [net.minecraft.server.MinecraftServer/]: Can't keep up! Is the server overloaded? Running 2891ms or 57 ticks behind
Server threadEx[2812월2024 12:45:39.131] [User Authenticator #1/INFO] [net.minecraft.class_3248/]: UUID of player meleu is 6c4ea5bd-6e62-488d-b5d8-b53bdb832f26
User Authenticator #1Ex[2812월2024 12:45:44.487] [Server thread/INFO] [net.minecraft.class_3324/]: meleu[/121.171.230.146:7794] logged in with entity id 759 at (2.5321661317229083, 92.87779868558239, 831.6833826492625)
Server threadEx[2812월2024 12:45:45.110] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: meleu joined the game
Server threadEx[2812월2024 12:45:45.190] [Server thread/INFO] [Radical Cobblemon Trainers/]: Registered trainer player: meleu
Server threadEx[2812월2024 12:45:46.017] [Server thread/INFO] [voicechat/]: [voicechat] Received secret request of meleu (18)
Server threadEx[2812월2024 12:45:46.019] [Server thread/INFO] [voicechat/]: [voicechat] Sent secret to meleu
Server threadEx[2812월2024 12:45:46.504] [Server thread/ERROR] [net.minecraft.server.MinecraftServer/]: Encountered an unexpected exception
Server threadEx net.minecraft.class_148: Ticking entity
    at knot/net.minecraft.server.MinecraftServer.method_3813(MinecraftServerMixin.java:1025) ~[server-intermediary.jar:?]
    at knot/net.minecraft.class_3176.method_3813(DedicatedServerMixin_Vanilla.java:299) ~[server-intermediary.jar:?]
    at knot/net.minecraft.server.MinecraftServer.method_3748(MinecraftServerMixin.java:912) ~[server-intermediary.jar:?]
    at knot/net.minecraft.server.MinecraftServer.method_29741(MinecraftServerMixin.java:697) ~[server-intermediary.jar:?]
    at knot/net.minecraft.server.MinecraftServer.method_29739(MinecraftServerMixin.java:281) ~[server-intermediary.jar:?]
    at java.base/java.lang.Thread.run(Thread.java:1583) [?:?]
Caused by: java.lang.NoSuchMethodError: 'void net.citizensnpcs.nms.v1_21_R1.entity.EntityHumanNPC.detectEquipmentUpdatesPublic()'
    at net.citizensnpcs.nms.v1_21_R1.entity.EntityHumanNPC.method_5773(EntityHumanNPC.java:370) ~[?:?]
    at knot/net.minecraft.class_3218.method_18762(ServerLevelMixin.java:770) ~[server-intermediary.jar:?]
    at knot/net.minecraft.class_1937.method_18472(LevelMixin.java:498) ~[server-intermediary.jar:?]
    at knot/net.minecraft.class_3218.method_31420(ServerLevelMixin.java:408) ~[server-intermediary.jar:?]
    at knot/net.minecraft.class_5574.method_31791(class_5574.java:54) ~[server-intermediary.jar:?]
    at knot/net.minecraft.class_3218.method_18765(ServerLevelMixin.java:372) ~[server-intermediary.jar:?]
    at knot/net.minecraft.server.MinecraftServer.method_3813(MinecraftServerMixin.java:1021) ~[server-intermediary.jar:?]
    ... 5 more
[2812월2024 12:45:46.516] [Server thread/ERROR] [net.minecraft.server.MinecraftServer/]: This crash report has been saved to: C:\Users\user\Desktop\포켓몬 패브릭1.21.1\crash-reports\crash-2024-12-28_12.45.46-server.txt
Server threadEx[2812월2024 12:45:46.521] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Stopping server
Server threadEx[2812월2024 12:45:46.522] [Server thread/INFO] [skRayFall/]: Disabling skRayFall v1.9.28
Server threadEx[2812월2024 12:45:46.546] [Server thread/INFO] [skRayFall/]: Bacon has been eaten. Make some more soon!
Server threadEx[2812월2024 12:45:46.555] [Server thread/INFO] [Skellett/]: Disabling Skellett v2.0.10
Server threadEx[2812월2024 12:45:46.584] [Server thread/INFO] [PermSk/]: Disabling PermSk v1.1.1-LEGACY-1.16
Server threadEx[2812월2024 12:45:46.585] [Server thread/INFO] [Console/]: [PermSk] Unloaded successfully
Server threadEx[2812월2024 12:45:46.586] [Server thread/INFO] [ItemsAdder/]: Disabling ItemsAdder v4.0.6
Server threadEx[2812월2024 12:45:46.609] [pool-17-thread-1/INFO] [Minecraft/]: [ItemsAdder] [Host] Stopped self-host webserver on port: 8163
pool-17-thread-1Ex[2812월2024 12:45:46.635] [Server thread/INFO] [SkJade/]: Disabling SkJade v1.4.3
Server threadEx[2812월2024 12:45:46.645] [Server thread/INFO] [SkQuery/]: Disabling SkQuery v4.1.10
Server threadEx[2812월2024 12:45:46.646] [Server thread/INFO] [BetterEconomy/]: Disabling BetterEconomy v3.1
Server threadEx[2812월2024 12:45:46.652] [Server thread/INFO] [skUtilities/]: Disabling skUtilities v0.9.2
Server threadEx[2812월2024 12:45:46.654] [Server thread/INFO] [skript-reflect/]: Disabling skript-reflect v2.5.1
Server threadEx[2812월2024 12:45:46.655] [Server thread/INFO] [VTV1/]: Disabling VTV1 v1.4.1
Server threadEx[2812월2024 12:45:46.661] [Server thread/INFO] [VTV1/]: Saving variable data...
Server threadEx[2812월2024 12:45:46.664] [Server thread/INFO] [VTV1/]: 0 objects saved.
Server threadEx[2812월2024 12:45:46.667] [Server thread/INFO] [VTV1/]: Saving WalkTrigger data...
Server threadEx[2812월2024 12:45:46.670] [Server thread/INFO] [VTV1/]: 0 WalkTriggers saved.
Server threadEx[2812월2024 12:45:46.673] [Server thread/INFO] [VTV1/]: Saving ClickTrigger data...
Server threadEx[2812월2024 12:45:46.676] [Server thread/INFO] [VTV1/]: 0 ClickTriggers saved.
Server threadEx[2812월2024 12:45:46.679] [Server thread/INFO] [VTV1/]: Saving EventTriggers data...
Server threadEx[2812월2024 12:45:46.682] [Server thread/INFO] [VTV1/]: 0 EventTriggers saved.
Server threadEx[2812월2024 12:45:46.685] [Server thread/INFO] [VTV1/]: Saving AreaTriggers data...
Server threadEx[2812월2024 12:45:46.688] [Server thread/INFO] [VTV1/]: 0 AreaTriggers saved.
Server threadEx[2812월2024 12:45:46.693] [Server thread/INFO] [VTV1/]: Saving CommandTriggers data...
Server threadEx[2812월2024 12:45:46.696] [Server thread/INFO] [VTV1/]: 0 CommandTriggers saved.
Server threadEx[2812월2024 12:45:46.699] [Server thread/INFO] [SkEtcR/]: Disabling SkEtcR v4.0
Server threadEx[2812월2024 12:45:46.700] [Server thread/INFO] [Essentials/]: Disabling Essentials v2.21.0-dev+151-f2af952
Server threadEx[2812월2024 12:45:46.700] [Server thread/INFO] [Vault/]: [Economy] Essentials Economy unhooked.
Server threadEx[2812월2024 12:45:46.701] [Server thread/ERROR] [Essentials/]: 지금 서버를 리로드하고 있을 가능성이 높습니다. 만약 그렇다면, 왜 자신을 미워하는 거죠? /reload 를 사용하는 것은 EssentialsX 팀의 지원이 필요하지 않습니다.
Server threadEx[2812월2024 12:45:46.715] [Server thread/INFO] [SkBee/]: Disabling SkBee v3.6.6
Server threadEx[2812월2024 12:45:46.719] [Server thread/INFO] [Skript/]: Disabling Skript v2.9.5
Server threadEx[2812월2024 12:45:46.799] [Server thread/INFO] [Citizens/]: Disabling Citizens v2.0.35-SNAPSHOT (build 3583)
Server threadEx[2812월2024 12:45:46.811] [Server thread/INFO] [ProtocolLib/]: Disabling ProtocolLib v5.3.0
Server threadEx[2812월2024 12:45:46.818] [Server thread/INFO] [LoneLibs/]: Disabling LoneLibs v1.0.63
Server threadEx[2812월2024 12:45:46.819] [Server thread/INFO] [Vault/]: Disabling Vault v1.7.3-b131
Server threadEx[2812월2024 12:45:46.820] [Server thread/INFO] [PlaceholderAPI/]: Disabling PlaceholderAPI v2.11.6
Server threadEx[2812월2024 12:45:46.821] [Server thread/INFO] [LuckPerms/]: Disabling LuckPerms v5.4.131
Server threadEx[2812월2024 12:45:46.821] [Server thread/INFO] [LuckPerms/]: Starting shutdown process...
Server threadEx[2812월2024 12:45:46.831] [Server thread/INFO] [LuckPerms/]: Closing storage...
Server threadEx[2812월2024 12:45:46.865] [Server thread/INFO] [LuckPerms/]: Goodbye!
Server threadEx[2812월2024 12:45:46.867] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving players
Server threadEx[2812월2024 12:45:46.891] [Server thread/INFO] [net.minecraft.class_3244/]: meleu lost connection: Server closed
Server threadEx[2812월2024 12:45:46.891] [Server thread/INFO] [Radical Cobblemon Trainers/]: Unregistered trainer player: meleu
Server threadEx[2812월2024 12:45:46.912] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: meleu left the game.
Server threadEx[2812월2024 12:45:46.913] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving worlds
Server threadEx[2812월2024 12:45:47.240] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[Cobbled Farms]'/minecraft:overworld
Server threadEx[2812월2024 12:45:47.357] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[Cobbled Farms/DIM-1]'/minecraft:the_nether
Server threadEx[2812월2024 12:45:47.365] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[Cobbled Farms/DIM1]'/minecraft:the_end
Server threadEx[2812월2024 12:45:52.406] [Exit Thread/INFO] [Arclight/]: 13 threads not shutting down correctly, force exiting
Exit ThreadEx