diff --git a/behavior_pack/entities/donkey.json b/behavior_pack/entities/donkey.json index 53c93f42c..5ba83d995 100644 --- a/behavior_pack/entities/donkey.json +++ b/behavior_pack/entities/donkey.json @@ -206,6 +206,9 @@ "container_type": "horse" }, "minecraft:breedable": { + "parent_centric_attribute_blending": [ + "minecraft:health" + ], "require_tame": true, "inherit_tamed": false, "breeds_with": [ diff --git a/behavior_pack/entities/ender_crystal.json b/behavior_pack/entities/ender_crystal.json index d3b08163f..03c93474f 100644 --- a/behavior_pack/entities/ender_crystal.json +++ b/behavior_pack/entities/ender_crystal.json @@ -22,8 +22,8 @@ "components": { "minecraft:collision_box": { - "width": 0.98, - "height": 0.98 + "width": 2, + "height": 2 }, "minecraft:health": { "value": 1, diff --git a/behavior_pack/entities/horse.json b/behavior_pack/entities/horse.json index 538019baf..5f59673e8 100644 --- a/behavior_pack/entities/horse.json +++ b/behavior_pack/entities/horse.json @@ -221,6 +221,11 @@ "container_type": "horse" }, "minecraft:breedable": { + "parent_centric_attribute_blending": [ + "minecraft:health", + "minecraft:movement", + "minecraft:horse.jump_strength" + ], "require_tame": true, "inherit_tamed": false, "breeds_with": [ @@ -245,7 +250,14 @@ "golden_carrot", "golden_apple", "appleEnchanted" - ] + ], + "mutation_factor": { + "extra_variant": 0.2, // 1/5 + "variant": 0.111 // ~1/9 + }, + "mutation_strategy": "random", + "random_variant_mutation_interval": [0, 7], + "random_extra_variant_mutation_interval": [0, 5] }, "minecraft:behavior.tempt": { "priority": 5, diff --git a/behavior_pack/entities/llama.json b/behavior_pack/entities/llama.json index 71caac54d..3f33986f2 100644 --- a/behavior_pack/entities/llama.json +++ b/behavior_pack/entities/llama.json @@ -52,6 +52,9 @@ "speed_multiplier": 1.0 }, "minecraft:breedable": { + "parent_centric_attribute_blending": [ + "minecraft:health" + ], "require_tame": true, "inherit_tamed": false, "breeds_with": { diff --git a/behavior_pack/entities/witch.json b/behavior_pack/entities/witch.json index c5fe2b0ac..22b305103 100644 --- a/behavior_pack/entities/witch.json +++ b/behavior_pack/entities/witch.json @@ -1,5 +1,5 @@ { - "format_version": "1.16.0", + "format_version": "1.19.60", "minecraft:entity": { "description": { "identifier": "minecraft:witch", @@ -106,6 +106,58 @@ "attack_interval_max": 3, "attack_radius": 10.0 }, + "minecraft:shooter": { + "power" : 0.75, + "def": "minecraft:splash_potion", + "aux_val" : 23, // harming + "sound" : "throw", + "projectiles" : [ + { + "def" : "minecraft:splash_potion", + "aux_val" : 17, // slowness + "filters" : { + "all_of" : [ + { "test" : "target_distance", "subject" : "self", "value" : 8.0, "operator" : ">="}, + { + "none_of":[ + { "test": "has_mob_effect", "subject": "other", "value": "slowness" } + ] + } + ] + } + }, + { + "def" : "minecraft:splash_potion", + "aux_val" : 25, // poison + "filters" : { + "all_of" : [ + { "test" : "actor_health", "subject" : "other", "value" : 8, "operator" : ">="}, + { + "none_of": [ + { "test": "has_mob_effect", "subject": "other", "value": "poison" } + ] + } + ] + } + }, + { + "def" : "minecraft:splash_potion", + "aux_val" : 34, // weakness + "filters" : { + "all_of" : [ + { "test" : "target_distance", "subject" : "self", "value" : 3, "operator" : "<="}, + { + "none_of":[ + { "test": "has_mob_effect", "subject": "other", "value": "weakness" } + ] + } + ] + }, + "chance" : 0.25 + } + ], + "magic" : true + }, "minecraft:behavior.random_stroll": { "priority": 4, "speed_multiplier": 1.0 @@ -118,6 +170,69 @@ "priority": 5, "look_distance": 8.0 }, + "minecraft:behavior.drink_potion": { + "priority": 1, + "speed_modifier": -0.25, + "potions": [ + { + "id": 19, // Water breathing + "chance": 0.15, + "filters": { + "all_of": [ + { "test": "is_underwater", "subject": "self", "value": true }, + { + "none_of": [ + { "test": "has_mob_effect", "subject": "self", "value": "water_breathing" } + ] + } + ] + } + }, + { + "id": 12, // Fire resistance + "chance": 0.15, + "filters": { + "all_of": [ + { + "any_of": [ + { "test": "on_fire", "subject": "self", "value": true }, + { "test": "on_hot_block", "subject": "self", "value": true } + ] + }, + { + "none_of": [ + { "test": "has_mob_effect", "subject": "self", "value": "fire_resistance" } + ] + } + ] + } + }, + { + "id": 21, // Healing + "chance": 0.05, + "filters": { + "all_of": [ + { "test": "is_missing_health", "subject": "self", "value": true } + ] + } + }, + { + "id": 14, // Swiftness + "chance": 0.25, + "filters": { + "all_of": [ + { "test": "has_target", "subject": "self", "value": true }, + { + "none_of": [ + { "test": "has_mob_effect", "subject": "self", "value": "speed" } + ] + }, + { "test": "target_distance", "subject": "self", "value": 11.0, "operator": ">=" } + ] + } + } + ] + }, "minecraft:behavior.hurt_by_target": { "priority": 1 }, diff --git a/behavior_pack/manifest.json b/behavior_pack/manifest.json index 5a9a50dfc..0a4949646 100644 --- a/behavior_pack/manifest.json +++ b/behavior_pack/manifest.json @@ -5,7 +5,7 @@ "name": "Vanilla Behavior Pack", "uuid": "ee649bcf-256c-4013-9068-6a802b89d756", "version": [ 0, 0, 1 ], - "min_engine_version": [ 1, 19, 60 ] + "min_engine_version": [ 1, 19, 70 ] }, "modules": [ { diff --git a/behavior_pack/spawn_rules/tropicalfish.json b/behavior_pack/spawn_rules/tropicalfish.json index d0ee9c73a..5676ac51d 100644 --- a/behavior_pack/spawn_rules/tropicalfish.json +++ b/behavior_pack/spawn_rules/tropicalfish.json @@ -215,7 +215,7 @@ "default": 75 }, "minecraft:density_limit": { - "surface": 20 + "underground": 20 }, "minecraft:herd": [ { @@ -347,7 +347,7 @@ "default": 25 }, "minecraft:density_limit": { - "surface": 20 + "underground": 20 }, "minecraft:herd": { "min_size": 1, diff --git a/behavior_pack/spawn_rules/zombie_pigman.json b/behavior_pack/spawn_rules/zombie_pigman.json index cb20f53d3..2d6639fa6 100644 --- a/behavior_pack/spawn_rules/zombie_pigman.json +++ b/behavior_pack/spawn_rules/zombie_pigman.json @@ -33,6 +33,12 @@ "test": "has_biome_tag", "operator": "==", "value": "spawn_zombified_piglin" + }, + + "minecraft:brightness_filter": { + "min": 0, + "max": 11, + "adjust_for_weather": true } }, { @@ -62,8 +68,14 @@ "test": "has_biome_tag", "operator": "==", "value": "spawn_few_zombified_piglins" + }, + + "minecraft:brightness_filter": { + "min": 0, + "max": 11, + "adjust_for_weather": true } } ] } -} \ No newline at end of file +} diff --git a/behavior_pack/trading/economy_trades/wandering_trader_trades.json b/behavior_pack/trading/economy_trades/wandering_trader_trades.json index 32e2cbf93..a33f1333e 100644 --- a/behavior_pack/trading/economy_trades/wandering_trader_trades.json +++ b/behavior_pack/trading/economy_trades/wandering_trader_trades.json @@ -355,34 +355,6 @@ } ] }, - { - "max_uses": 12, - "weight":4, - "wants": [ - { - "item": "minecraft:emerald", - "quantity": 1 - } - ], - "gives": [ - { - "choice": [ - { - "item": "minecraft:wheat_seeds" - }, - { - "item": "minecraft:pumpkin_seeds" - }, - { - "item": "minecraft:melon_seeds" - }, - { - "item": "minecraft:beetroot_seeds" - } - ] - } - ] - }, { "max_uses": 8, "weight":6, @@ -702,4 +674,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/documentation/Addons.html b/documentation/Addons.html index e1f795166..a6a887111 100644 --- a/documentation/Addons.html +++ b/documentation/Addons.html @@ -1,4 +1,4 @@ -

ADDONS DOCUMENTATION
Version: 1.19.60.3

+

ADDONS DOCUMENTATION
Version: 1.19.70.2

Index

@@ -100,6 +100,12 @@

BlockStates

+ + + + + + @@ -854,6 +860,9 @@

Blocks

+ + + @@ -884,6 +893,9 @@

Blocks

+ + + @@ -917,6 +929,9 @@

Blocks

+ + + @@ -1175,6 +1190,9 @@

Blocks

+ + + @@ -1214,6 +1232,9 @@

Blocks

+ + + @@ -1823,6 +1844,9 @@

Blocks

+ + + @@ -1832,6 +1856,9 @@

Blocks

+ + + @@ -1979,12 +2006,18 @@

Blocks

+ + + + + + @@ -2000,6 +2033,9 @@

Blocks

+ + + @@ -2042,6 +2078,9 @@

Blocks

+ + + @@ -2216,6 +2255,9 @@

Blocks

+ + + @@ -2249,6 +2291,9 @@

Blocks

+ + + @@ -2366,6 +2411,9 @@

Blocks

+ + + @@ -2426,6 +2474,9 @@

Blocks

+ + + @@ -2696,6 +2747,9 @@

Blocks

+ + + @@ -2714,6 +2768,12 @@

Blocks

+ + + + + + @@ -2921,6 +2981,9 @@

Blocks

+ + + @@ -2939,9 +3002,6 @@

Blocks

- - - @@ -2953,6 +3013,9 @@

Blocks

+ + +
BlockStates
Determines if a bottle is shown in slot c of the brewing stand
brushed_progressInteger0 - 3Describes how "brushed" a block is
button_pressed_bit Boolean True, False minecraft:black_glazed_terracotta
minecraft:black_wool
minecraft:blackstone
minecraft:blue_ice
minecraft:blue_wool
minecraft:bone_block
minecraft:brown_mushroom_block
minecraft:brown_wool
minecraft:bubble_column
minecraft:cyan_glazed_terracotta
minecraft:cyan_wool
minecraft:dark_oak_button
minecraft:deadbush
minecraft:decorated_pot
minecraft:deepslate
minecraft:gray_glazed_terracotta
minecraft:gray_wool
minecraft:green_candle
minecraft:green_glazed_terracotta
minecraft:green_wool
minecraft:grindstone
minecraft:light_blue_glazed_terracotta
minecraft:light_blue_wool
minecraft:light_gray_candle
minecraft:light_gray_candle_cake
minecraft:light_gray_wool
minecraft:light_weighted_pressure_plate
minecraft:lime_glazed_terracotta
minecraft:lime_wool
minecraft:lit_blast_furnace
minecraft:magenta_glazed_terracotta
minecraft:magenta_wool
minecraft:magma
minecraft:orange_glazed_terracotta
minecraft:orange_wool
minecraft:oxidized_copper
minecraft:pink_glazed_terracotta
minecraft:pink_wool
minecraft:piston
minecraft:purple_glazed_terracotta
minecraft:purple_wool
minecraft:purpur_block
minecraft:red_sandstone_stairs
minecraft:red_wool
minecraft:redstone_block
minecraft:structure_void
minecraft:suspicious_sand
minecraft:sweet_berry_bush
minecraft:torch
minecraft:torchflower
minecraft:torchflower_crop
minecraft:trapdoor
minecraft:white_glazed_terracotta
minecraft:white_wool
minecraft:wither_rose
minecraft:wooden_slab
minecraft:wool
minecraft:yellow_candle
minecraft:yellow_glazed_terracotta
minecraft:yellow_wool
Back to top

@@ -3858,7 +3921,7 @@

Items

Name ID Aux Values acacia_boat -379 +380 @@ -3868,12 +3931,12 @@

Items

acacia_chest_boat -648 +649 acacia_door -561 +562 @@ -3893,7 +3956,7 @@

Items

acacia_sign -584 +585 @@ -3923,7 +3986,7 @@

Items

agent_spawn_egg -487 +488 @@ -3933,7 +3996,7 @@

Items

allay_spawn_egg -637 +638 @@ -3953,7 +4016,7 @@

Items

amethyst_shard -630 +631 @@ -3977,23 +4040,33 @@

Items

+archer_pottery_shard +660 + + + armor_stand -557 +558 + + + +arms_up_pottery_shard +661 arrow -301 +302 axolotl_bucket -369 +370 axolotl_spawn_egg -501 +502 @@ -4018,7 +4091,7 @@

Items

balloon -604 +605 @@ -4038,7 +4111,7 @@

Items

bamboo_chest_raft -657 +658 @@ -4098,7 +4171,7 @@

Items

bamboo_raft -656 +657 @@ -4108,7 +4181,7 @@

Items

bamboo_sign -655 +656 @@ -4138,12 +4211,12 @@

Items

banner -572 +573 banner_pattern -661 +668 @@ -4163,7 +4236,7 @@

Items

bat_spawn_egg -453 +454 @@ -4173,7 +4246,7 @@

Items

bed -418 +419 @@ -4188,7 +4261,7 @@

Items

bee_spawn_egg -494 +495 @@ -4228,7 +4301,7 @@

Items

birch_boat -376 +377 @@ -4238,12 +4311,12 @@

Items

birch_chest_boat -645 +646 birch_door -559 +560 @@ -4263,7 +4336,7 @@

Items

birch_sign -582 +583 @@ -4298,7 +4371,7 @@

Items

black_dye -395 +396 @@ -4307,6 +4380,11 @@

Items

+black_wool +-554 + + + blackstone -273 @@ -4338,22 +4416,22 @@

Items

blaze_powder -429 +430 blaze_rod -423 +424 blaze_spawn_egg -456 +457 bleach -602 +603 @@ -4368,7 +4446,7 @@

Items

blue_dye -399 +400 @@ -4382,13 +4460,18 @@

Items

+blue_wool +-563 + + + boat -659 +666 bone -415 +416 @@ -4398,12 +4481,12 @@

Items

bone_meal -411 +412 book -387 +388 @@ -4418,17 +4501,17 @@

Items

bordure_indented_banner_pattern -591 +592 bow -300 +301 bowl -321 +322 @@ -4438,12 +4521,12 @@

Items

brewing_stand -431 +432 brick -383 +384 @@ -4468,7 +4551,7 @@

Items

brown_dye -398 +399 @@ -4487,13 +4570,23 @@

Items

+brown_wool +-555 + + + +brush +664 + + + bubble_column -160 bucket -360 +361 @@ -4508,7 +4601,7 @@

Items

cake -417 +418 @@ -4518,17 +4611,17 @@

Items

camel_spawn_egg -658 +659 camera -599 +600 campfire -594 +595 @@ -4553,7 +4646,7 @@

Items

carrot_on_a_stick -522 +523 @@ -4573,17 +4666,17 @@

Items

cat_spawn_egg -488 +489 cauldron -432 +433 cave_spider_spawn_egg -457 +458 @@ -4603,7 +4696,7 @@

Items

chain -625 +626 @@ -4613,27 +4706,27 @@

Items

chainmail_boots -342 +343 chainmail_chestplate -340 +341 chainmail_helmet -339 +340 chainmail_leggings -341 +342 charcoal -303 +304 @@ -4653,12 +4746,12 @@

Items

chest_boat -651 +652 chest_minecart -389 +390 @@ -4668,7 +4761,7 @@

Items

chicken_spawn_egg -435 +436 @@ -4698,7 +4791,7 @@

Items

chorus_fruit -563 +564 @@ -4713,7 +4806,7 @@

Items

clay_ball -384 +385 @@ -4723,12 +4816,12 @@

Items

clock -393 +394 coal -302 +303 @@ -4783,7 +4876,7 @@

Items

cocoa_beans -412 +413 @@ -4793,12 +4886,12 @@

Items

cod_bucket -364 +365 cod_spawn_egg -480 +481 @@ -4818,17 +4911,17 @@

Items

command_block_minecart -568 +569 comparator -527 +528 compass -391 +392 @@ -4838,7 +4931,7 @@

Items

compound -600 +601 @@ -4873,7 +4966,7 @@

Items

cooked_mutton -556 +557 @@ -4903,7 +4996,7 @@

Items

copper_ingot -509 +510 @@ -4948,7 +5041,7 @@

Items

cow_spawn_egg -436 +437 @@ -4978,12 +5071,12 @@

Items

creeper_banner_pattern -587 +588 creeper_spawn_egg -441 +442 @@ -4993,7 +5086,7 @@

Items

crimson_door -622 +623 @@ -5048,7 +5141,7 @@

Items

crimson_sign -620 +621 @@ -5083,7 +5176,7 @@

Items

crossbow -580 +581 @@ -5118,7 +5211,7 @@

Items

cyan_dye -401 +402 @@ -5127,8 +5220,13 @@

Items

+cyan_wool +-561 + + + dark_oak_boat -380 +381 @@ -5138,12 +5236,12 @@

Items

dark_oak_chest_boat -649 +650 dark_oak_door -562 +563 @@ -5163,7 +5261,7 @@

Items

dark_oak_sign -585 +586 @@ -5208,7 +5306,12 @@

Items

debug_stick -596 +597 + + + +decorated_pot +-551 @@ -5318,12 +5421,12 @@

Items

diamond -304 +305 diamond_axe -319 +320 @@ -5333,32 +5436,32 @@

Items

diamond_boots -350 +351 diamond_chestplate -348 +349 diamond_helmet -347 +348 diamond_hoe -332 +333 diamond_horse_armor -538 +539 diamond_leggings -349 +350 @@ -5368,17 +5471,17 @@

Items

diamond_pickaxe -318 +319 diamond_shovel -317 +318 diamond_sword -316 +317 @@ -5398,7 +5501,7 @@

Items

disc_fragment_5 -643 +644 @@ -5408,12 +5511,12 @@

Items

dolphin_spawn_egg -484 +485 donkey_spawn_egg -465 +466 @@ -5453,7 +5556,7 @@

Items

dragon_breath -565 +566 @@ -5483,27 +5586,27 @@

Items

drowned_spawn_egg -483 +484 dye -660 +667 echo_shard -653 +654 egg -390 +391 elder_guardian_spawn_egg -471 +472 @@ -6103,12 +6206,12 @@

Items

elytra -569 +570 emerald -517 +518 @@ -6123,12 +6226,12 @@

Items

empty_map -520 +521 enchanted_book -526 +527 @@ -6153,7 +6256,7 @@

Items

end_crystal -663 +670 @@ -6188,37 +6291,37 @@

Items

ender_dragon_spawn_egg -506 +507 ender_eye -433 +434 ender_pearl -422 +423 enderman_spawn_egg -442 +443 endermite_spawn_egg -460 +461 evoker_spawn_egg -475 +476 experience_bottle -513 +514 @@ -6253,7 +6356,7 @@

Items

feather -327 +328 @@ -6268,17 +6371,17 @@

Items

fermented_spider_eye -428 +429 field_masoned_banner_pattern -590 +591 filled_map -420 +421 @@ -6288,22 +6391,22 @@

Items

fire_charge -514 +515 firework_rocket -524 +525 firework_star -525 +526 fishing_rod -392 +393 @@ -6313,22 +6416,22 @@

Items

flint -356 +357 flint_and_steel -299 +300 flower_banner_pattern -586 +587 flower_pot -519 +520 @@ -6348,12 +6451,12 @@

Items

fox_spawn_egg -490 +491 frame -518 +519 @@ -6363,7 +6466,7 @@

Items

frog_spawn_egg -634 +635 @@ -6378,12 +6481,12 @@

Items

ghast_spawn_egg -454 +455 ghast_tear -424 +425 @@ -6398,7 +6501,7 @@

Items

glass_bottle -427 +428 @@ -6408,22 +6511,22 @@

Items

glistering_melon_slice -434 +435 globe_banner_pattern -593 +594 glow_frame -629 +630 glow_ink_sac -508 +509 @@ -6433,12 +6536,12 @@

Items

glow_squid_spawn_egg -503 +504 glow_stick -607 +608 @@ -6453,17 +6556,17 @@

Items

glowstone_dust -394 +395 goat_horn -633 +634 goat_spawn_egg -502 +503 @@ -6473,12 +6576,12 @@

Items

gold_ingot -306 +307 gold_nugget -425 +426 @@ -6493,12 +6596,12 @@

Items

golden_axe -325 +326 golden_boots -354 +355 @@ -6508,32 +6611,32 @@

Items

golden_chestplate -352 +353 golden_helmet -351 +352 golden_hoe -333 +334 golden_horse_armor -537 +538 golden_leggings -353 +354 golden_pickaxe -324 +325 @@ -6543,12 +6646,12 @@

Items

golden_shovel -323 +324 golden_sword -322 +323 @@ -6583,7 +6686,7 @@

Items

gray_dye -403 +404 @@ -6592,6 +6695,11 @@

Items

+gray_wool +-553 + + + green_candle -426 @@ -6603,7 +6711,7 @@

Items

green_dye -397 +398 @@ -6612,18 +6720,23 @@

Items

+green_wool +-560 + + + grindstone -195 guardian_spawn_egg -461 +462 gunpowder -328 +329 @@ -6663,7 +6776,7 @@

Items

heart_of_the_sea -576 +577 @@ -6673,7 +6786,7 @@

Items

hoglin_spawn_egg -496 +497 @@ -6683,12 +6796,12 @@

Items

honey_bottle -598 +599 honeycomb -597 +598 @@ -6698,22 +6811,22 @@

Items

hopper -532 +533 hopper_minecart -531 +532 horse_spawn_egg -458 +459 husk_spawn_egg -463 +464 @@ -6723,7 +6836,7 @@

Items

ice_bomb -601 +602 @@ -6743,7 +6856,7 @@

Items

ink_sac -413 +414 @@ -6753,7 +6866,7 @@

Items

iron_axe -298 +299 @@ -6768,52 +6881,52 @@

Items

iron_boots -346 +347 iron_chestplate -344 +345 iron_door -372 +373 iron_golem_spawn_egg -504 +505 iron_helmet -343 +344 iron_hoe -331 +332 iron_horse_armor -536 +537 iron_ingot -305 +306 iron_leggings -345 +346 iron_nugget -574 +575 @@ -6823,17 +6936,17 @@

Items

iron_pickaxe -297 +298 iron_shovel -296 +297 iron_sword -307 +308 @@ -6998,7 +7111,7 @@

Items

jungle_boat -377 +378 @@ -7008,12 +7121,12 @@

Items

jungle_chest_boat -646 +647 jungle_door -560 +561 @@ -7033,7 +7146,7 @@

Items

jungle_sign -583 +584 @@ -7058,7 +7171,7 @@

Items

kelp -382 +383 @@ -7078,7 +7191,7 @@

Items

lapis_lazuli -414 +415 @@ -7098,7 +7211,7 @@

Items

lava_bucket -363 +364 @@ -7108,37 +7221,37 @@

Items

lead -552 +553 leather -381 +382 leather_boots -338 +339 leather_chestplate -336 +337 leather_helmet -335 +336 leather_horse_armor -535 +536 leather_leggings -337 +338 @@ -7178,7 +7291,7 @@

Items

light_blue_dye -407 +408 @@ -7187,6 +7300,11 @@

Items

+light_blue_wool +-562 + + + light_gray_candle -421 @@ -7198,7 +7316,12 @@

Items

light_gray_dye -402 +403 + + + +light_gray_wool +-552 @@ -7223,7 +7346,7 @@

Items

lime_dye -405 +406 @@ -7232,8 +7355,13 @@

Items

+lime_wool +-559 + + + lingering_potion -567 +568 @@ -7273,7 +7401,7 @@

Items

llama_spawn_egg -473 +474 @@ -7283,7 +7411,7 @@

Items

lodestone_compass -608 +609 @@ -7313,7 +7441,7 @@

Items

magenta_dye -408 +409 @@ -7322,23 +7450,28 @@

Items

+magenta_wool +-565 + + + magma 213 magma_cream -430 +431 magma_cube_spawn_egg -455 +456 mangrove_boat -641 +642 @@ -7348,12 +7481,12 @@

Items

mangrove_chest_boat -650 +651 mangrove_door -639 +640 @@ -7408,7 +7541,7 @@

Items

mangrove_sign -640 +641 @@ -7443,7 +7576,7 @@

Items

medicine -605 +606 @@ -7473,12 +7606,12 @@

Items

milk_bucket -361 +362 minecart -370 +371 @@ -7488,7 +7621,7 @@

Items

mojang_banner_pattern -589 +590 @@ -7498,7 +7631,7 @@

Items

mooshroom_spawn_egg -440 +441 @@ -7568,7 +7701,7 @@

Items

mule_spawn_egg -466 +467 @@ -7578,82 +7711,82 @@

Items

music_disc_11 -549 +550 music_disc_13 -539 +540 music_disc_5 -642 +643 music_disc_blocks -541 +542 music_disc_cat -540 +541 music_disc_chirp -542 +543 music_disc_far -543 +544 music_disc_mall -544 +545 music_disc_mellohi -545 +546 music_disc_otherside -632 +633 music_disc_pigstep -626 +627 music_disc_stal -546 +547 music_disc_strad -547 +548 music_disc_wait -550 +551 music_disc_ward -548 +549 mutton -555 +556 @@ -7663,12 +7796,12 @@

Items

name_tag -553 +554 nautilus_shell -575 +576 @@ -7693,12 +7826,12 @@

Items

nether_sprouts -627 +628 nether_star -523 +524 @@ -7713,12 +7846,12 @@

Items

netherbrick -528 +529 netherite_axe -613 +614 @@ -7728,52 +7861,52 @@

Items

netherite_boots -618 +619 netherite_chestplate -616 +617 netherite_helmet -615 +616 netherite_hoe -614 +615 netherite_ingot -609 +610 netherite_leggings -617 +618 netherite_pickaxe -612 +613 netherite_scrap -619 +620 netherite_shovel -611 +612 netherite_sword -610 +611 @@ -7798,17 +7931,17 @@

Items

npc_spawn_egg -470 +471 oak_boat -375 +376 oak_chest_boat -644 +645 @@ -7818,7 +7951,7 @@

Items

oak_sign -358 +359 @@ -7838,7 +7971,7 @@

Items

ocelot_spawn_egg -451 +452 @@ -7858,7 +7991,7 @@

Items

orange_dye -409 +410 @@ -7867,6 +8000,11 @@

Items

+orange_wool +-557 + + + oxidized_copper -343 @@ -7903,22 +8041,22 @@

Items

painting -357 +358 panda_spawn_egg -489 +490 paper -386 +387 parrot_spawn_egg -478 +479 @@ -7928,37 +8066,37 @@

Items

phantom_membrane -579 +580 phantom_spawn_egg -486 +487 pig_spawn_egg -437 +438 piglin_banner_pattern -592 +593 piglin_brute_spawn_egg -499 +500 piglin_spawn_egg -497 +498 pillager_spawn_egg -491 +492 @@ -7973,7 +8111,7 @@

Items

pink_dye -404 +405 @@ -7982,6 +8120,11 @@

Items

+pink_wool +-566 + + + piston 33 @@ -8013,7 +8156,7 @@

Items

polar_bear_spawn_egg -472 +473 @@ -8123,7 +8266,7 @@

Items

popped_chorus_fruit -564 +565 @@ -8148,7 +8291,7 @@

Items

potion -426 +427 @@ -8158,7 +8301,7 @@

Items

powder_snow_bucket -368 +369 @@ -8183,12 +8326,12 @@

Items

prismarine_crystals -554 +555 prismarine_shard -570 +571 @@ -8197,18 +8340,23 @@

Items

+prize_pottery_shard +662 + + + pufferfish 267 pufferfish_bucket -367 +368 pufferfish_spawn_egg -481 +482 @@ -8243,7 +8391,7 @@

Items

purple_dye -400 +401 @@ -8252,6 +8400,11 @@

Items

+purple_wool +-564 + + + purpur_block 201 @@ -8263,7 +8416,7 @@

Items

quartz -529 +530 @@ -8293,17 +8446,17 @@

Items

rabbit_foot -533 +534 rabbit_hide -534 +535 rabbit_spawn_egg -459 +460 @@ -8318,17 +8471,17 @@

Items

rapid_fertilizer -603 +604 ravager_spawn_egg -493 +494 raw_copper -512 +513 @@ -8338,7 +8491,7 @@

Items

raw_gold -511 +512 @@ -8348,7 +8501,7 @@

Items

raw_iron -510 +511 @@ -8358,7 +8511,7 @@

Items

recovery_compass -652 +653 @@ -8373,7 +8526,7 @@

Items

red_dye -396 +397 @@ -8417,8 +8570,13 @@

Items

+red_wool +-556 + + + redstone -373 +374 @@ -8453,7 +8611,7 @@

Items

repeater -419 +420 @@ -8478,7 +8636,7 @@

Items

saddle -371 +372 @@ -8488,12 +8646,12 @@

Items

salmon_bucket -365 +366 salmon_spawn_egg -482 +483 @@ -8548,7 +8706,7 @@

Items

scute -577 +578 @@ -8568,17 +8726,17 @@

Items

shears -421 +422 sheep_spawn_egg -438 +439 shield -355 +356 @@ -8593,12 +8751,12 @@

Items

shulker_shell -571 +572 shulker_spawn_egg -469 +470 @@ -8608,27 +8766,32 @@

Items

silverfish_spawn_egg -443 +444 skeleton_horse_spawn_egg -467 +468 skeleton_spawn_egg -444 +445 skull -521 +522 0 = Skeleton

1 = Wither

2 = Zombie

3 = Steve

4 = Creeper

5 = Dragon
6 = Piglin
skull_banner_pattern -588 +589 + + + +skull_pottery_shard +663 @@ -8638,12 +8801,12 @@

Items

slime_ball -388 +389 slime_spawn_egg -445 +446 @@ -8693,7 +8856,7 @@

Items

sniffer_spawn_egg -500 +501 @@ -8703,7 +8866,7 @@

Items

snow_golem_spawn_egg -505 +506 @@ -8713,12 +8876,12 @@

Items

snowball -374 +375 soul_campfire -628 +629 @@ -8748,12 +8911,12 @@

Items

sparkler -606 +607 spawn_egg -662 +669 @@ -8763,12 +8926,12 @@

Items

spider_spawn_egg -446 +447 splash_potion -566 +567 @@ -8783,7 +8946,7 @@

Items

spruce_boat -378 +379 @@ -8793,12 +8956,12 @@

Items

spruce_chest_boat -647 +648 spruce_door -558 +559 @@ -8818,7 +8981,7 @@

Items

spruce_sign -581 +582 @@ -8843,12 +9006,12 @@

Items

spyglass -631 +632 squid_spawn_egg -450 +451 @@ -8878,7 +9041,7 @@

Items

stick -320 +321 @@ -8898,7 +9061,7 @@

Items

stone_axe -315 +316 @@ -8933,12 +9096,12 @@

Items

stone_hoe -330 +331 stone_pickaxe -314 +315 @@ -8948,7 +9111,7 @@

Items

stone_shovel -313 +314 @@ -8958,7 +9121,7 @@

Items

stone_sword -312 +313 @@ -8978,17 +9141,17 @@

Items

stray_spawn_egg -462 +463 strider_spawn_egg -495 +496 string -326 +327 @@ -9068,17 +9231,22 @@

Items

sugar -416 +417 sugar_cane -385 +386 + + + +suspicious_sand +-529 suspicious_stew -595 +596 @@ -9093,12 +9261,12 @@

Items

tadpole_bucket -636 +637 tadpole_spawn_egg -635 +636 @@ -9123,7 +9291,7 @@

Items

tnt_minecart -530 +531 @@ -9132,13 +9300,28 @@

Items

+torchflower +-568 + + + +torchflower_crop +-567 + + + +torchflower_seeds +296 + + + totem_of_undying -573 +574 trader_llama_spawn_egg -654 +655 @@ -9153,7 +9336,7 @@

Items

trident -551 +552 @@ -9173,12 +9356,12 @@

Items

tropical_fish_bucket -366 +367 tropical_fish_spawn_egg -479 +480 @@ -9193,12 +9376,12 @@

Items

turtle_helmet -578 +579 turtle_spawn_egg -485 +486 @@ -9243,17 +9426,17 @@

Items

vex_spawn_egg -476 +477 villager_spawn_egg -449 +450 vindicator_spawn_egg -474 +475 @@ -9273,12 +9456,12 @@

Items

wandering_trader_spawn_egg -492 +493 warden_spawn_egg -638 +639 @@ -9288,7 +9471,7 @@

Items

warped_door -623 +624 @@ -9313,7 +9496,7 @@

Items

warped_fungus_on_a_stick -624 +625 @@ -9348,7 +9531,7 @@

Items

warped_sign -621 +622 @@ -9393,7 +9576,7 @@

Items

water_bucket -362 +363 @@ -9538,7 +9721,7 @@

Items

wheat -334 +335 @@ -9558,7 +9741,7 @@

Items

white_dye -410 +411 @@ -9567,8 +9750,13 @@

Items

+white_wool +35 + + + witch_spawn_egg -452 +453 @@ -9578,17 +9766,17 @@

Items

wither_skeleton_spawn_egg -464 +465 wither_spawn_egg -507 +508 wolf_spawn_egg -439 +440 @@ -9598,7 +9786,7 @@

Items

wooden_axe -311 +312 @@ -9608,17 +9796,17 @@

Items

wooden_door -359 +360 wooden_hoe -329 +330 wooden_pickaxe -310 +311 @@ -9628,7 +9816,7 @@

Items

wooden_shovel -309 +310 @@ -9638,22 +9826,22 @@

Items

wooden_sword -308 +309 wool -35 +665 writable_book -515 +516 written_book -516 +517 @@ -9668,7 +9856,7 @@

Items

yellow_dye -406 +407 @@ -9682,28 +9870,33 @@

Items

+yellow_wool +-558 + + + zoglin_spawn_egg -498 +499 zombie_horse_spawn_egg -468 +469 zombie_pigman_spawn_egg -448 +449 zombie_spawn_egg -447 +448 zombie_villager_spawn_egg -477 +478 diff --git a/documentation/Animations.html b/documentation/Animations.html index 5637b3831..0cee709cb 100644 --- a/documentation/Animations.html +++ b/documentation/Animations.html @@ -1,4 +1,4 @@ -

ANIMATIONS DOCUMENTATION
Version: 1.19.60.3

+

ANIMATIONS DOCUMENTATION
Version: 1.19.70.2

Index

diff --git a/documentation/Biomes.html b/documentation/Biomes.html index 4bfda8ed0..d1ee81b98 100644 --- a/documentation/Biomes.html +++ b/documentation/Biomes.html @@ -1,4 +1,4 @@ -

BIOMES DOCUMENTATION
Version: 1.19.60.3

+

BIOMES DOCUMENTATION
Version: 1.19.70.2

Index

Animation Controllers
diff --git a/documentation/Blocks.html b/documentation/Blocks.html index dda07ca55..4755b8677 100644 --- a/documentation/Blocks.html +++ b/documentation/Blocks.html @@ -1,4 +1,4 @@ -

BLOCKS DOCUMENTATION
Version: 1.19.60.3

+

BLOCKS DOCUMENTATION
Version: 1.19.70.2

Index

Overview
@@ -395,7 +395,7 @@

Block Definition Properties

Code Example

Example
Blocks