generated from github/codespaces-blank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
purpur.yml
1815 lines (1814 loc) · 52.3 KB
/
purpur.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This is the main configuration file for Purpur.
# As you can see, there's tons to configure. Some options may impact gameplay, so use
# with caution, and make sure you know what each option does before configuring.
#
# If you need help with the configuration or have any questions related to Purpur,
# join us in our Discord guild.
#
# Website: https://purpurmc.org
# Docs: https://purpurmc.org/docs
verbose: false
settings:
messages:
cannot-ride-mob: <red>You cannot mount that mob
afk-broadcast-away: <yellow><italic>%s is now AFK
afk-broadcast-back: <yellow><italic>%s is no longer AFK
afk-broadcast-use-display-name: false
afk-tab-list-prefix: '[AFK] '
afk-tab-list-suffix: ''
credits-command-output: <green>%s has been shown the end credits
demo-command-output: <green>%s has been shown the demo screen
ping-command-output: <green>%s's ping is %sms
ram-command-output: '<green>Ram Usage: <used>/<xmx> (<percent>)'
rambar-command-output: <green>Rambar toggled <onoff> for <target>
tpsbar-command-output: <green>Tpsbar toggled <onoff> for <target>
dont-run-with-scissors: <red><italic>Don't run with scissors!
uptime-command-output: <green>Server uptime is <uptime>
unverified-username: default
sleep-skipping-night: default
sleeping-players-percent: default
sleep-not-possible: default
death-message:
run-with-scissors: <player> slipped and fell on their shears
stonecutter: <player> has sawed themself in half
register-minecraft-debug-commands: false
server-mod-name: Plazma
use-alternate-keepalive: true
disable-give-dropping: false
bee-count-payload: false
tps-catchup: true
fix-projectile-looting-transfer: false
clamp-attributes: true
limit-armor: true
player-deaths-always-show-item: false
startup-commands: []
broadcasts:
advancement:
only-broadcast-to-affected-player: false
death:
only-broadcast-to-affected-player: false
lagging-threshold: 19.0
command:
rambar:
title: <gray>Ram<yellow>:</yellow> <used>/<xmx> (<percent>)
overlay: NOTCHED_20
progress-color:
good: GREEN
medium: YELLOW
low: RED
text-color:
good: <gradient:#55ff55:#00aa00><text></gradient>
medium: <gradient:#ffff55:#ffaa00><text></gradient>
low: <gradient:#ff5555:#aa0000><text></gradient>
tick-interval: 20
tpsbar:
title: <gray>TPS<yellow>:</yellow> <tps> MSPT<yellow>:</yellow> <mspt> Ping<yellow>:</yellow>
<ping>ms
overlay: NOTCHED_20
fill-mode: MSPT
progress-color:
good: GREEN
medium: YELLOW
low: RED
text-color:
good: <gradient:#55ff55:#00aa00><text></gradient>
medium: <gradient:#ffff55:#ffaa00><text></gradient>
low: <gradient:#ff5555:#aa0000><text></gradient>
tick-interval: 20
compass:
title: 'S · ◈ · ◈ · ◈ · SW · ◈ · ◈ · ◈ · W · ◈ · ◈ · ◈ · NW · ◈ · ◈ · ◈ · N · ◈ · ◈ · ◈ · NE · ◈ · ◈ · ◈ · E · ◈ · ◈ · ◈ · SE · ◈ · ◈ · ◈ · S · ◈ · ◈ · ◈ · SW · ◈ · ◈ · ◈ · W · ◈ · ◈ · ◈ · NW · ◈ · ◈ · ◈ · N · ◈ · ◈ · ◈ · NE · ◈ · ◈ · ◈ · E · ◈ · ◈ · ◈ · SE · ◈ · ◈ · ◈ · '
overlay: PROGRESS
progress-color: BLUE
percent: 1.0
tick-interval: 5
gamemode:
requires-specific-permission: false
hide-hidden-players-from-entity-selector: false
uptime:
format: <days><hours><minutes><seconds>
day: '%02d day, '
days: '%02d days, '
hour: '%02d hour, '
hours: '%02d hours, '
minute: '%02d minute, and '
minutes: '%02d minutes, and '
second: '%02d second'
seconds: '%02d seconds'
blocks:
barrel:
rows: 3
chest_boat:
rows: 3
ender_chest:
six-rows: false
use-permissions-for-rows: false
crying_obsidian:
valid-for-portal-frame: false
beehive:
max-bees-inside: 3
anvil:
cumulative-cost: true
lightning_rod:
range: 128
grindstone:
ignored-enchants:
- minecraft:binding_curse
- minecraft:vanishing_curse
remove-attributes: false
remove-name-and-lore: false
cave_vines:
max-growth-age: 25
kelp:
max-growth-age: 25
twisting_vines:
max-growth-age: 25
weeping_vines:
max-growth-age: 25
magma-block:
reverse-bubble-column-flow: false
soul-sand:
reverse-bubble-column-flow: false
enchantment:
anvil:
allow-inapplicable-enchants: false
allow-incompatible-enchants: false
allow-higher-enchants-levels: false
replace-incompatible-enchants: false
allow-unsafe-enchant-command: false
clamp-levels: false
entity:
enderman:
short-height: false
allow-water-placement-in-the-end: true
logger:
suppress-init-legacy-material-errors: false
suppress-ignored-advancement-warnings: false
suppress-unrecognized-recipe-errors: false
suppress-setblock-in-far-chunk-errors: false
suppress-library-loader: false
network:
upnp-port-forwarding: false
max-joins-per-second: true
kick-for-out-of-order-chat: true
username-valid-characters: ^[a-zA-Z0-9_.]*$
blast-resistance-overrides: {}
block-fall-multipliers:
minecraft:magenta_bed:
distance: 0.5
minecraft:purple_bed:
distance: 0.5
minecraft:light_blue_bed:
distance: 0.5
minecraft:pink_bed:
distance: 0.5
minecraft:red_bed:
distance: 0.5
minecraft:hay_block:
damage: 0.2
minecraft:white_bed:
distance: 0.5
minecraft:gray_bed:
distance: 0.5
minecraft:cyan_bed:
distance: 0.5
minecraft:blue_bed:
distance: 0.5
minecraft:green_bed:
distance: 0.5
minecraft:orange_bed:
distance: 0.5
minecraft:black_bed:
distance: 0.5
minecraft:yellow_bed:
distance: 0.5
minecraft:lime_bed:
distance: 0.5
minecraft:brown_bed:
distance: 0.5
minecraft:light_gray_bed:
distance: 0.5
config-version: 37
world-settings:
default:
blocks:
observer:
disable-clock: false
anvil:
allow-colors: false
use-mini-message: false
iron-ingots-used-for-repair: 0
obsidian-used-for-damage: 0
azalea:
growth-chance: 0.0
beacon:
effect-range:
level-1: 20
level-2: 30
level-3: 40
level-4: 50
allow-effects-with-tinted-glass: false
bed:
explode: true
explode-on-villager-sleep: false
explosion-power: 5.0
explosion-fire: true
explosion-effect: BLOCK
big_dripleaf:
tilt-delay:
UNSTABLE: 10
FULL: 100
PARTIAL: 10
cactus:
breaks-from-solid-neighbors: true
affected-by-bonemeal: false
sugar_cane:
affected-by-bonemeal: false
nether_wart:
affected-by-bonemeal: false
campfire:
lit-when-placed: true
chest:
open-with-solid-block-on-top: false
composter:
sneak-to-bulk-process: false
coral:
die-outside-water: true
dispenser:
apply-cursed-to-armor-slots: true
place-anvils: false
door:
requires-redstone: []
dragon_egg:
teleport: true
end-crystal:
baseless:
explode: true
explosion-power: 6.0
explosion-fire: false
explosion-effect: BLOCK
base:
explode: true
explosion-power: 6.0
explosion-fire: false
explosion-effect: BLOCK
cramming-amount: 0
farmland:
bypass-mob-griefing: false
gets-moist-from-below: false
use-alpha-farmland: false
disable-trampling: false
only-players-trample: false
feather-fall-distance-affects-trampling: false
trample-height: -1.0
flowering_azalea:
growth-chance: 0.0
furnace:
use-lava-from-underneath: false
packed_ice:
allow-mob-spawns: true
blue_ice:
allow-mob-spawns: true
allow-snow-formation: true
lava:
infinite-required-sources: 2
speed:
nether: 10
not-nether: 30
piston:
block-push-limit: 12
magma-block:
damage-when-sneaking: false
powder_snow:
bypass-mob-griefing: false
powered-rail:
activation-range: 8
respawn_anchor:
explode: true
explosion-power: 5.0
explosion-fire: true
explosion-effect: BLOCK
sculk_shrieker:
can-summon-default: false
sign:
allow-colors: false
slab:
break-individual-slabs-when-sneaking: false
spawner:
deactivate-by-redstone: false
fix-mc-238526: false
sponge:
absorption:
area: 65
radius: 6
absorbs-lava: false
absorbs-water-from-mud: false
stonecutter:
damage: 0.0
turtle_egg:
break-from-exp-orbs: false
break-from-items: false
break-from-minecarts: false
bypass-mob-griefing: false
random-tick-crack-chance: 500
feather-fall-distance-affects-trampling: false
water:
infinite-required-sources: 2
enchantment-table:
lapis-persists: false
conduit:
effect-distance: 16
mob-damage:
distance: 8.0
damage-amount: 4.0
valid-ring-blocks:
- minecraft:prismarine
- minecraft:prismarine_bricks
- minecraft:sea_lantern
- minecraft:dark_prismarine
cauldron:
fill-chances:
rain: 0.05000000074505806
powder-snow: 0.10000000149011612
dripstone-water: 0.17578125
dripstone-lava: 0.05859375
tools:
axe:
strippables:
minecraft:cherry_log:
drops: {}
into: minecraft:stripped_cherry_log
minecraft:warped_hyphae:
drops: {}
into: minecraft:stripped_warped_hyphae
minecraft:spruce_wood:
drops: {}
into: minecraft:stripped_spruce_wood
minecraft:birch_log:
drops: {}
into: minecraft:stripped_birch_log
minecraft:warped_stem:
drops: {}
into: minecraft:stripped_warped_stem
minecraft:cherry_wood:
drops: {}
into: minecraft:stripped_cherry_wood
minecraft:mangrove_log:
drops: {}
into: minecraft:stripped_mangrove_log
minecraft:birch_wood:
drops: {}
into: minecraft:stripped_birch_wood
minecraft:dark_oak_log:
drops: {}
into: minecraft:stripped_dark_oak_log
minecraft:oak_wood:
drops: {}
into: minecraft:stripped_oak_wood
minecraft:oak_log:
drops: {}
into: minecraft:stripped_oak_log
minecraft:mangrove_wood:
drops: {}
into: minecraft:stripped_mangrove_wood
minecraft:crimson_hyphae:
drops: {}
into: minecraft:stripped_crimson_hyphae
minecraft:bamboo_block:
drops: {}
into: minecraft:stripped_bamboo_block
minecraft:jungle_wood:
drops: {}
into: minecraft:stripped_jungle_wood
minecraft:jungle_log:
drops: {}
into: minecraft:stripped_jungle_log
minecraft:crimson_stem:
drops: {}
into: minecraft:stripped_crimson_stem
minecraft:spruce_log:
drops: {}
into: minecraft:stripped_spruce_log
minecraft:acacia_log:
drops: {}
into: minecraft:stripped_acacia_log
minecraft:dark_oak_wood:
drops: {}
into: minecraft:stripped_dark_oak_wood
minecraft:acacia_wood:
drops: {}
into: minecraft:stripped_acacia_wood
waxables:
minecraft:waxed_oxidized_cut_copper_slab:
drops: {}
into: minecraft:oxidized_cut_copper_slab
minecraft:waxed_cut_copper_slab:
drops: {}
into: minecraft:cut_copper_slab
minecraft:waxed_exposed_cut_copper:
drops: {}
into: minecraft:exposed_cut_copper
minecraft:waxed_oxidized_copper_bulb:
drops: {}
into: minecraft:oxidized_copper_bulb
minecraft:waxed_oxidized_copper_grate:
drops: {}
into: minecraft:oxidized_copper_grate
minecraft:waxed_oxidized_copper_door:
drops: {}
into: minecraft:oxidized_copper_door
minecraft:waxed_oxidized_chiseled_copper:
drops: {}
into: minecraft:oxidized_chiseled_copper
minecraft:waxed_copper_block:
drops: {}
into: minecraft:copper_block
minecraft:waxed_exposed_cut_copper_slab:
drops: {}
into: minecraft:exposed_cut_copper_slab
minecraft:waxed_oxidized_copper_trapdoor:
drops: {}
into: minecraft:oxidized_copper_trapdoor
minecraft:waxed_weathered_chiseled_copper:
drops: {}
into: minecraft:weathered_chiseled_copper
minecraft:waxed_exposed_copper:
drops: {}
into: minecraft:exposed_copper
minecraft:waxed_exposed_copper_bulb:
drops: {}
into: minecraft:exposed_copper_bulb
minecraft:waxed_exposed_chiseled_copper:
drops: {}
into: minecraft:exposed_chiseled_copper
minecraft:waxed_cut_copper_stairs:
drops: {}
into: minecraft:cut_copper_stairs
minecraft:waxed_copper_bulb:
drops: {}
into: minecraft:copper_bulb
minecraft:waxed_copper_trapdoor:
drops: {}
into: minecraft:copper_trapdoor
minecraft:waxed_weathered_copper_trapdoor:
drops: {}
into: minecraft:weathered_copper_trapdoor
minecraft:waxed_exposed_copper_door:
drops: {}
into: minecraft:exposed_copper_door
minecraft:waxed_copper_door:
drops: {}
into: minecraft:copper_door
minecraft:waxed_cut_copper:
drops: {}
into: minecraft:cut_copper
minecraft:waxed_oxidized_copper:
drops: {}
into: minecraft:oxidized_copper
minecraft:waxed_exposed_copper_trapdoor:
drops: {}
into: minecraft:exposed_copper_trapdoor
minecraft:waxed_exposed_cut_copper_stairs:
drops: {}
into: minecraft:exposed_cut_copper_stairs
minecraft:waxed_weathered_copper:
drops: {}
into: minecraft:weathered_copper
minecraft:waxed_exposed_copper_grate:
drops: {}
into: minecraft:exposed_copper_grate
minecraft:waxed_weathered_cut_copper_slab:
drops: {}
into: minecraft:weathered_cut_copper_slab
minecraft:waxed_oxidized_cut_copper_stairs:
drops: {}
into: minecraft:oxidized_cut_copper_stairs
minecraft:waxed_weathered_copper_grate:
drops: {}
into: minecraft:weathered_copper_grate
minecraft:waxed_chiseled_copper:
drops: {}
into: minecraft:chiseled_copper
minecraft:waxed_weathered_cut_copper:
drops: {}
into: minecraft:weathered_cut_copper
minecraft:waxed_copper_grate:
drops: {}
into: minecraft:copper_grate
minecraft:waxed_weathered_copper_bulb:
drops: {}
into: minecraft:weathered_copper_bulb
minecraft:waxed_oxidized_cut_copper:
drops: {}
into: minecraft:oxidized_cut_copper
minecraft:waxed_weathered_copper_door:
drops: {}
into: minecraft:weathered_copper_door
minecraft:waxed_weathered_cut_copper_stairs:
drops: {}
into: minecraft:weathered_cut_copper_stairs
weatherables:
minecraft:exposed_cut_copper_stairs:
drops: {}
into: minecraft:cut_copper_stairs
minecraft:weathered_cut_copper_slab:
drops: {}
into: minecraft:exposed_cut_copper_slab
minecraft:weathered_cut_copper:
drops: {}
into: minecraft:exposed_cut_copper
minecraft:weathered_copper_grate:
drops: {}
into: minecraft:exposed_copper_grate
minecraft:oxidized_cut_copper_slab:
drops: {}
into: minecraft:weathered_cut_copper_slab
minecraft:oxidized_copper_bulb:
drops: {}
into: minecraft:weathered_copper_bulb
minecraft:oxidized_cut_copper:
drops: {}
into: minecraft:weathered_cut_copper
minecraft:exposed_chiseled_copper:
drops: {}
into: minecraft:chiseled_copper
minecraft:oxidized_copper:
drops: {}
into: minecraft:weathered_copper
minecraft:exposed_copper_door:
drops: {}
into: minecraft:copper_door
minecraft:weathered_copper_door:
drops: {}
into: minecraft:exposed_copper_door
minecraft:weathered_copper:
drops: {}
into: minecraft:exposed_copper
minecraft:exposed_copper_trapdoor:
drops: {}
into: minecraft:copper_trapdoor
minecraft:exposed_copper:
drops: {}
into: minecraft:copper_block
minecraft:oxidized_cut_copper_stairs:
drops: {}
into: minecraft:weathered_cut_copper_stairs
minecraft:oxidized_copper_door:
drops: {}
into: minecraft:weathered_copper_door
minecraft:exposed_cut_copper_slab:
drops: {}
into: minecraft:cut_copper_slab
minecraft:weathered_chiseled_copper:
drops: {}
into: minecraft:exposed_chiseled_copper
minecraft:oxidized_copper_grate:
drops: {}
into: minecraft:weathered_copper_grate
minecraft:oxidized_chiseled_copper:
drops: {}
into: minecraft:weathered_chiseled_copper
minecraft:weathered_cut_copper_stairs:
drops: {}
into: minecraft:exposed_cut_copper_stairs
minecraft:weathered_copper_trapdoor:
drops: {}
into: minecraft:exposed_copper_trapdoor
minecraft:exposed_copper_bulb:
drops: {}
into: minecraft:copper_bulb
minecraft:oxidized_copper_trapdoor:
drops: {}
into: minecraft:weathered_copper_trapdoor
minecraft:weathered_copper_bulb:
drops: {}
into: minecraft:exposed_copper_bulb
minecraft:exposed_copper_grate:
drops: {}
into: minecraft:copper_grate
minecraft:exposed_cut_copper:
drops: {}
into: minecraft:cut_copper
hoe:
tillables:
minecraft:grass_block:
drops: {}
into: minecraft:farmland
condition: air_above
minecraft:dirt:
drops: {}
into: minecraft:farmland
condition: air_above
minecraft:rooted_dirt:
drops:
minecraft:hanging_roots: 1.0
into: minecraft:dirt
condition: always
minecraft:dirt_path:
drops: {}
into: minecraft:farmland
condition: air_above
minecraft:coarse_dirt:
drops: {}
into: minecraft:dirt
condition: air_above
replant-crops: false
replant-nether-warts: false
shovel:
flattenables:
minecraft:rooted_dirt:
drops: {}
into: minecraft:dirt_path
minecraft:mycelium:
drops: {}
into: minecraft:dirt_path
minecraft:grass_block:
drops: {}
into: minecraft:dirt_path
minecraft:dirt:
drops: {}
into: minecraft:dirt_path
minecraft:podzol:
drops: {}
into: minecraft:dirt_path
minecraft:coarse_dirt:
drops: {}
into: minecraft:dirt_path
ridable-settings:
babies-are-ridable: true
untamed-tamables-are-ridable: true
use-night-vision: false
use-dismounts-underwater-tag: true
mobs:
allay:
take-damage-from-water: false
always-drop-exp: false
ridable: false
ridable-in-water: true
controllable: true
attributes:
max_health: 20.0
scale: 1.0
armadillo:
ridable: false
ridable-in-water: true
controllable: true
attributes:
max_health: 12.0
scale: 1.0
breeding-delay-ticks: 6000
axolotl:
ridable: false
controllable: true
attributes:
max_health: 14.0
scale: 1.0
breeding-delay-ticks: 6000
takes-damage-from-water: false
always-drop-exp: false
bat:
ridable: false
ridable-in-water: true
controllable: true
ridable-max-y: 320.0
attributes:
max_health: 6.0
scale: 1.0
follow_range: 16.0
knockback_resistance: 0.0
movement_speed: 0.6
flying_speed: 0.6
armor: 0.0
armor_toughness: 0.0
attack_knockback: 0.0
takes-damage-from-water: false
always-drop-exp: false
bee:
ridable: false
ridable-in-water: true
controllable: true
ridable-max-y: 320.0
attributes:
max_health: 10.0
scale: 1.0
breeding-delay-ticks: 6000
takes-damage-from-water: false
can-work-at-night: false
can-work-in-rain: false
always-drop-exp: false
dies-after-sting: true
blaze:
ridable: false
ridable-in-water: true
controllable: true
ridable-max-y: 320.0
attributes:
max_health: 20.0
scale: 1.0
takes-damage-from-water: true
always-drop-exp: false
bogged:
ridable: false
ridable-in-water: true
controllable: true
attributes:
max_health: 16.0
scale: 1.0
camel:
takes-damage-from-water: false
always-drop-exp: false
ridable-in-water: false
attributes:
max_health:
min: 32.0
max: 32.0
jump_strength:
min: 0.42
max: 0.42
movement_speed:
min: 0.09
max: 0.09
breeding-delay-ticks: 6000
cat:
ridable: false
ridable-in-water: true
controllable: true
attributes:
max_health: 10.0
scale: 1.0
spawn-delay: 1200
scan-range-for-other-cats:
swamp-hut: 16
village: 48
breeding-delay-ticks: 6000
default-collar-color: RED
takes-damage-from-water: false
always-drop-exp: false
cave_spider:
ridable: false
ridable-in-water: true
controllable: true
attributes:
max_health: 12.0
scale: 1.0
takes-damage-from-water: false
always-drop-exp: false
chicken:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 4.0
scale: 1.0
retaliate: false
breeding-delay-ticks: 6000
takes-damage-from-water: false
always-drop-exp: false
cod:
ridable: false
controllable: true
attributes:
max_health: 3.0
scale: 1.0
takes-damage-from-water: false
always-drop-exp: false
cow:
ridable: false
ridable-in-water: true
controllable: true
attributes:
max_health: 10.0
scale: 1.0
feed-mushrooms-for-mooshroom: 0
breeding-delay-ticks: 6000
takes-damage-from-water: false
naturally-aggressive-to-players:
chance: 0.0
damage: 2.0
always-drop-exp: false
creeper:
ridable: false
ridable-in-water: true
controllable: true
attributes:
max_health: 20.0
scale: 1.0
naturally-charged-chance: 0.0
allow-griefing: true
bypass-mob-griefing: false
takes-damage-from-water: false
explode-when-killed: false
health-impacts-explosion: false
always-drop-exp: false
head-visibility-percent: 0.5
encircle-target: false
dolphin:
ridable: false
controllable: true
spit:
cooldown: 20
speed: 1.0
damage: 2.0
attributes:
max_health: 10.0
scale: 1.0
disable-treasure-searching: false
takes-damage-from-water: false
naturally-aggressive-to-players-chance: 0.0
always-drop-exp: false
donkey:
ridable-in-water: false
attributes:
max_health:
min: 15.0
max: 30.0
jump_strength:
min: 0.5
max: 0.5
movement_speed:
min: 0.175
max: 0.175
breeding-delay-ticks: 6000
takes-damage-from-water: false
always-drop-exp: false
drowned:
ridable: false
ridable-in-water: true
controllable: true
attributes:
max_health: 20.0
scale: 1.0
spawn_reinforcements: 0.1
jockey:
only-babies: true
chance: 0.05
try-existing-chickens: true
takes-damage-from-water: false
can-break-doors: false
always-drop-exp: false
elder_guardian:
ridable: false
controllable: true
attributes:
max_health: 80.0
scale: 1.0
takes-damage-from-water: false
always-drop-exp: false
ender_dragon:
ridable: false
ridable-in-water: true
controllable: true
ridable-max-y: 320.0
attributes:
max_health: 200.0
always-drop-full-exp: false
bypass-mob-griefing: false
takes-damage-from-water: false
can-ride-vehicles: false
enderman:
ridable: false
ridable-in-water: true
controllable: true
attributes:
max_health: 40.0
scale: 1.0
allow-griefing: true
can-despawn-with-held-block: false
bypass-mob-griefing: false
takes-damage-from-water: true
aggressive-towards-endermites: true
aggressive-towards-endermites-only-spawned-by-player-thrown-ender-pearls: false
disable-player-stare-aggression: false
ignore-projectiles: false
always-drop-exp: false
endermite:
ridable: false
ridable-in-water: true
controllable: true
attributes:
max_health: 8.0
scale: 1.0
takes-damage-from-water: false
always-drop-exp: false
evoker:
ridable: false
ridable-in-water: true
controllable: true
attributes:
max_health: 24.0
scale: 1.0
bypass-mob-griefing: false
takes-damage-from-water: false
always-drop-exp: false
fox:
ridable: false
ridable-in-water: true
controllable: true
attributes:
max_health: 10.0
scale: 1.0
tulips-change-type: false
breeding-delay-ticks: 6000
bypass-mob-griefing: false
takes-damage-from-water: false
always-drop-exp: false
frog:
attributes:
max_health: 10.0
takes-damage-from-water: false
always-drop-exp: false
ridable: false
ridable-in-water: true
controllable: true
ridable-jump-height: 0.6499999761581421
breeding-delay-ticks: 6000
ghast:
ridable: false
ridable-in-water: true
controllable: true
ridable-max-y: 320.0
attributes:
max_health: 10.0
scale: 1.0
takes-damage-from-water: false
always-drop-exp: false
giant:
ridable: false
ridable-in-water: true
controllable: true
movement-speed: 0.5
attack-damage: 50.0
attributes:
max_health: 100.0
scale: 1.0
step-height: 2.0
jump-height: 1.0
have-ai: false
have-hostile-ai: false
takes-damage-from-water: false
always-drop-exp: false
glow_squid:
ridable: false
controllable: true
attributes:
max_health: 10.0
scale: 1.0
can-fly: false
takes-damage-from-water: false
always-drop-exp: false
goat:
ridable: false
ridable-in-water: true
controllable: true
attributes:
max_health: 10.0
scale: 1.0
breeding-delay-ticks: 6000
takes-damage-from-water: false
always-drop-exp: false
guardian:
ridable: false
controllable: true
attributes:
max_health: 30.0
scale: 1.0
takes-damage-from-water: false
always-drop-exp: false
hoglin:
ridable: false
ridable-in-water: true
controllable: true
attributes:
max_health: 40.0
scale: 1.0
breeding-delay-ticks: 6000
takes-damage-from-water: false
always-drop-exp: false
horse:
ridable-in-water: false
attributes:
max_health:
min: 15.0
max: 30.0
jump_strength:
min: 0.4
max: 1.0
movement_speed:
min: 0.1125
max: 0.3375
breeding-delay-ticks: 6000
takes-damage-from-water: false