Skip to content

Commit

Permalink
v1.19.60.20-preview
Browse files Browse the repository at this point in the history
  • Loading branch information
mammerla committed Nov 23, 2022
1 parent 43ae725 commit 82fade5
Show file tree
Hide file tree
Showing 88 changed files with 2,153 additions and 1,151 deletions.
5 changes: 1 addition & 4 deletions behavior_pack/entities/husk.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
},
"minecraft:is_baby": {},
"minecraft:scale": {
"value": 0.53125
"value": 0.5
},
"minecraft:movement": {
"value": 0.35
Expand Down Expand Up @@ -98,9 +98,6 @@
"speed_multiplier": 1.25,
"target_dist": 0.0,
"track_target": true
},
"minecraft:scale": {
"value": 1.0625
}
},

Expand Down
1 change: 1 addition & 0 deletions behavior_pack/entities/player.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@
"allow_name_tag_renaming": false
},
"minecraft:physics": {
"push_towards_closest_space": true
},
"minecraft:pushable": {
"is_pushable": false,
Expand Down
19 changes: 17 additions & 2 deletions behavior_pack/entities/villager.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"format_version": "1.19.50",
"format_version": "1.19.60",
"minecraft:entity": {
"description": {
"identifier": "minecraft:villager",
Expand Down Expand Up @@ -437,7 +437,22 @@
"priority": 0
},
"minecraft:behavior.trade_with_player": {
"priority": 1
"priority": 1,
"filters": {
"all_of": [
{
"all_of": [
{ "test": "in_water", "value": false }
]
},
{
"any_of": [
{ "test": "on_ground", "value": true },
{ "test": "is_sleeping", "value": true }
]
}
]
}
},
"minecraft:behavior.look_at_trading_player": {
"priority": 2
Expand Down
19 changes: 17 additions & 2 deletions behavior_pack/entities/villager_v2.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"format_version": "1.19.50",
"format_version": "1.19.60",
"minecraft:entity": {
"description": {
"identifier": "minecraft:villager_v2",
Expand Down Expand Up @@ -1564,7 +1564,22 @@
"speed_multiplier": 0.6
},
"minecraft:behavior.trade_with_player": {
"priority": 2
"priority": 2,
"filters": {
"all_of": [
{
"all_of": [
{ "test": "in_water", "value": false }
]
},
{
"any_of": [
{ "test": "on_ground", "value": true },
{ "test": "is_sleeping", "value": true }
]
}
]
}
},
"minecraft:behavior.avoid_mob_type": {
"priority": 4,
Expand Down
19 changes: 17 additions & 2 deletions behavior_pack/entities/wandering_trader.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"format_version": "1.16.0",
"format_version": "1.19.60",
"minecraft:entity": {
"description": {
"identifier": "minecraft:wandering_trader",
Expand Down Expand Up @@ -154,7 +154,22 @@
]
},
"minecraft:behavior.trade_with_player": {
"priority": 1
"priority": 1,
"filters": {
"all_of": [
{
"all_of": [
{ "test": "in_water", "value": false }
]
},
{
"any_of": [
{ "test": "on_ground", "value": true },
{ "test": "is_sleeping", "value": true }
]
}
]
}
},
"minecraft:behavior.trade_interest": {
"priority": 3,
Expand Down
2 changes: 1 addition & 1 deletion behavior_pack/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"name": "Vanilla Behavior Pack",
"uuid": "ee649bcf-256c-4013-9068-6a802b89d756",
"version": [ 0, 0, 1 ],
"min_engine_version": [ 1, 19, 50 ]
"min_engine_version": [ 1, 19, 60 ]
},
"modules": [
{
Expand Down
Loading

0 comments on commit 82fade5

Please sign in to comment.