This commit is contained in:
DaanV2
2021-08-18 21:34:55 +02:00
parent 08de234cad
commit fb2f6e2b75
16 changed files with 289 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{
"format_version": "1.16.0",
"minecraft:entity": {
"description": {
"identifier": "blockception:dragon",
"is_spawnable": true,
"is_summonable": true
},
"component_groups": {},
"components": {
"minecraft:health": { "value": 10, "max": 10 }
},
"events": {}
}
}

View File

@@ -0,0 +1,17 @@
{
"format_version": "1.16.0",
"minecraft:entity": {
"description": {
"identifier": "blockception:dragon_born",
"is_spawnable": true,
"is_summonable": true
},
"component_groups": {
},
"components": {
"minecraft:health": { "value": 10, "max": 10 }
},
"events": {
}
}
}

View File

@@ -0,0 +1,52 @@
{
"format_version": "1.16.0",
"minecraft:entity": {
"description": {
"identifier": "example:chicken",
"animations": {
"controller": "controller.animation.chicken",
"something": "controller.i.dont.exist"
},
"scripts": {
"animate": ["controller"]
}
},
"component_groups": {},
"components": {
"minecraft:interact": {
"interactions": [
{
"add_items": { "table": "loot_tables/entities/vending.machine.json" },
"play_sounds": "random.levelup",
"use_item": true,
"swing": true,
"on_interact": {
"filters": {
"all_of": [
{ "test": "is_family", "value": "player" },
{ "test": "has_equipment", "subject": "other", "domain": "hand", "value": "minecraft:gold_nugget" }
]
}
}
},
{
"on_interact": {
"filters": {
"all_of": [
{ "test": "is_family", "value": "player" },
{ "test": "has_equipment", "subject": "other", "domain": "hand", "operator": "not", "value": "minecraft:gold_nugget" }
]
},
"event": "no_gold"
}
}
]
}
},
"events": {
"no_gold": {
"add": { "component_groups": ["example:non_existing"]}
}
}
}
}

View File

@@ -0,0 +1,17 @@
{
"format_version": "1.16.0",
"minecraft:entity": {
"description": {
"identifier": "blockception:sheep",
"is_spawnable": true,
"is_summonable": true
},
"component_groups": {
},
"components": {
"minecraft:health": { "value": 10, "max": 10 }
},
"events": {
}
}
}

View File

@@ -0,0 +1,16 @@
{
"format_version": "1.16.0",
"minecraft:entity": {
"description": {
"identifier": "blockception:sheep",
"is_spawnable": true,
"is_summonable": true
},
"component_groups": {
},
"components": {
},
"events": {
}
}
}