-
Notifications
You must be signed in to change notification settings - Fork 0
/
purpur.yml
1767 lines (1766 loc) · 51.4 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:
register-minecraft-debug-commands: false
bee-count-payload: false
player-deaths-always-show-item: false
fix-network-serialized-items-in-creative: false
clamp-attributes: true
limit-armor: true
block-fall-multipliers:
minecraft:orange_bed:
distance: 0.5
minecraft:green_bed:
distance: 0.5
minecraft:blue_bed:
distance: 0.5
minecraft:cyan_bed:
distance: 0.5
minecraft:gray_bed:
distance: 0.5
minecraft:white_bed:
distance: 0.5
minecraft:hay_block:
damage: 0.2
minecraft:red_bed:
distance: 0.5
minecraft:pink_bed:
distance: 0.5
minecraft:light_blue_bed:
distance: 0.5
minecraft:purple_bed:
distance: 0.5
minecraft:magenta_bed:
distance: 0.5
minecraft:light_gray_bed:
distance: 0.5
minecraft:brown_bed:
distance: 0.5
minecraft:lime_bed:
distance: 0.5
minecraft:yellow_bed:
distance: 0.5
minecraft:black_bed:
distance: 0.5
fix-projectile-looting-transfer: false
blast-resistance-overrides: {}
messages:
sleep-not-possible: default
afk-broadcast-use-display-name: false
ram-command-output: '<green>Ram Usage: <used>/<xmx> (<percent>)'
rambar-command-output: <green>Rambar toggled <onoff> for <target>
cannot-ride-mob: <red>You cannot ride this mob
afk-broadcast-away: ''
afk-broadcast-back: ''
afk-tab-list-prefix: ''
afk-tab-list-suffix: ' (AFK)'
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
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: 33
death-message:
run-with-scissors: <player> slipped and fell on their shears
stonecutter: <player> was sawed in half by Stonecutter
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: true
fill:
max-area: 32768
hide-hidden-players-from-entity-selector: true
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'
broadcasts:
advancement:
only-broadcast-to-affected-player: false
death:
only-broadcast-to-affected-player: false
seed:
structure:
buried_treasure: -1
mineshaft: -1
blocks:
cave_vines:
max-growth-age: 25
kelp:
max-growth-age: 25
twisting_vines:
max-growth-age: 25
weeping_vines:
max-growth-age: 25
barrel:
rows: 3
ender_chest:
six-rows: true
use-permissions-for-rows: true
crying_obsidian:
valid-for-portal-frame: true
beehive:
max-bees-inside: 3
anvil:
cumulative-cost: true
lightning_rod:
range: 128
grindstone:
ignored-enchants:
- minecraft:binding_curse
remove-attributes: false
remove-name-and-lore: false
disable-mushroom-updates: false
disable-note-block-updates: false
disable-chorus-plant-updates: false
logger:
suppress-library-loader: false
suppress-init-legacy-material-errors: true
suppress-ignored-advancement-warnings: true
suppress-unrecognized-recipe-errors: false
suppress-setblock-in-far-chunk-errors: false
suppress-sent-expired-chat: false
network:
kick-for-out-of-order-chat: true
upnp-port-forwarding: false
max-joins-per-second: true
entity:
enderman:
short-height: false
food-properties: {}
tps-catchup: true
server-mod-name: Purpur
allow-water-placement-in-the-end: true
username-valid-characters: ^[a-zA-Z0-9_.]*$
enchantment:
allow-infinity-and-mending-together: false
allow-infinity-on-crossbow: false
allow-looting-on-shears: false
allow-unsafe-enchant-command: false
clamp-levels: true
anvil:
replace-incompatible-enchants: false
allow-unsafe-enchants: false
allow-inapplicable-enchants: true
allow-incompatible-enchants: true
allow-higher-enchants-levels: true
use-alternate-keepalive: false
disable-give-dropping: true
config-version: 34
world-settings:
default:
settings:
entity:
shared-random: true
mobs:
sniffer:
ridable: true
ridable-in-water: true
controllable: true
attributes:
max_health: 14.0
breeding-delay-ticks: 6000
camel:
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
giant:
ridable: false
ridable-in-water: false
controllable: true
movement-speed: 0.5
attack-damage: 50.0
attributes:
max_health: 100.0
step-height: 2.0
jump-height: 1.0
have-ai: true
have-hostile-ai: false
takes-damage-from-water: false
always-drop-exp: false
ghast:
ridable: false
ridable-in-water: false
controllable: false
ridable-max-y: 320.0
attributes:
max_health: 10.0
takes-damage-from-water: false
always-drop-exp: false
husk:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 20.0
spawn_reinforcements: 0.1
jockey:
only-babies: true
chance: 0.05
try-existing-chickens: true
takes-damage-from-water: false
always-drop-exp: false
dolphin:
ridable: false
controllable: true
spit:
cooldown: 20
speed: 1.0
damage: 2.0
attributes:
max_health: 10.0
disable-treasure-searching: false
takes-damage-from-water: false
naturally-aggressive-to-players-chance: 0.01
always-drop-exp: false
donkey:
ridable-in-water: false
attributes:
max_health:
min: 10.0
max: 35.0
jump_strength:
min: 0.25
max: 0.75
movement_speed:
min: 0.15
max: 0.2
breeding-delay-ticks: 6000
takes-damage-from-water: false
always-drop-exp: false
drowned:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 20.0
spawn_reinforcements: 0.1
jockey:
only-babies: true
chance: 0.05
try-existing-chickens: true
takes-damage-from-water: false
can-break-doors: true
always-drop-exp: false
horse:
ridable-in-water: false
attributes:
max_health:
min: 10.0
max: 35.0
jump_strength:
min: 0.2
max: 1.3
movement_speed:
min: 0.1
max: 0.37
breeding-delay-ticks: 6000
takes-damage-from-water: false
stand-with-rider: true
stand-when-hurt: true
always-drop-exp: false
bat:
ridable: false
ridable-in-water: false
controllable: true
ridable-max-y: 320.0
attributes:
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
max_health: 6.0
takes-damage-from-water: false
always-drop-exp: false
bee:
ridable: false
ridable-in-water: false
controllable: true
ridable-max-y: 320.0
attributes:
max_health: 10.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
cat:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 10.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
blaze:
ridable: false
ridable-in-water: false
controllable: true
ridable-max-y: 320.0
attributes:
max_health: 20.0
takes-damage-from-water: true
always-drop-exp: false
allay:
respect-nbt: []
ridable: false
ridable-in-water: false
controllable: true
axolotl:
ridable: false
controllable: true
attributes:
max_health: 14.0
breeding-delay-ticks: 6000
takes-damage-from-water: false
always-drop-exp: false
frog:
ridable: false
ridable-in-water: false
controllable: true
ridable-jump-height: 0.6499999761581421
breeding-delay-ticks: 6000
evoker:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 24.0
bypass-mob-griefing: false
takes-damage-from-water: false
always-drop-exp: false
fox:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 10.0
tulips-change-type: false
breeding-delay-ticks: 6000
bypass-mob-griefing: false
takes-damage-from-water: false
always-drop-exp: false
llama:
ridable: true
ridable-in-water: false
controllable: true
attributes:
max_health:
min: 10.0
max: 35.0
jump_strength:
min: 0.4
max: 0.6
movement_speed:
min: 0.17
max: 0.18
breeding-delay-ticks: 6000
takes-damage-from-water: false
join-caravans: true
always-drop-exp: false
mooshroom:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 10.0
breeding-delay-ticks: 6000
takes-damage-from-water: false
always-drop-exp: false
iron_golem:
ridable: false
ridable-in-water: false
controllable: true
can-swim: false
attributes:
max_health: 100.0
takes-damage-from-water: false
poppy-calms-anger: false
healing-calms-anger: true
always-drop-exp: false
magma_cube:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: size * size
attack_damage: size
takes-damage-from-water: false
always-drop-exp: false
illusioner:
ridable: false
ridable-in-water: false
controllable: true
movement-speed: 0.5
follow-range: 18.0
attributes:
max_health: 32.0
takes-damage-from-water: false
always-drop-exp: false
parrot:
ridable: false
ridable-in-water: false
controllable: true
ridable-max-y: 320.0
attributes:
max_health: 6.0
takes-damage-from-water: false
can-breed: true
always-drop-exp: false
phantom:
ridable: false
ridable-in-water: false
controllable: true
ridable-max-y: 320.0
flames:
damage: 1.0
fire-time: 8
allow-griefing: false
attributes:
max_health: '20.0'
attack_damage: 6 + size
attacked-by-crystal-range: 0.0
attacked-by-crystal-damage: 1.0
orbit-crystal-radius: 0.0
spawn:
delay:
min: 1200
max: 2400
min-sky-darkness: 5
only-above-sea-level: true
only-with-visible-sky: true
local-difficulty-chance: 3.0
min-time-since-slept: 72000
overhead:
min: 20
max: 35
radius: 10
per-attempt:
min: 1
max: -1
burn-in-light: 0
burn-in-daylight: true
ignore-players-with-torch: false
flames-on-swoop: false
takes-damage-from-water: false
always-drop-exp: false
size:
min: 0
max: 0
ocelot:
spawn-below-sea-level: false
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 10.0
breeding-delay-ticks: 6000
takes-damage-from-water: false
always-drop-exp: false
mule:
ridable-in-water: false
attributes:
max_health:
min: 10.0
max: 35.0
jump_strength:
min: 0.4
max: 0.6
movement_speed:
min: 0.16
max: 0.18
breeding-delay-ticks: 6000
takes-damage-from-water: false
always-drop-exp: false
panda:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 20.0
breeding-delay-ticks: 6000
takes-damage-from-water: false
always-drop-exp: false
polar_bear:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 30.0
breedable-item: ''
breeding-delay-ticks: 6000
takes-damage-from-water: false
always-drop-exp: false
piglin:
ignores-armor-with-gold-trim: true
head-visibility-percent: 0.5
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 16.0
bypass-mob-griefing: false
takes-damage-from-water: false
portal-spawn-modifier: 2000
always-drop-exp: false
pillager:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 24.0
bypass-mob-griefing: false
takes-damage-from-water: false
always-drop-exp: false
pig:
ridable: true
ridable-in-water: false
controllable: true
attributes:
max_health: 10.0
give-saddle-back: true
breeding-delay-ticks: 6000
takes-damage-from-water: false
always-drop-exp: false
ravager:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 100.0
bypass-mob-griefing: false
takes-damage-from-water: false
griefable-blocks:
- minecraft:oak_leaves
- minecraft:spruce_leaves
- minecraft:birch_leaves
- minecraft:jungle_leaves
- minecraft:acacia_leaves
- minecraft:dark_oak_leaves
- minecraft:beetroots
- minecraft:carrots
- minecraft:potatoes
- minecraft:wheat
- minecraft:vines
- minecraft:grass
- minecraft:fern
- minecraft:tall_grass
always-drop-exp: false
rabbit:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 3.0
spawn-toast-chance: 0.1
spawn-killer-rabbit-chance: 0.06
breeding-delay-ticks: 6000
bypass-mob-griefing: false
takes-damage-from-water: false
always-drop-exp: false
sheep:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 8.0
breeding-delay-ticks: 6000
bypass-mob-griefing: false
takes-damage-from-water: false
always-drop-exp: false
jeb-shear-random-color: false
pufferfish:
ridable: false
controllable: true
attributes:
max_health: 3.0
takes-damage-from-water: false
always-drop-exp: false
shulker:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 30.0
takes-damage-from-water: false
spawn-from-bullet:
base-chance: 1.0
require-open-lid: true
nearby-range: 8.0
nearby-equation: (nearby - 1) / 5.0
random-color: false
change-color-with-dye: false
always-drop-exp: false
salmon:
ridable: false
controllable: true
attributes:
max_health: 3.0
takes-damage-from-water: false
always-drop-exp: false
snow_golem:
ridable: false
ridable-in-water: false
controllable: true
leave-trail-when-ridden: false
attributes:
max_health: 4.0
drop-pumpkin-when-sheared: true
pumpkin-can-be-added-back: true
min-shoot-interval-ticks: 20
max-shoot-interval-ticks: 20
snow-ball-modifier: 10.0
attack-distance: 1.25
bypass-mob-griefing: false
takes-damage-from-water: true
always-drop-exp: false
slime:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: size * size
attack_damage: size
takes-damage-from-water: false
always-drop-exp: false
silverfish:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 8.0
bypass-mob-griefing: false
takes-damage-from-water: false
always-drop-exp: false
skeleton:
bow-accuracy: 14 - difficulty * 4
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 20.0
takes-damage-from-water: false
always-drop-exp: false
head-visibility-percent: 0.5
feed-wither-roses: 0
stray:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 20.0
takes-damage-from-water: false
always-drop-exp: false
squid:
ridable: false
controllable: true
attributes:
max_health: 10.0
immune-to-EAR: true
water-offset-check: 0.0
can-fly: false
takes-damage-from-water: false
always-drop-exp: false
strider:
ridable: true
ridable-in-water: false
controllable: true
attributes:
max_health: 20.0
breeding-delay-ticks: 6000
give-saddle-back: true
takes-damage-from-water: true
always-drop-exp: false
spider:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 16.0
takes-damage-from-water: false
always-drop-exp: false
can-climb-world-border: true
tadpole:
ridable: false
ridable-in-water: false
controllable: true
villager:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 20.0
brain-ticks: 1
use-brain-ticks-only-when-lagging: true
follow-emerald-blocks: false
can-be-leashed: true
can-breed: true
breeding-delay-ticks: 6000
clerics-farm-warts: true
cleric-wart-farmers-throw-warts-at-villagers: true
bypass-mob-griefing: false
takes-damage-from-water: false
allow-trading: true
always-drop-exp: false
minimum-demand: 0
lobotomize:
wait-until-trade-locked: false
enabled: false
check-interval: 100
display-trade-item: true
spawn-iron-golem:
radius: 0
limit: 0
vindicator:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 24.0
johnny:
spawn-chance: 0.01
takes-damage-from-water: false
always-drop-exp: false
turtle:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 30.0
breeding-delay-ticks: 6000
takes-damage-from-water: false
always-drop-exp: false
vex:
ridable: false
ridable-in-water: false
controllable: true
ridable-max-y: 320.0
attributes:
max_health: 14.0
takes-damage-from-water: false
always-drop-exp: false
witch:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 26.0
takes-damage-from-water: false
always-drop-exp: false
wither:
ridable: false
ridable-in-water: false
controllable: true
ridable-max-y: 320.0
attributes:
max_health: 300.0
health-regen-amount: 1
health-regen-delay: 10
bypass-mob-griefing: false
takes-damage-from-water: false
can-ride-vehicles: false
explosion-radius: 2.0
play-spawn-sound: true
always-drop-exp: true
wolf:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 8.0
default-collar-color: RED
milk-cures-rabid-wolves: false
spawn-rabid-chance: 0.01
breeding-delay-ticks: 6000
takes-damage-from-water: false
always-drop-exp: false
warden:
ridable: false
ridable-in-water: false
controllable: true
zoglin:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 40.0
takes-damage-from-water: false
always-drop-exp: false
zombie:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 20.0
spawn_reinforcements: 0.1
jockey:
only-babies: true
chance: 0.05
try-existing-chickens: true
aggressive-towards-villager-when-lagging: true
bypass-mob-griefing: false
takes-damage-from-water: false
always-drop-exp: false
head-visibility-percent: 0.5
elder_guardian:
ridable: false
controllable: true
attributes:
max_health: 80.0
takes-damage-from-water: false
always-drop-exp: false
ender_dragon:
ridable: true
ridable-in-water: true
controllable: false
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
piglin_brute:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 50.0
takes-damage-from-water: false
always-drop-exp: false
skeleton_horse:
ridable: false
ridable-in-water: true
can-swim: false
attributes:
max_health:
min: 10.0
max: 20.0
jump_strength:
min: 0.2
max: 1.5
movement_speed:
min: 0.1
max: 0.3
takes-damage-from-water: false
always-drop-exp: false
tropical_fish:
ridable: false
controllable: true
attributes:
max_health: 3.0
takes-damage-from-water: false
always-drop-exp: false
wandering_trader:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 20.0
follow-emerald-blocks: true
can-be-leashed: false
takes-damage-from-water: false
allow-trading: true
always-drop-exp: false
trader_llama:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health:
min: 10.0
max: 35.0
jump_strength:
min: 0.4
max: 0.6
movement_speed:
min: 0.17
max: 0.18
breeding-delay-ticks: 6000
takes-damage-from-water: false
always-drop-exp: false
zombie_horse:
ridable: false
ridable-in-water: true
can-swim: false
attributes:
max_health:
min: 15.0
max: 15.0
jump_strength:
min: 0.4
max: 1.0
movement_speed:
min: 0.2
max: 0.2
spawn-chance: 0.0
takes-damage-from-water: false
always-drop-exp: false
zombie_villager:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 20.0
spawn_reinforcements: 0.1
jockey:
only-babies: true
chance: 0.05
try-existing-chickens: true
takes-damage-from-water: false
curing_time:
min: 3600
max: 6000
cure:
enabled: true
always-drop-exp: false
wither_skeleton:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 20.0
takes-damage-from-water: false
always-drop-exp: false
zombified_piglin:
ridable: false
ridable-in-water: false
controllable: true
attributes:
max_health: 20.0
spawn_reinforcements: 0.0