-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ubuntu
committed
Sep 25, 2018
0 parents
commit ef840f1
Showing
1,129 changed files
with
233,123 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"minecraft:entity": { | ||
"format_version": "1.2.0", | ||
|
||
"components": { | ||
"minecraft:identifier": { | ||
"id": "minecraft:balloon" | ||
}, | ||
"minecraft:collision_box": { | ||
"width": 0.4, | ||
"height": 0.4 | ||
}, | ||
"minecraft:physics": { | ||
"has_gravity": false | ||
}, | ||
"minecraft:balloon": { | ||
"lift_force": [ 0.0, 1.6, 0.0 ] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"minecraft:entity": { | ||
"format_version": "1.2.0", | ||
|
||
"components": { | ||
"minecraft:identifier": { | ||
"id": "minecraft:ice_bomb" | ||
}, | ||
"minecraft:collision_box": { | ||
"width": 0.25, | ||
"height": 0.25 | ||
}, | ||
"minecraft:projectile": { | ||
"onHit": { | ||
"freeze_on_hit": { | ||
"size": 1.1, | ||
"shape": "cube", | ||
"snap_to_block": true | ||
}, | ||
"remove_on_hit": { }, | ||
"particle_on_hit": { | ||
"particle_type": "snowballpoof", | ||
"num_particles": 6, | ||
"on_entity_hit": true, | ||
"on_other_hit": true | ||
} | ||
}, | ||
"hitSound": "icebomb.hit", | ||
"power": 1.5, | ||
"gravity": 0.025, | ||
"angleoffset": 0.0, | ||
"inertia": 1, | ||
"liquid_inertia": 1, | ||
"hitWater": true | ||
}, | ||
"minecraft:physics": { | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"format_version": 1, | ||
"header": { | ||
"description": "pack.description", | ||
"name": "pack.name", | ||
"uuid": "6baf8b62-8948-4c99-bb1e-a0cb35dc4579", | ||
"version": [1, 0, 0] | ||
}, | ||
"modules": [ | ||
{ | ||
"description": "pack.description", | ||
"type": "data", | ||
"uuid": "5647115c-0d4d-4669-825d-52cb58038d3b", | ||
"version": [1, 0, 0] | ||
} | ||
], | ||
"dependencies": [ | ||
{ | ||
// Chemistry resource pack | ||
"uuid": "0fba4063-dba1-4281-9b89-ff9390653530", | ||
"version": [1, 0, 0] | ||
} | ||
], | ||
"capabilities": [ | ||
"chemistry" | ||
] | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
pack.name=Chemistry | ||
pack.description=Explore the world of chemistry in Minecraft! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"minecraft:behavior_tree": { | ||
"minecraft:name": "attack", | ||
"minecraft:root": { | ||
"minecraft:sequence": { | ||
"children": [ | ||
{ | ||
"minecraft:attack": { | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
behavior_packs/vanilla/behavior_trees/attack_mob_test.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"minecraft:behavior_tree": { | ||
"minecraft:name": "attack_mob_test", | ||
"minecraft:root": { | ||
"minecraft:sequence": { | ||
"children": [ | ||
{ | ||
"minecraft:look_at": { | ||
"block_pos": [-1, 4, 0] | ||
} | ||
}, | ||
{ | ||
"minecraft:shoot_bow": { | ||
} | ||
}, | ||
{ | ||
"minecraft:wait": { | ||
"wait_duration": 1 | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
behavior_packs/vanilla/behavior_trees/attack_mob_test2.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"minecraft:behavior_tree": { | ||
"minecraft:name": "attack_mob_test2", | ||
"minecraft:root": { | ||
"minecraft:sequence": { | ||
"children": [ | ||
{ | ||
"minecraft:look_at": { | ||
"block_pos": [-1, 4, 0] | ||
} | ||
}, | ||
{ | ||
"minecraft:attack": { | ||
"num_of_ticks": 1 | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
behavior_packs/vanilla/behavior_trees/break_nearby_block.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"minecraft:behavior_tree": { | ||
"minecraft:name": "break_nearby_block", | ||
"minecraft:root": { | ||
"minecraft:sequence": { | ||
"children": [ | ||
{ | ||
"minecraft:find_block": { | ||
} | ||
}, | ||
{ | ||
"minecraft:break_block": { | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"minecraft:behavior_tree": { | ||
"minecraft:name": "chop_wood", | ||
"minecraft:root": { | ||
"minecraft:sequence": { | ||
"children": [ | ||
{ | ||
"minecraft:find_block": { | ||
"block_name": "log" | ||
} | ||
}, | ||
{ | ||
"minecraft:break_block": { | ||
} | ||
}, | ||
{ | ||
"minecraft:wait": { | ||
"wait_duration": 1 | ||
} | ||
}, | ||
{ | ||
"minecraft:find_entity": { | ||
"entity_name": "item" | ||
} | ||
}, | ||
{ | ||
"minecraft:move_to": { | ||
|
||
} | ||
}, | ||
{ | ||
"minecraft:wait": { | ||
"wait_duration": 1 | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"minecraft:behavior_tree": { | ||
"minecraft:name": "collect_items", | ||
"minecraft:root": { | ||
"minecraft:sequence": { | ||
"children": [ | ||
{ | ||
"minecraft:find_entity": { | ||
"entity_name": "item" | ||
} | ||
}, | ||
{ | ||
"minecraft:move_to": { | ||
"block_pos_id": "target_pos", | ||
"distance_epsilon": 1.5 | ||
} | ||
}, | ||
{ | ||
"minecraft:wait": { | ||
"wait_duration": 1 | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"minecraft:behavior_tree": { | ||
"minecraft:name": "consume_item", | ||
"minecraft:root": { | ||
"minecraft:sequence": { | ||
"children": [ | ||
{ | ||
"minecraft:consume_item": { | ||
} | ||
}, | ||
{ | ||
"minecraft:wait": { | ||
"wait_duration": 1 | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
32 changes: 32 additions & 0 deletions
32
behavior_packs/vanilla/behavior_trees/cooked_chicken_test.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"minecraft:behavior_tree": { | ||
"minecraft:name": "cooked_chicken_test", | ||
"minecraft:root": { | ||
"minecraft:sequence": { | ||
"children": [ | ||
{ | ||
"minecraft:look_at": { | ||
"block_pos": [1, 4, 1] | ||
} | ||
}, | ||
{ | ||
"minecraft:activate_tool": { | ||
"block_pos": [1, 4, 1] | ||
} | ||
}, | ||
{ | ||
"minecraft:break_block": { | ||
"block_pos": [1, 4, 1], | ||
"num_of_ticks": 1 | ||
} | ||
}, | ||
{ | ||
"minecraft:wait": { | ||
"wait_duration": 10 | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"minecraft:behavior_tree": { | ||
"minecraft:name": "interact", | ||
"minecraft:root": { | ||
"minecraft:sequence": { | ||
"children": [ | ||
{ | ||
"minecraft:interact": { | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
behavior_packs/vanilla/behavior_trees/interact_with_at.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"minecraft:behavior_tree": { | ||
"minecraft:name": "interact_with_at", | ||
"minecraft:root": { | ||
"minecraft:sequence": { | ||
"children": [ | ||
{ | ||
"minecraft:look_at": { | ||
} | ||
}, | ||
{ | ||
"minecraft:interact": { | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"minecraft:behavior_tree": { | ||
"minecraft:name": "look_at_entity", | ||
"minecraft:root": { | ||
"minecraft:sequence": { | ||
"children": [ | ||
{ | ||
"minecraft:look_at_entity": { | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
26 changes: 26 additions & 0 deletions
26
behavior_packs/vanilla/behavior_trees/mine_block_at_origin.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"minecraft:behavior_tree": { | ||
"minecraft:name": "mine_block_at_origin", | ||
"minecraft:root": { | ||
"minecraft:sequence": { | ||
"children": [ | ||
{ | ||
"minecraft:look_at": { | ||
"block_pos": [0, 4, 0] | ||
} | ||
}, | ||
{ | ||
"minecraft:break_block": { | ||
"block_pos": [0, 4, 0] | ||
} | ||
}, | ||
{ | ||
"minecraft:wait": { | ||
"wait_duration": 1 | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.