-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathPlugins.json
2895 lines (2895 loc) · 101 KB
/
Plugins.json
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
[
{
"Name": "CaiPacketDebug",
"Version": "2025.1.25.2",
"Author": "Cai",
"Description": {
"en-US": "Plugin for debugging data packets~",
"de-DE": "用于调试数据包的插件捏~",
"it-IT": "用于调试数据包的插件捏~",
"fr-FR": "用于调试数据包的插件捏~",
"es-ES": "用于调试数据包的插件捏~",
"ru-RU": "用于调试数据包的插件捏~",
"zh-CN": "用于调试数据包的插件捏~",
"pt-BR": "用于调试数据包的插件捏~",
"pl-PL": "用于调试数据包的插件捏~"
},
"AssemblyName": "CaiPacketDebug",
"Path": "CaiPacketDebug.dll",
"Dependencies": [
"LazyAPI",
"TrProtocol"
],
"HotReload": true
},
{
"Name": "Platform",
"Version": "1.1.0.5",
"Author": "Cai",
"Description": {
"en-US": "Determine player device",
"de-DE": "判断玩家设备",
"it-IT": "判断玩家设备",
"fr-FR": "判断玩家设备",
"es-ES": "判断玩家设备",
"ru-RU": "判断玩家设备",
"zh-CN": "判断玩家设备",
"pt-BR": "判断玩家设备",
"pl-PL": "判断玩家设备"
},
"AssemblyName": "Platform",
"Path": "Platform.dll",
"Dependencies": [],
"HotReload": true
},
{
"Name": "Chireiden.TShock.Omni",
"Version": "0.0.200.0",
"Author": "SGKoishi",
"Description": {
"en-US": "Yet another misc plugin for TShock",
"de-DE": "Yet another misc plugin for TShock",
"it-IT": "Yet another misc plugin for TShock",
"fr-FR": "Yet another misc plugin for TShock",
"es-ES": "Yet another misc plugin for TShock",
"ru-RU": "Yet another misc plugin for TShock",
"zh-CN": "Yet another misc plugin for TShock",
"pt-BR": "Yet another misc plugin for TShock",
"pl-PL": "Yet another misc plugin for TShock"
},
"AssemblyName": "Chireiden.TShock.Omni",
"Path": "Chireiden.TShock.Omni.dll",
"Dependencies": [],
"HotReload": false
},
{
"Name": "Crossplay",
"Version": "2.2",
"Author": "Moneylover3246",
"Description": {
"en-US": "Enables crossplay for terraria",
"de-DE": "Enables crossplay for terraria",
"it-IT": "Enables crossplay for terraria",
"fr-FR": "Enables crossplay for terraria",
"es-ES": "Enables crossplay for terraria",
"ru-RU": "Enables crossplay for terraria",
"zh-CN": "Enables crossplay for terraria",
"pt-BR": "Enables crossplay for terraria",
"pl-PL": "Enables crossplay for terraria"
},
"AssemblyName": "Crossplay",
"Path": "Crossplay.dll",
"Dependencies": [],
"HotReload": true
},
{
"Name": "AdditionalPylons",
"Version": "1.0.7",
"Author": "Stealownz,肝帝熙恩优化1449",
"Description": {
"en-US": "Customize the number of pylon that can be placed, at least one, and all of them ignore the environment",
"de-DE": "自定义晶塔可放置的数量,至少为一个,且所有晶塔都无视环境",
"it-IT": "自定义晶塔可放置的数量,至少为一个,且所有晶塔都无视环境",
"fr-FR": "自定义晶塔可放置的数量,至少为一个,且所有晶塔都无视环境",
"es-ES": "自定义晶塔可放置的数量,至少为一个,且所有晶塔都无视环境",
"ru-RU": "自定义晶塔可放置的数量,至少为一个,且所有晶塔都无视环境",
"zh-CN": "自定义晶塔可放置的数量,至少为一个,且所有晶塔都无视环境",
"pt-BR": "自定义晶塔可放置的数量,至少为一个,且所有晶塔都无视环境",
"pl-PL": "自定义晶塔可放置的数量,至少为一个,且所有晶塔都无视环境"
},
"AssemblyName": "AdditionalPylons",
"Path": "AdditionalPylons.dll",
"Dependencies": [
"LazyAPI"
],
"HotReload": true
},
{
"Name": "AIChatPlugin",
"Version": "2025.1.13",
"Author": "ZJLLL114514",
"Description": {
"en-US": "A plugin provides Ai chat",
"de-DE": "一个提供AI对话的插件",
"it-IT": "一个提供AI对话的插件",
"fr-FR": "一个提供AI对话的插件",
"es-ES": "一个提供AI对话的插件",
"ru-RU": "一个提供AI对话的插件",
"zh-CN": "一个提供AI对话的插件",
"pt-BR": "一个提供AI对话的插件",
"pl-PL": "一个提供AI对话的插件"
},
"AssemblyName": "AIChatPlugin",
"Path": "AIChatPlugin.dll",
"Dependencies": [],
"HotReload": true
},
{
"Name": "AnnouncementBoxPlus",
"Version": "1.0.5",
"Author": "Cai",
"Description": {
"en-US": "Optimize announcement box",
"de-DE": "优化广播盒",
"it-IT": "优化广播盒",
"fr-FR": "优化广播盒",
"es-ES": "优化广播盒",
"ru-RU": "优化广播盒",
"zh-CN": "优化广播盒",
"pt-BR": "优化广播盒",
"pl-PL": "优化广播盒"
},
"AssemblyName": "AnnouncementBoxPlus",
"Path": "AnnouncementBoxPlus.dll",
"Dependencies": [
"LazyAPI"
],
"HotReload": true
},
{
"Name": "AutoAirItem",
"Version": "1.2.7",
"Author": "羽学",
"Description": {
"en-US": "Automatic trash can helps players clean up their own trash",
"de-DE": "自动垃圾桶帮助玩家清理自身垃圾",
"it-IT": "自动垃圾桶帮助玩家清理自身垃圾",
"fr-FR": "自动垃圾桶帮助玩家清理自身垃圾",
"es-ES": "自动垃圾桶帮助玩家清理自身垃圾",
"ru-RU": "自动垃圾桶帮助玩家清理自身垃圾",
"zh-CN": "自动垃圾桶帮助玩家清理自身垃圾",
"pt-BR": "自动垃圾桶帮助玩家清理自身垃圾",
"pl-PL": "自动垃圾桶帮助玩家清理自身垃圾"
},
"AssemblyName": "AutoAirItem",
"Path": "AutoAirItem.dll",
"Dependencies": [
"LazyAPI"
],
"HotReload": true
},
{
"Name": "AutoBroadcast",
"Version": "1.1.1",
"Author": "Scavenger,Cai",
"Description": {
"en-US": "Automatic broadcast plugin",
"de-DE": "自动广播插件",
"it-IT": "自动广播插件",
"fr-FR": "自动广播插件",
"es-ES": "自动广播插件",
"ru-RU": "自动广播插件",
"zh-CN": "自动广播插件",
"pt-BR": "自动广播插件",
"pl-PL": "自动广播插件"
},
"AssemblyName": "AutoBroadcast",
"Path": "AutoBroadcast.dll",
"Dependencies": [
"LazyAPI"
],
"HotReload": true
},
{
"Name": "AutoClear",
"Version": "1.0.8",
"Author": "大豆子[Mute适配1447],肝帝熙恩更新",
"Description": {
"en-US": "Smart sweeper",
"de-DE": "智能扫地机",
"it-IT": "智能扫地机",
"fr-FR": "智能扫地机",
"es-ES": "智能扫地机",
"ru-RU": "智能扫地机",
"zh-CN": "智能扫地机",
"pt-BR": "智能扫地机",
"pl-PL": "智能扫地机"
},
"AssemblyName": "AutoClear",
"Path": "AutoClear.dll",
"Dependencies": [
"LazyAPI"
],
"HotReload": true
},
{
"Name": "AutoFish",
"Version": "1.3.6",
"Author": "羽学 少司命",
"Description": {
"en-US": "Auto Fishing",
"de-DE": "自动钓鱼",
"it-IT": "自动钓鱼",
"fr-FR": "自动钓鱼",
"es-ES": "自动钓鱼",
"ru-RU": "自动钓鱼",
"zh-CN": "自动钓鱼",
"pt-BR": "自动钓鱼",
"pl-PL": "自动钓鱼"
},
"AssemblyName": "AutoFish",
"Path": "AutoFish.dll",
"Dependencies": [
"LazyAPI"
],
"HotReload": true
},
{
"Name": "AutoPluginManager",
"Version": "2.0.3.4",
"Author": "少司命,Cai,LaoSparrow",
"Description": {
"en-US": "Automatically update your plugins!",
"de-DE": "自动更新你的插件!",
"it-IT": "自动更新你的插件!",
"fr-FR": "自动更新你的插件!",
"es-ES": "自动更新你的插件!",
"ru-RU": "自动更新你的插件!",
"zh-CN": "自动更新你的插件!",
"pt-BR": "自动更新你的插件!",
"pl-PL": "自动更新你的插件!"
},
"AssemblyName": "AutoPluginManager",
"Path": "AutoPluginManager.dll",
"Dependencies": [],
"HotReload": true
},
{
"Name": "AutoReset",
"Version": "2024.12.18.3",
"Author": "cc04 & Leader & 棱镜 & Cai & 肝帝熙恩",
"Description": {
"en-US": "Full automatic plugin reset",
"de-DE": "完全自动重置插件",
"it-IT": "完全自动重置插件",
"fr-FR": "完全自动重置插件",
"es-ES": "完全自动重置插件",
"ru-RU": "完全自动重置插件",
"zh-CN": "完全自动重置插件",
"pt-BR": "完全自动重置插件",
"pl-PL": "完全自动重置插件"
},
"AssemblyName": "AutoReset",
"Path": "AutoReset.dll",
"Dependencies": [
"LazyAPI"
],
"HotReload": true
},
{
"Name": "AutoStoreItems",
"Version": "1.3.5",
"Author": "羽学 cmgy雱",
"Description": {
"en-US": "Automatically store specified items into storage space based on configured item IDs.",
"de-DE": "持有指定物品根据配置物品ID自动存入存储空间",
"it-IT": "持有指定物品根据配置物品ID自动存入存储空间",
"fr-FR": "持有指定物品根据配置物品ID自动存入存储空间",
"es-ES": "持有指定物品根据配置物品ID自动存入存储空间",
"ru-RU": "持有指定物品根据配置物品ID自动存入存储空间",
"zh-CN": "持有指定物品根据配置物品ID自动存入存储空间",
"pt-BR": "持有指定物品根据配置物品ID自动存入存储空间",
"pl-PL": "持有指定物品根据配置物品ID自动存入存储空间"
},
"AssemblyName": "AutoStoreItems",
"Path": "AutoStoreItems.dll",
"Dependencies": [
"LazyAPI"
],
"HotReload": true
},
{
"Name": "AutoTeam",
"Version": "2.4.8",
"Author": "十七改,肝帝熙恩改",
"Description": {
"en-US": "Automatically assign a group of players to a specific team",
"de-DE": "自动分配一个组的玩家到特定队伍",
"it-IT": "自动分配一个组的玩家到特定队伍",
"fr-FR": "自动分配一个组的玩家到特定队伍",
"es-ES": "自动分配一个组的玩家到特定队伍",
"ru-RU": "自动分配一个组的玩家到特定队伍",
"zh-CN": "自动分配一个组的玩家到特定队伍",
"pt-BR": "自动分配一个组的玩家到特定队伍",
"pl-PL": "自动分配一个组的玩家到特定队伍"
},
"AssemblyName": "AutoTeam",
"Path": "AutoTeam.dll",
"Dependencies": [
"LazyAPI"
],
"HotReload": true
},
{
"Name": "Back",
"Version": "1.0.0.9",
"Author": "Megghy,熙恩改",
"Description": {
"en-US": "Allows the player to teleport back to the point of death",
"de-DE": "允许玩家传送回死亡地点",
"it-IT": "允许玩家传送回死亡地点",
"fr-FR": "允许玩家传送回死亡地点",
"es-ES": "允许玩家传送回死亡地点",
"ru-RU": "允许玩家传送回死亡地点",
"zh-CN": "允许玩家传送回死亡地点",
"pt-BR": "允许玩家传送回死亡地点",
"pl-PL": "允许玩家传送回死亡地点"
},
"AssemblyName": "Back",
"Path": "Back.dll",
"Dependencies": [
"LazyAPI"
],
"HotReload": true
},
{
"Name": "BagPing",
"Version": "1.0.5",
"Author": "Cai",
"Description": {
"en-US": "Mark dropped treasure bags on the minimap",
"de-DE": "在小地图上标记掉落的宝藏袋",
"it-IT": "在小地图上标记掉落的宝藏袋",
"fr-FR": "在小地图上标记掉落的宝藏袋",
"es-ES": "在小地图上标记掉落的宝藏袋",
"ru-RU": "在小地图上标记掉落的宝藏袋",
"zh-CN": "在小地图上标记掉落的宝藏袋",
"pt-BR": "在小地图上标记掉落的宝藏袋",
"pl-PL": "在小地图上标记掉落的宝藏袋"
},
"AssemblyName": "BagPing",
"Path": "BagPing.dll",
"Dependencies": [],
"HotReload": true
},
{
"Name": "BanNpc",
"Version": "1.0.0.6",
"Author": "Patrikk,GK 改良",
"Description": {
"en-US": "Prohibit the appearance of specified monsters",
"de-DE": "禁止指定怪物的出没",
"it-IT": "禁止指定怪物的出没",
"fr-FR": "禁止指定怪物的出没",
"es-ES": "禁止指定怪物的出没",
"ru-RU": "禁止指定怪物的出没",
"zh-CN": "禁止指定怪物的出没",
"pt-BR": "禁止指定怪物的出没",
"pl-PL": "禁止指定怪物的出没"
},
"AssemblyName": "BanNpc",
"Path": "BanNpc.dll",
"Dependencies": [
"LazyAPI"
],
"HotReload": true
},
{
"Name": "BedSet",
"Version": "1.0.0.6",
"Author": "cmgy",
"Description": {
"en-US": "",
"de-DE": "",
"it-IT": "",
"fr-FR": "",
"es-ES": "",
"ru-RU": "",
"zh-CN": "",
"pt-BR": "",
"pl-PL": ""
},
"AssemblyName": "BedSet",
"Path": "BedSet.dll",
"Dependencies": [
"LazyAPI"
],
"HotReload": true
},
{
"Name": "BetterWhitelist",
"Version": "2.6.4",
"Author": "豆沙,肝帝熙恩、Cai修改",
"Description": {
"en-US": "Whitelist players by checking the name of the player",
"de-DE": "Whitelist players by checking the name of the player",
"it-IT": "Whitelist players by checking the name of the player",
"fr-FR": "Whitelist players by checking the name of the player",
"es-ES": "Whitelist players by checking the name of the player",
"ru-RU": "Whitelist players by checking the name of the player",
"zh-CN": "Whitelist players by checking the name of the player",
"pt-BR": "Whitelist players by checking the name of the player",
"pl-PL": "Whitelist players by checking the name of the player"
},
"AssemblyName": "BetterWhitelist",
"Path": "BetterWhitelist.dll",
"Dependencies": [
"LazyAPI"
],
"HotReload": true
},
{
"Name": "BridgeBuilder",
"Version": "1.1.3",
"Author": "Soofa,肝帝熙恩汉化1449",
"Description": {
"en-US": "Build a bridge!",
"de-DE": "铺桥!",
"it-IT": "铺桥!",
"fr-FR": "铺桥!",
"es-ES": "铺桥!",
"ru-RU": "铺桥!",
"zh-CN": "铺桥!",
"pt-BR": "铺桥!",
"pl-PL": "铺桥!"
},
"AssemblyName": "BridgeBuilder",
"Path": "BridgeBuilder.dll",
"Dependencies": [
"LazyAPI"
],
"HotReload": true
},
{
"Name": "BuildMaster",
"Version": "1.0.7",
"Author": "豆沙 羽学,肝帝熙恩适配",
"Description": {
"en-US": "A minigame that is named BuildMaster",
"de-DE": "A minigame that is named BuildMaster",
"it-IT": "A minigame that is named BuildMaster",
"fr-FR": "A minigame that is named BuildMaster",
"es-ES": "A minigame that is named BuildMaster",
"ru-RU": "A minigame that is named BuildMaster",
"zh-CN": "A minigame that is named BuildMaster",
"pt-BR": "A minigame that is named BuildMaster",
"pl-PL": "A minigame that is named BuildMaster"
},
"AssemblyName": "BuildMaster",
"Path": "BuildMaster.dll",
"Dependencies": [
"MiniGamesAPI"
],
"HotReload": true
},
{
"Name": "CaiBotPlugin",
"Version": "2025.1.29.1",
"Author": "Cai,羽学,西江",
"Description": {
"en-US": "CaiBot机器人的适配插件",
"de-DE": "CaiBot机器人的适配插件",
"it-IT": "CaiBot机器人的适配插件",
"fr-FR": "CaiBot机器人的适配插件",
"es-ES": "CaiBot机器人的适配插件",
"ru-RU": "CaiBot机器人的适配插件",
"zh-CN": "CaiBot机器人的适配插件",
"pt-BR": "CaiBot机器人的适配插件",
"pl-PL": "CaiBot机器人的适配插件"
},
"AssemblyName": "CaiBot",
"Path": "CaiBot.dll",
"Dependencies": [],
"HotReload": true
},
{
"Name": "CaiCustomEmojiCommand",
"Version": "2024.12.18.3",
"Author": "Cai",
"Description": {
"en-US": "Custom emoji for command",
"de-DE": "自定义Emoji表情执行命令",
"it-IT": "自定义Emoji表情执行命令",
"fr-FR": "自定义Emoji表情执行命令",
"es-ES": "自定义Emoji表情执行命令",
"ru-RU": "自定义Emoji表情执行命令",
"zh-CN": "自定义Emoji表情执行命令",
"pt-BR": "自定义Emoji表情执行命令",
"pl-PL": "自定义Emoji表情执行命令"
},
"AssemblyName": "CaiCustomEmojiCommand",
"Path": "CaiCustomEmojiCommand.dll",
"Dependencies": [
"LazyAPI"
],
"HotReload": true
},
{
"Name": "CaiLib",
"Version": "2024.12.18.4",
"Author": "Cai",
"Description": {
"en-US": "CaiLib",
"de-DE": "CaiLib",
"it-IT": "CaiLib",
"fr-FR": "CaiLib",
"es-ES": "CaiLib",
"ru-RU": "CaiLib",
"zh-CN": "CaiLib",
"pt-BR": "CaiLib",
"pl-PL": "CaiLib"
},
"AssemblyName": "CaiLib",
"Path": "CaiLib.dll",
"Dependencies": [
"SixLabors.ImageSharp"
],
"HotReload": true
},
{
"Name": "CaiRewardChest",
"Version": "2025.1.31.1",
"Author": "Cai",
"Description": {
"en-US": "Bonus chest ! !",
"de-DE": "奖励箱!!",
"it-IT": "奖励箱!!",
"fr-FR": "奖励箱!!",
"es-ES": "奖励箱!!",
"ru-RU": "奖励箱!!",
"zh-CN": "奖励箱!!",
"pt-BR": "奖励箱!!",
"pl-PL": "奖励箱!!"
},
"AssemblyName": "CaiRewardChest",
"Path": "CaiRewardChest.dll",
"Dependencies": [
"linq2db",
"LazyAPI"
],
"HotReload": true
},
{
"Name": "CGive",
"Version": "1.0.0.8",
"Author": "Leader",
"Description": {
"en-US": "Give offline",
"de-DE": "离线give",
"it-IT": "离线give",
"fr-FR": "离线give",
"es-ES": "离线give",
"ru-RU": "离线give",
"zh-CN": "离线give",
"pt-BR": "离线give",
"pl-PL": "离线give"
},
"AssemblyName": "CGive",
"Path": "CGive.dll",
"Dependencies": [],
"HotReload": true
},
{
"Name": "Challenger",
"Version": "1.0.1.9",
"Author": "z枳 星夜神花 羽学",
"Description": {
"en-US": "Increase the difficulty of the game for better gaming experience",
"de-DE": "增强游戏难度,更好的游戏体验",
"it-IT": "增强游戏难度,更好的游戏体验",
"fr-FR": "增强游戏难度,更好的游戏体验",
"es-ES": "Aumenta la dificultad del juego para una mejor experiencia de juego.",
"ru-RU": "增强游戏难度,更好的游戏体验",
"zh-CN": "增强游戏难度,更好的游戏体验",
"pt-BR": "增强游戏难度,更好的游戏体验",
"pl-PL": "增强游戏难度,更好的游戏体验"
},
"AssemblyName": "Challenger",
"Path": "Challenger.dll",
"Dependencies": [],
"HotReload": true
},
{
"Name": "Chameleon",
"Version": "1.1.0",
"Author": "mistzzt,肝帝熙恩",
"Description": {
"en-US": "Account system interactive replacement solution",
"de-DE": "账户系统交互替换方案",
"it-IT": "账户系统交互替换方案",
"fr-FR": "账户系统交互替换方案",
"es-ES": "账户系统交互替换方案",
"ru-RU": "账户系统交互替换方案",
"zh-CN": "账户系统交互替换方案",
"pt-BR": "账户系统交互替换方案",
"pl-PL": "账户系统交互替换方案"
},
"AssemblyName": "Chameleon",
"Path": "Chameleon.dll",
"Dependencies": [
"LazyAPI"
],
"HotReload": true
},
{
"Name": "ChattyBridge",
"Version": "1.0.1.3",
"Author": "少司命",
"Description": {
"en-US": "ChattyBridge",
"de-DE": "ChattyBridge",
"it-IT": "ChattyBridge",
"fr-FR": "ChattyBridge",
"es-ES": "ChattyBridge",
"ru-RU": "ChattyBridge",
"zh-CN": "ChattyBridge",
"pt-BR": "ChattyBridge",
"pl-PL": "ChattyBridge"
},
"AssemblyName": "ChattyBridge",
"Path": "ChattyBridge.dll",
"Dependencies": [
"LazyAPI"
],
"HotReload": true
},
{
"Name": "ChestRestore",
"Version": "1.0.9",
"Author": "Cjx重构 ,肝帝熙恩简单修改",
"Description": {
"en-US": "Infinite treasure chest plugin",
"de-DE": "无限宝箱插件",
"it-IT": "无限宝箱插件",
"fr-FR": "无限宝箱插件",
"es-ES": "无限宝箱插件",
"ru-RU": "无限宝箱插件",
"zh-CN": "无限宝箱插件",
"pt-BR": "无限宝箱插件",
"pl-PL": "无限宝箱插件"
},
"AssemblyName": "ChestRestore",
"Path": "ChestRestore.dll",
"Dependencies": [],
"HotReload": true
},
{
"Name": "Chireiden.TShock.Omni.Misc",
"Version": "0.0.200.0",
"Author": "SGKoishi",
"Description": {
"en-US": "Yet another misc plugin for TShock - the miscellaneous part",
"de-DE": "Yet another misc plugin for TShock - the miscellaneous part",
"it-IT": "Yet another misc plugin for TShock - the miscellaneous part",
"fr-FR": "Yet another misc plugin for TShock - the miscellaneous part",
"es-ES": "Yet another misc plugin for TShock - the miscellaneous part",
"ru-RU": "Yet another misc plugin for TShock - the miscellaneous part",
"zh-CN": "Yet another misc plugin for TShock - the miscellaneous part",
"pt-BR": "Yet another misc plugin for TShock - the miscellaneous part",
"pl-PL": "Yet another misc plugin for TShock - the miscellaneous part"
},
"AssemblyName": "Chireiden.TShock.Omni.Misc",
"Path": "Chireiden.TShock.Omni.Misc.dll",
"Dependencies": [
"Chireiden.TShock.Omni"
],
"HotReload": false
},
{
"Name": "CNPCShop",
"Version": "1.0.4",
"Author": "Megghy,肝帝熙恩更新1449",
"Description": {
"en-US": "Customize items sold in NPC shops",
"de-DE": "自定义NPC商店出售的物品",
"it-IT": "自定义NPC商店出售的物品",
"fr-FR": "自定义NPC商店出售的物品",
"es-ES": "自定义NPC商店出售的物品",
"ru-RU": "自定义NPC商店出售的物品",
"zh-CN": "自定义NPC商店出售的物品",
"pt-BR": "自定义NPC商店出售的物品",
"pl-PL": "自定义NPC商店出售的物品"
},
"AssemblyName": "CNPCShop",
"Path": "CNPCShop.dll",
"Dependencies": [],
"HotReload": true
},
{
"Name": "ConsoleSql",
"Version": "1.0.2",
"Author": "Cai",
"Description": {
"en-US": "Allows the console to execute SQL operations on the database",
"de-DE": "让控制台可以执行SQL操作数据库",
"it-IT": "让控制台可以执行SQL操作数据库",
"fr-FR": "让控制台可以执行SQL操作数据库",
"es-ES": "让控制台可以执行SQL操作数据库",
"ru-RU": "让控制台可以执行SQL操作数据库",
"zh-CN": "让控制台可以执行SQL操作数据库",
"pt-BR": "让控制台可以执行SQL操作数据库",
"pl-PL": "让控制台可以执行SQL操作数据库"
},
"AssemblyName": "ConsoleSql",
"Path": "ConsoleSql.dll",
"Dependencies": [],
"HotReload": true
},
{
"Name": "ConvertWorld",
"Version": "1.0.4",
"Author": "onusai 羽学",
"Description": {
"en-US": "Defeat the specified monster to replace the specified tile in the world and all items in the chest",
"de-DE": "击败指定怪物替换世界指定图格与所有箱子内物品",
"it-IT": "击败指定怪物替换世界指定图格与所有箱子内物品",
"fr-FR": "击败指定怪物替换世界指定图格与所有箱子内物品",
"es-ES": "击败指定怪物替换世界指定图格与所有箱子内物品",
"ru-RU": "击败指定怪物替换世界指定图格与所有箱子内物品",
"zh-CN": "击败指定怪物替换世界指定图格与所有箱子内物品",
"pt-BR": "击败指定怪物替换世界指定图格与所有箱子内物品",
"pl-PL": "击败指定怪物替换世界指定图格与所有箱子内物品"
},
"AssemblyName": "ConvertWorld",
"Path": "ConvertWorld.dll",
"Dependencies": [],
"HotReload": true
},
{
"Name": "CreateSpawn",
"Version": "1.0.0.5",
"Author": "少司命",
"Description": {
"en-US": "Birth building",
"de-DE": "出生建筑",
"it-IT": "出生建筑",
"fr-FR": "出生建筑",
"es-ES": "出生建筑",
"ru-RU": "出生建筑",
"zh-CN": "出生建筑",
"pt-BR": "出生建筑",
"pl-PL": "出生建筑"
},
"AssemblyName": "CreateSpawn",
"Path": "CreateSpawn.dll",
"Dependencies": [
"LazyAPI"
],
"HotReload": true
},
{
"Name": "CriticalHit",
"Version": "1.2.3",
"Author": "White制作,Stone·Free汉化整合,肝帝熙恩更新适配1449",
"Description": {
"en-US": "Provide floating text effect when attacking NPC",
"de-DE": "提供攻击NPC跳出浮动文字效果",
"it-IT": "提供攻击NPC跳出浮动文字效果",
"fr-FR": "提供攻击NPC跳出浮动文字效果",
"es-ES": "提供攻击NPC跳出浮动文字效果",
"ru-RU": "提供攻击NPC跳出浮动文字效果",
"zh-CN": "提供攻击NPC跳出浮动文字效果",
"pt-BR": "提供攻击NPC跳出浮动文字效果",
"pl-PL": "提供攻击NPC跳出浮动文字效果"
},
"AssemblyName": "CriticalHit",
"Path": "CriticalHit.dll",
"Dependencies": [],
"HotReload": true
},
{
"Name": "CustomMonster",
"Version": "1.0.4.41",
"Author": "GK 阁下 羽学",
"Description": {
"en-US": "Customize the health volume when monsters appear, of course it’s more than that!",
"de-DE": "自定义怪物出没时的血量,当然不止这些!",
"it-IT": "自定义怪物出没时的血量,当然不止这些!",
"fr-FR": "自定义怪物出没时的血量,当然不止这些!",
"es-ES": "自定义怪物出没时的血量,当然不止这些!",
"ru-RU": "自定义怪物出没时的血量,当然不止这些!",
"zh-CN": "自定义怪物出没时的血量,当然不止这些!",
"pt-BR": "自定义怪物出没时的血量,当然不止这些!",
"pl-PL": "自定义怪物出没时的血量,当然不止这些!"
},
"AssemblyName": "CustomMonster",
"Path": "CustomMonster.dll",
"Dependencies": [],
"HotReload": true
},
{
"Name": "DamageRuleLoot",
"Version": "1.3.4",
"Author": "羽学 西江小子",
"Description": {
"en-US": "The penalty for dropping treasure bags is determined based on the output ranking list, and relative damage rules are dealt with for each BOSS.",
"de-DE": "根据输出排名榜决定是否掉落宝藏袋的惩罚,并对各个BOSS进行相对的伤害规则处理",
"it-IT": "根据输出排名榜决定是否掉落宝藏袋的惩罚,并对各个BOSS进行相对的伤害规则处理",
"fr-FR": "根据输出排名榜决定是否掉落宝藏袋的惩罚,并对各个BOSS进行相对的伤害规则处理",
"es-ES": "根据输出排名榜决定是否掉落宝藏袋的惩罚,并对各个BOSS进行相对的伤害规则处理",
"ru-RU": "根据输出排名榜决定是否掉落宝藏袋的惩罚,并对各个BOSS进行相对的伤害规则处理",
"zh-CN": "根据输出排名榜决定是否掉落宝藏袋的惩罚,并对各个BOSS进行相对的伤害规则处理",
"pt-BR": "根据输出排名榜决定是否掉落宝藏袋的惩罚,并对各个BOSS进行相对的伤害规则处理",
"pl-PL": "根据输出排名榜决定是否掉落宝藏袋的惩罚,并对各个BOSS进行相对的伤害规则处理"
},
"AssemblyName": "DamageRuleLoot",
"Path": "DamageRuleLoot.dll",
"Dependencies": [],
"HotReload": true
},
{
"Name": "DamageStatistic",
"Version": "1.0.3",
"Author": "Megghy",
"Description": {
"en-US": "Displays the damage done by each player after each boss fight",
"de-DE": "在每次 Boss 战后显示每个玩家造成的伤害。",
"it-IT": "在每次 Boss 战后显示每个玩家造成的伤害。",
"fr-FR": "在每次 Boss 战后显示每个玩家造成的伤害。",
"es-ES": "Muestra el daño causado por cada jugador después de cada pelea con el jefe.",
"ru-RU": "在每次 Boss 战后显示每个玩家造成的伤害。",
"zh-CN": "在每次 Boss 战后显示每个玩家造成的伤害。",
"pt-BR": "在每次 Boss 战后显示每个玩家造成的伤害。",
"pl-PL": "在每次 Boss 战后显示每个玩家造成的伤害。"
},
"AssemblyName": "DamageStatistic",
"Path": "DamageStatistic.dll",
"Dependencies": [],
"HotReload": true
},
{
"Name": "DataSync",
"Version": "2025.1.29",
"Author": "None",
"Description": {
"en-US": "None",
"de-DE": "None",
"it-IT": "None",
"fr-FR": "None",
"es-ES": "None",
"ru-RU": "None",
"zh-CN": "None",
"pt-BR": "None",
"pl-PL": "None"
},
"AssemblyName": "DataSync",
"Path": "DataSync.dll",
"Dependencies": [],
"HotReload": true
},
{
"Name": "DeathDrop",
"Version": "1.0.5",
"Author": "大豆子,肝帝熙恩更新优化",
"Description": {
"en-US": "Random and custom items dropped by monsters upon death",
"de-DE": "怪物死亡随机和自定义掉落物品",
"it-IT": "怪物死亡随机和自定义掉落物品",
"fr-FR": "怪物死亡随机和自定义掉落物品",
"es-ES": "Objetos aleatorios y personalizados que arrojan los monstruos al morir",
"ru-RU": "怪物死亡随机和自定义掉落物品",
"zh-CN": "怪物死亡随机和自定义掉落物品",
"pt-BR": "怪物死亡随机和自定义掉落物品",
"pl-PL": "怪物死亡随机和自定义掉落物品"
},
"AssemblyName": "DeathDrop",
"Path": "DeathDrop.dll",
"Dependencies": [],
"HotReload": true
},
{
"Name": "DisableMonsLoot",
"Version": "1.3.4",
"Author": "羽学",
"Description": {
"en-US": "Prevents excluded items from being dropped by monsters",
"de-DE": "清理怪物身边掉落物",
"it-IT": "清理怪物身边掉落物",
"fr-FR": "清理怪物身边掉落物",
"es-ES": "Limpiar los objetos que caen alrededor de los monstruos.",
"ru-RU": "清理怪物身边掉落物",
"zh-CN": "清理怪物身边掉落物",
"pt-BR": "清理怪物身边掉落物",
"pl-PL": "清理怪物身边掉落物"
},
"AssemblyName": "DisableMonsLoot",
"Path": "DisableMonsLoot.dll",
"Dependencies": [],
"HotReload": true
},
{
"Name": "DonotFuck",
"Version": "3.2.3",
"Author": "Cai 羽学",
"Description": {
"en-US": "When players chat with sensitive words, use * to replace the word.",
"de-DE": "当玩家聊天有敏感词时用*号代替该词",
"it-IT": "当玩家聊天有敏感词时用*号代替该词",
"fr-FR": "当玩家聊天有敏感词时用*号代替该词",
"es-ES": "当玩家聊天有敏感词时用*号代替该词",
"ru-RU": "当玩家聊天有敏感词时用*号代替该词",
"zh-CN": "当玩家聊天有敏感词时用*号代替该词",
"pt-BR": "当玩家聊天有敏感词时用*号代替该词",
"pl-PL": "当玩家聊天有敏感词时用*号代替该词"
},
"AssemblyName": "DonotFuck",
"Path": "DonotFuck.dll",
"Dependencies": [
"LazyAPI"
],
"HotReload": true
},
{
"Name": "DTEntryBlock",
"Version": "1.1.7",
"Author": "肝帝熙恩",
"Description": {
"en-US": "Prevent players from entering the dungeon/temple before defeating Skeletron/Plantera",
"de-DE": "阻止玩家在击败骷髅王/世纪之花前进入地牢/神庙",
"it-IT": "阻止玩家在击败骷髅王/世纪之花前进入地牢/神庙",
"fr-FR": "阻止玩家在击败骷髅王/世纪之花前进入地牢/神庙",
"es-ES": "阻止玩家在击败骷髅王/世纪之花前进入地牢/神庙",
"ru-RU": "阻止玩家在击败骷髅王/世纪之花前进入地牢/神庙",
"zh-CN": "阻止玩家在击败骷髅王/世纪之花前进入地牢/神庙",
"pt-BR": "阻止玩家在击败骷髅王/世纪之花前进入地牢/神庙",
"pl-PL": "阻止玩家在击败骷髅王/世纪之花前进入地牢/神庙"
},
"AssemblyName": "DTEntryBlock",
"Path": "DTEntryBlock.dll",
"Dependencies": [],
"HotReload": true
},
{
"Name": "Dummy",
"Version": "1.0.0.1",
"Author": "少司命",
"Description": {
"en-US": "Place dummies in your server!",
"de-DE": "在你的服务器中放置假人!",
"it-IT": "在你的服务器中放置假人!",
"fr-FR": "在你的服务器中放置假人!",
"es-ES": "在你的服务器中放置假人!",
"ru-RU": "在你的服务器中放置假人!",
"zh-CN": "在你的服务器中放置假人!",
"pt-BR": "在你的服务器中放置假人!",
"pl-PL": "在你的服务器中放置假人!"
},
"AssemblyName": "Dummy",
"Path": "Dummy.dll",
"Dependencies": [
"LazyAPI",
"TrProtocol"
],
"HotReload": true
},
{
"Name": "DumpTerrariaID",
"Version": "1.0.0.4",
"Author": "少司命",
"Description": {
"en-US": "Dump ID",
"de-DE": "DumpID",
"it-IT": "DumpID",
"fr-FR": "DumpID",
"es-ES": "DumpID",
"ru-RU": "DumpID",
"zh-CN": "DumpID",
"pt-BR": "DumpID",
"pl-PL": "DumpID"
},
"AssemblyName": "DumpTerrariaID",
"Path": "DumpTerrariaID.dll",
"Dependencies": [],
"HotReload": true
},
{
"Name": "DwTP",
"Version": "1.0.2",
"Author": "羽学",
"Description": {
"en-US": "Use the /dw command to teleport to the shimmer, dungeon, temple, bud, and treasure bag location.",