Added more test files

This commit is contained in:
DaanV2
2021-08-18 21:48:30 +02:00
parent c5a7532b7b
commit 286794dae0
40 changed files with 662 additions and 3 deletions

View File

@@ -0,0 +1,33 @@
{
"format_version": "1.10.0",
"minecraft:client_entity": {
"description": {
"identifier": "blockception:dragon_born",
"min_engine_version": "1.8.0",
"materials": {
"default": "entity",
"alpha": "entity_alphatest"
},
"textures": {
"default": ["textures/entity/example"]
},
"animations": {
"default_pose": "animation.example.default_pose",
"controller.pose": "controller.animation.example.pose"
},
"scripts": {
"initialize": [
"variable.example.a = 0;",
"variable.example.b = 0;"
],
"animate": [
"controller.pose"
]
},
"geometry": {
"default": "geometry.example"
},
"render_controllers": [ "controller.render.example" ]
}
}
}

View File

@@ -0,0 +1,36 @@
{
"format_version": "1.10.0",
"minecraft:client_entity": {
"description": {
"identifier": "blockception:sheep",
"min_engine_version": "1.8.0",
"materials": {
"default": "entity",
"alpha": "entity_alphatest"
},
"textures": {
"default": "textures/entity/example"
},
"animations": {
"default_pose": ["animation.armor_stand.default_pose"],
"controller.pose": "controller.animation.armor_stand.pose",
"controller.wiggling": "controller.animation.armor_stand.wiggle"
},
"scripts": {
"initialize": [
"variable.armor_stand.pose_index = 0;",
"variable.armor_stand.hurt_time = 0;"
],
"animate": [
"controller.pose",
"controller.wiggling"
]
},
"geometry": {
"default": "geometry.sheep"
},
"render_controllers": [ "controller.render.armor_stand" ],
"enable_attachables": true
}
}
}

View File

@@ -0,0 +1,14 @@
{
"format_version": "1.10.0",
"minecraft:client_entity": {
"description": {
"identifier": "blockception:sheep",
"spawn_egg": {
"base_color": "",
"overlay_color": "",
"texture": "",
"texture_index": 0
}
}
}
}