Skip to content

Commit

Permalink
v1.21.70.25
Browse files Browse the repository at this point in the history
  • Loading branch information
Xterionix committed Mar 3, 2025
1 parent aa57383 commit 17073c1
Show file tree
Hide file tree
Showing 188 changed files with 8,238 additions and 3,904 deletions.
6 changes: 3 additions & 3 deletions behavior_pack/entities/axolotl.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"format_version": "1.16.0",
"format_version": "1.21.70",
"minecraft:entity": {
"description": {
"identifier": "minecraft:axolotl",
Expand Down Expand Up @@ -133,7 +133,7 @@
"minecraft:is_hidden_when_invisible": {
},
"minecraft:type_family": {
"family": [ "axolotl", "mob" ]
"family": [ "aquatic", "axolotl", "mob" ]
},
"minecraft:collision_box": {
"width": 0.75,
Expand All @@ -154,7 +154,7 @@
"minecraft:damage_sensor": {
"triggers": {
"cause": "lightning",
"deals_damage": true,
"deals_damage": "yes",
"damage_multiplier": 2000.0
}
},
Expand Down
18 changes: 13 additions & 5 deletions behavior_pack/entities/bee.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"format_version": "1.21.50",
"format_version": "1.21.70",
"minecraft:entity": {
"description": {
"identifier": "minecraft:bee",
Expand Down Expand Up @@ -47,7 +47,9 @@
"minecraft:pitcher_plant",
"minecraft:torchflower",
"minecraft:cherry_leaves",
"minecraft:pink_petals"
"minecraft:pink_petals",
"minecraft:wildflowers",
"minecraft:cactus_flower"
],
"grow_up": {
"event": "minecraft:ageable_grow_up",
Expand Down Expand Up @@ -102,7 +104,9 @@
"minecraft:pitcher_plant",
"minecraft:torchflower",
"minecraft:cherry_leaves",
"minecraft:pink_petals"
"minecraft:pink_petals",
"minecraft:wildflowers",
"minecraft:cactus_flower"
]
}
},
Expand Down Expand Up @@ -244,7 +248,9 @@
"minecraft:torchflower",
"minecraft:cherry_leaves",
"minecraft:pink_petals",
"minecraft:open_eyeblossom"
"minecraft:open_eyeblossom",
"minecraft:wildflowers",
"minecraft:cactus_flower"
],
"on_stay_completed": [
{
Expand Down Expand Up @@ -510,7 +516,9 @@
"minecraft:torchflower",
"minecraft:cherry_leaves",
"minecraft:pink_petals",
"minecraft:open_eyeblossom"
"minecraft:open_eyeblossom",
"minecraft:wildflowers",
"minecraft:cactus_flower"
]
},
"minecraft:behavior.move_towards_home_restriction": {
Expand Down
147 changes: 122 additions & 25 deletions behavior_pack/entities/chicken.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
{
"format_version": "1.21.0",
"format_version": "1.21.70",
"minecraft:entity": {
"description": {
"identifier": "minecraft:chicken",
"spawn_category": "creature",
"is_spawnable": true,
"is_summonable": true
"is_summonable": true,
"properties": {
"minecraft:climate_variant": {
"type": "enum",
"values": [ "temperate", "warm", "cold" ],
"default": "temperate",
"client_sync": true
}
}
},

"component_groups": {
Expand Down Expand Up @@ -61,7 +69,10 @@
"pumpkin_seeds",
"pitcher_pod",
"torchflower_seeds"
]
],
"property_inheritance": {
"minecraft:climate_variant": {}
}
},
"minecraft:behavior.breed": {
"priority": 3,
Expand All @@ -77,15 +88,68 @@
}
},
"minecraft:spawn_entity": {
"entities": {
"min_wait_time": 300,
"max_wait_time": 600,
"spawn_sound": "plop",
"spawn_item": "egg",
"filters": {
"test": "rider_count", "subject": "self", "operator": "==", "value": 0
"entities": [
{
"min_wait_time": 300,
"max_wait_time": 600,
"spawn_sound": "plop",
"spawn_item": "egg",
"filters": [
{
"test": "rider_count",
"subject": "self",
"operator": "==",
"value": 0
},
{
"test": "enum_property",
"subject": "self",
"domain": "minecraft:climate_variant",
"value": "temperate"
}
]
},
{
"min_wait_time": 300,
"max_wait_time": 600,
"spawn_sound": "plop",
"spawn_item": "brown_egg",
"filters": [
{
"test": "rider_count",
"subject": "self",
"operator": "==",
"value": 0
},
{
"test": "enum_property",
"subject": "self",
"domain": "minecraft:climate_variant",
"value": "warm"
}
]
},
{
"min_wait_time": 300,
"max_wait_time": 600,
"spawn_sound": "plop",
"spawn_item": "blue_egg",
"filters": [
{
"test": "rider_count",
"subject": "self",
"operator": "==",
"value": 0
},
{
"test": "enum_property",
"subject": "self",
"domain": "minecraft:climate_variant",
"value": "cold"
}
]
}
}
]
}
}
},
Expand Down Expand Up @@ -125,7 +189,7 @@
"minecraft:damage_sensor": {
"triggers": {
"cause": "fall",
"deals_damage": false
"deals_damage": "no"
}
},
"minecraft:leashable": {
Expand Down Expand Up @@ -200,23 +264,45 @@
},

