* - Added replacements for enderman block place/take behaviors
* - Added transport items goal
* - Added grass_is_shaded property
* - Removed experimental tag for movable component
* - Remove experimental tag from random offset
* - Added can_wear_armor field
* - Added "none" heightmap projection
* - Improved descriptions for jigsaw rule
* - Added blockstate and random block state predicates
* - Improve rule descriptions
* - Added min and max values for terrain texture variations
* - Update template pool with empty pool
* - Improved surface builder component
* - Added humidity biome component
* - Added partially frozen biome component
* - Renamed to rotation_axis_aligned
* - Added map_tints biome component
This commit is contained in:
Xterionix
2025-08-08 18:59:24 +05:00
committed by GitHub
parent b2f33a0ca9
commit 5503ea5612
25 changed files with 662 additions and 345 deletions

View File

@@ -24,7 +24,6 @@
"minecraft:block_climber": { "$ref": "./components/block_climber.json" },
"minecraft:block_sensor": { "$ref": "./components/block_sensor.json" },
"minecraft:body_rotation_always_follows_head": { "$ref": "./components/body_rotation_always_follows_head.json" },
"minecraft:body_rotation_axis_aligned": { "$ref": "./components/body_rotation_axis_aligned.json" },
"minecraft:body_rotation_blocked": { "$ref": "./components/body_rotation_blocked.json" },
"minecraft:boostable": { "$ref": "./components/boostable.json" },
"minecraft:boss": { "$ref": "./components/boss.json" },
@@ -169,6 +168,7 @@
"minecraft:rail_sensor": { "$ref": "./components/rail_sensor.json" },
"minecraft:ravager_blocked": { "$ref": "./components/ravager_blocked.json" },
"minecraft:rideable": { "$ref": "./components/rideable.json" },
"minecraft:rotation_axis_aligned": { "$ref": "./components/rotation_axis_aligned.json" },
"minecraft:reflect_projectiles": { "$ref": "./components/reflect_projectiles.json" },
"minecraft:remove_in_peaceful": { "$ref": "./components/remove_in_peaceful.json" },
"minecraft:renders_when_invisible": { "$ref": "./components/renders_when_invisible.json" },
@@ -241,8 +241,6 @@
"minecraft:behavior.eat_carried_item": { "$ref": "./behaviors/eat_carried_item.json" },
"minecraft:behavior.eat_mob": { "$ref": "./behaviors/eat_mob.json" },
"minecraft:behavior.emerge": { "$ref": "./behaviors/emerge.json" },
"minecraft:behavior.enderman_leave_block": { "$ref": "./behaviors/enderman_leave_block.json" },
"minecraft:behavior.enderman_take_block": { "$ref": "./behaviors/enderman_take_block.json" },
"minecraft:behavior.equip_item": { "$ref": "./behaviors/equip_item.json" },
"minecraft:behavior.explore_outskirts": { "$ref": "./behaviors/explore_outskirts.json" },
"minecraft:behavior.fertilize_farm_block": { "$ref": "./behaviors/fertilize_farm_block.json" },
@@ -311,6 +309,7 @@
"minecraft:behavior.panic": { "$ref": "./behaviors/panic.json" },
"minecraft:behavior.pet_sleep_with_owner": { "$ref": "./behaviors/pet_sleep_with_owner.json" },
"minecraft:behavior.pickup_items": { "$ref": "./behaviors/pickup_items.json" },
"minecraft:behavior.place_block": { "$ref": "./behaviors/place_block.json" },
"minecraft:behavior.play_dead": { "$ref": "./behaviors/play_dead.json" },
"minecraft:behavior.play": { "$ref": "./behaviors/play.json" },
"minecraft:behavior.player_ride_tamed": { "$ref": "./behaviors/player_ride_tamed.json" },
@@ -366,6 +365,7 @@
"minecraft:behavior.swim_wander": { "$ref": "./behaviors/swim_wander.json" },
"minecraft:behavior.swim_with_entity": { "$ref": "./behaviors/swim_with_entity.json" },
"minecraft:behavior.swoop_attack": { "$ref": "./behaviors/swoop_attack.json" },
"minecraft:behavior.take_block": { "$ref": "./behaviors/take_block.json" },
"minecraft:behavior.take_flower": { "$ref": "./behaviors/take_flower.json" },
"minecraft:behavior.teleport_to_owner": { "$ref": "./behaviors/teleport_to_owner.json" },
"minecraft:behavior.move_around_target": { "$ref": "./behaviors/move_around_target.json" },
@@ -376,6 +376,7 @@
"minecraft:behavior.timer_flag_3": { "$ref": "./behaviors/timer_flag.json" },
"minecraft:behavior.trade_interest": { "$ref": "./behaviors/trade_interest.json" },
"minecraft:behavior.trade_with_player": { "$ref": "./behaviors/trade_with_player.json" },
"minecraft:behavior.transport_items": { "$ref": "./behaviors/transport_items.json" },
"minecraft:behavior.vex_copy_owner_target": { "$ref": "./behaviors/vex_copy_owner_target.json" },
"minecraft:behavior.vex_random_move": { "$ref": "./behaviors/vex_random_move.json" },
"minecraft:behavior.wither_random_attack_pos_goal": { "$ref": "./behaviors/wither_random_attack_pos_goal.json" },