Add doors

This commit is contained in:
Andrew-71 2023-08-05 20:13:06 +03:00
parent cd2f02f614
commit 33249927b1
48 changed files with 704 additions and 6 deletions

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_mangrove_door": {
"conditions": {
"items": [
{
"items": [
"minecraft:mangrove_door"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:chiseled_mangrove_door_from_mangrove_door_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_mangrove_door",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:chiseled_mangrove_door_from_mangrove_door_stonecutting"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_oak_door": {
"conditions": {
"items": [
{
"items": [
"minecraft:oak_door"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:chiseled_oak_door_from_oak_door_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_oak_door",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:chiseled_oak_door_from_oak_door_stonecutting"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_spruce_door": {
"conditions": {
"items": [
{
"items": [
"minecraft:spruce_door"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:chiseled_spruce_door_from_spruce_door_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_spruce_door",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:chiseled_spruce_door_from_spruce_door_stonecutting"
]
},
"sends_telemetry_event": false
}

View file

@ -0,0 +1,8 @@
{
"type": "minecraft:stonecutting",
"count": 1,
"ingredient": {
"item": "minecraft:mangrove_door"
},
"result": "new_soviet:chiseled_mangrove_door"
}

View file

@ -0,0 +1,8 @@
{
"type": "minecraft:stonecutting",
"count": 1,
"ingredient": {
"item": "minecraft:oak_door"
},
"result": "new_soviet:chiseled_oak_door"
}

View file

@ -0,0 +1,8 @@
{
"type": "minecraft:stonecutting",
"count": 1,
"ingredient": {
"item": "minecraft:spruce_door"
},
"result": "new_soviet:chiseled_spruce_door"
}