"events": {
"from_egg": {
"add": { "component_groups": [ "minecraft:chicken_baby" ] }
},

"minecraft:entity_spawned": {
"randomize": [
"sequence": [
{
"weight": 95,
"trigger": "minecraft:spawn_adult"
"randomize": [
{
"weight": 95,
"trigger": "minecraft:spawn_adult"
},
{
"weight": 5,
"add": {
"component_groups": [
"minecraft:chicken_baby"
]
}
}
]
},
{
"weight": 5,
"add": {
"component_groups": [
"minecraft:chicken_baby"
]
}
"first_valid": [
{
"filters": {
"test": "has_biome_tag",
"value": "spawns_warm_variant_farm_animals"
},
"set_property": {
"minecraft:climate_variant": "warm"
}
},
{
"filters": {
"test": "has_biome_tag",
"value": "spawns_cold_variant_farm_animals"
},
"set_property": {
"minecraft:climate_variant": "cold"
}
}
]
}
]
},
Expand Down Expand Up @@ -250,6 +336,17 @@
"minecraft:chicken_adult"
]
}
},

"minecraft:hatch_warm": {
"set_property": {
"minecraft:climate_variant": "warm"
}
},
"minecraft:hatch_cold": {
"set_property": {
"minecraft:climate_variant": "cold"
}
}
}
}
Expand Down
59 changes: 48 additions & 11 deletions behavior_pack/entities/cow.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
{
"format_version": "1.21.0",
"format_version": "1.21.70",
"minecraft:entity": {
"description": {
"identifier": "minecraft:cow",
"spawn_category": "creature",
"is_spawnable": true,
"is_summonable": true
"is_summonable": true,
"properties": {
"minecraft:climate_variant": {
"type": "enum",
"values": [ "temperate", "warm", "cold" ],
"default": "temperate",
"client_sync": true
}
}
},

"component_groups": {
Expand Down Expand Up @@ -50,6 +58,9 @@
"event": "minecraft:entity_born",
"target": "baby"
}
},
"property_inheritance": {
"minecraft:climate_variant": {}
}
},
"minecraft:interact": {
Expand Down Expand Up @@ -192,18 +203,44 @@

"events": {
"minecraft:entity_spawned": {
"randomize": [
"sequence": [
{
"weight": 95,
"trigger": "minecraft:spawn_adult"
"randomize": [
{
"weight": 95,
"trigger": "minecraft:spawn_adult"
},
{
"weight": 5,
"add": {
"component_groups": [
"minecraft:cow_baby"
]
}
}
]
},
{
"weight": 5,
"add": {
"component_groups": [
"minecraft:cow_baby"
]
}
"first_valid": [
{
"filters": {
"test": "has_biome_tag",
"value": "spawns_warm_variant_farm_animals"
},
"set_property": {
"minecraft:climate_variant": "warm"
}
},
{
"filters": {
"test": "has_biome_tag",
"value": "spawns_cold_variant_farm_animals"
},
"set_property": {
"minecraft:climate_variant": "cold"
}
}
]
}
]
},
Expand Down
4 changes: 2 additions & 2 deletions behavior_pack/entities/dolphin.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"format_version": "1.21.0",
"format_version": "1.21.70",
"minecraft:entity": {
"description": {
"identifier": "minecraft:dolphin",
Expand Down Expand Up @@ -149,7 +149,7 @@
"minecraft:nameable": {
},
"minecraft:type_family": {
"family": [ "dolphin", "mob" ]
"family": [ "aquatic", "dolphin", "mob" ]
},
"minecraft:collision_box": {
"width": 0.9,
Expand Down
Loading

0 comments on commit 17073c1

Please sign in to comment.