mirror of
https://github.com/guilhermewerner/tcc
synced 2025-06-17 07:25:14 +00:00
Add minecraft bedrock server
This commit is contained in:
41
servers/bedrock/definitions/attachables/bow.json
vendored
Normal file
41
servers/bedrock/definitions/attachables/bow.json
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
{
|
||||
"format_version": "1.10.0",
|
||||
"minecraft:attachable": {
|
||||
"description": {
|
||||
"identifier": "minecraft:bow",
|
||||
"materials": {
|
||||
"default": "entity_alphatest",
|
||||
"enchanted": "entity_alphatest_glint"
|
||||
},
|
||||
"textures": {
|
||||
"default": "textures/items/bow_standby",
|
||||
"bow_pulling_0": "textures/items/bow_pulling_0",
|
||||
"bow_pulling_1": "textures/items/bow_pulling_1",
|
||||
"bow_pulling_2": "textures/items/bow_pulling_2",
|
||||
"enchanted": "textures/misc/enchanted_item_glint"
|
||||
},
|
||||
"geometry": {
|
||||
"default": "geometry.bow_standby",
|
||||
"bow_pulling_0": "geometry.bow_pulling_0",
|
||||
"bow_pulling_1": "geometry.bow_pulling_1",
|
||||
"bow_pulling_2": "geometry.bow_pulling_2"
|
||||
},
|
||||
"animations": {
|
||||
"wield": "animation.bow.wield",
|
||||
"wield_first_person_pull": "animation.bow.wield_first_person_pull"
|
||||
},
|
||||
"scripts": {
|
||||
"pre_animation": [
|
||||
"variable.charge_amount = math.clamp((query.main_hand_item_max_duration - (query.main_hand_item_use_duration - query.frame_alpha + 1.0)) / 10.0, 0.0, 1.0f);"
|
||||
],
|
||||
"animate": [
|
||||
"wield",
|
||||
{
|
||||
"wield_first_person_pull": "query.main_hand_item_use_duration > 0.0f && c.is_first_person"
|
||||
}
|
||||
]
|
||||
},
|
||||
"render_controllers": [ "controller.render.bow" ]
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user