Added more test files
This commit is contained in:
33
test/files/correct/data_rp/entity/dragon_born.entity.json
Normal file
33
test/files/correct/data_rp/entity/dragon_born.entity.json
Normal 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" ]
|
||||
}
|
||||
}
|
||||
}
|
||||
36
test/files/correct/data_rp/entity/sheep.entity.json
Normal file
36
test/files/correct/data_rp/entity/sheep.entity.json
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
||||
8
test/files/correct/data_rp/entity/sheepentity.json
Normal file
8
test/files/correct/data_rp/entity/sheepentity.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"format_version": "1.10.0",
|
||||
"minecraft:client_entity": {
|
||||
"description": {
|
||||
"identifier": "blockception:sheep"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user