customize armor stands

This commit is contained in:
Daniel Løvbrøtte Olsen
2020-03-19 15:59:23 +01:00
parent 53d88fc3be
commit a8bfeda4bd
89 changed files with 2499 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
{
"condition": "minecraft:alternative",
"terms": [
{
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {
"equipment": {
"mainhand": {
"item": "minecraft:written_book",
"nbt": "{datapack:ArmourStatuesV2}"
}
}
}
},
{
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {
"equipment": {
"offhand": {
"item": "minecraft:written_book",
"nbt": "{datapack:ArmourStatuesV2}"
}
}
}
}
]
}

View File

@@ -0,0 +1,16 @@
{
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {
"equipment": {
"mainhand": {
"item": "minecraft:written_book",
"nbt": "{datapack:ArmourStatuesV2}"
},
"offhand": {
"item": "minecraft:written_book",
"nbt": "{datapack:ArmourStatuesV2}"
}
}
}
}

View File

@@ -0,0 +1,4 @@
{
"condition": "minecraft:random_chance",
"chance": 0.15
}

View File

@@ -0,0 +1,4 @@
{
"condition": "minecraft:random_chance",
"chance": 0.15
}

View File

@@ -0,0 +1,4 @@
{
"condition": "minecraft:random_chance",
"chance": 0.2
}

View File

@@ -0,0 +1,4 @@
{
"condition": "minecraft:random_chance",
"chance": 0.3
}

View File

@@ -0,0 +1,4 @@
{
"condition": "minecraft:random_chance",
"chance": 0.4
}

View File

@@ -0,0 +1,4 @@
{
"condition": "minecraft:random_chance",
"chance": 0.50
}

View File

@@ -0,0 +1,4 @@
{
"condition": "minecraft:random_chance",
"chance": 0.70
}

View File

@@ -0,0 +1,4 @@
{
"condition": "minecraft:random_chance",
"chance": 0.85
}

View File

@@ -0,0 +1,13 @@
{
"condition": "minecraft:alternative",
"terms": [
{
"condition": "minecraft:reference",
"name": "as:savedpose_mainhand"
},
{
"condition": "minecraft:reference",
"name": "as:savedpose_offhand"
}
]
}

View File

@@ -0,0 +1,12 @@
{
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {
"equipment": {
"mainhand": {
"item": "minecraft:written_book",
"nbt": "{datapack:ArmourStatuesV2, SavedPose:{} }"
}
}
}
}

View File

@@ -0,0 +1,12 @@
{
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {
"equipment": {
"offhand": {
"item": "minecraft:written_book",
"nbt": "{datapack:ArmourStatuesV2, SavedPose:{} }"
}
}
}
}