Skip to content

Commit

Permalink
v1.21.40.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mammerla committed Oct 22, 2024
1 parent 1440438 commit 6e0daa7
Show file tree
Hide file tree
Showing 599 changed files with 80,239 additions and 17,152 deletions.
37 changes: 22 additions & 15 deletions behavior_pack/entities/arrow.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"format_version": "1.13.0",
"format_version": "1.21.40",
"minecraft:entity": {
"description": {
"identifier": "minecraft:arrow",
"is_spawnable": false,
"is_summonable": true,
"is_experimental": false
"is_summonable": true
},

"component_groups": {
"minecraft:hard_arrow": {
"minecraft:projectile": {
Expand All @@ -18,7 +18,7 @@
"destroy_on_hit": true
},
"stick_in_ground": {
"shake_time" : 0.35
"shake_time": 0.35
},
"arrow_effect": {
"apply_effect_to_blocking_targets": false
Expand All @@ -34,7 +34,6 @@
"offset": [ 0, -0.1, 0 ]
}
},

"minecraft:player_arrow": {
"minecraft:projectile": {
"on_hit": {
Expand All @@ -48,10 +47,10 @@
"power_multiplier": 0.97
},
"stick_in_ground": {
"shake_time" : 0.35
"shake_time": 0.35
},
"arrow_effect": {
"apply_effect_to_blocking_targets": false
"apply_effect_to_blocking_targets": false
}
},
"hit_sound": "bow.hit",
Expand All @@ -64,7 +63,6 @@
"offset": [ 0, -0.1, 0 ]
}
},

"minecraft:pillager_arrow": {
"minecraft:projectile": {
"on_hit": {
Expand Down Expand Up @@ -101,7 +99,9 @@
"minecraft:hurt_on_condition": {
"damage_conditions": [
{
"filters": { "test": "in_lava", "subject": "self", "operator": "==", "value": true },
"filters": {
"test": "in_lava", "subject": "self", "operator": "==", "value": true
},
"cause": "lava",
"damage_per_tick": 4
}
Expand All @@ -116,7 +116,7 @@
"destroy_on_hit": true
},
"stick_in_ground": {
"shake_time" : 0.35
"shake_time": 0.35
},
"arrow_effect": {
"apply_effect_to_blocking_targets": false
Expand All @@ -133,6 +133,8 @@
},
"minecraft:physics": {
},
"minecraft:dimension_bound": {
},
"minecraft:pushable": {
"is_pushable": false,
"is_pushable_by_piston": true
Expand All @@ -150,26 +152,31 @@
"minecraft:entity_spawned": {
"sequence": [
{
"filters": {"test": "is_difficulty", "value": "hard"},
"filters": {
"test": "is_difficulty", "value": "hard"
},
"add": {
"component_groups": [ "minecraft:hard_arrow" ]
}
},
{
"filters": {"test": "is_family", "subject": "other", "value": "player"},
"filters": {
"test": "is_family", "subject": "other", "value": "player"
},
"add": {
"component_groups" : [ "minecraft:player_arrow" ]
"component_groups": [ "minecraft:player_arrow" ]
}
},
{
"filters": {"test": "is_family", "subject": "other", "value": "pillager"},
"filters": {
"test": "is_family", "subject": "other", "value": "pillager"
},
"add": {
"component_groups": [ "minecraft:pillager_arrow" ]
}
}
]
}
}

}
}
14 changes: 10 additions & 4 deletions behavior_pack/entities/breeze_wind_charge_projectile.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
{
"format_version": "1.21.10",
"format_version": "1.21.40",
"minecraft:entity": {
"description": {
"identifier": "minecraft:breeze_wind_charge_projectile",
"is_spawnable": false,
"is_summonable": false
},
"components": {
"minecraft:wind_burst": {
"radius": 3.0,
"minecraft:explode": {
"power": 3.0,
"particle_effect": "breeze_wind_burst",
"sound_effect": "breeze_wind_charge.burst",
"knockback_scaling": 0.6,
"negates_fall_damage": false
"negates_fall_damage": false,
"causes_fire": false,
"breaks_blocks": false,
"allow_underwater": true,
"toggles_blocks": true,
"damage_scaling": 0,
"max_resistance": 0
},
"minecraft:collision_box": {
"width": 0.3125,
Expand Down
Loading

0 comments on commit 6e0daa7

Please sign in to comment.