Change whitewash recipe

This commit is contained in:
Andrew-71 2024-04-28 10:45:42 +03:00
parent bd86cf764c
commit 2606dc1f66
4 changed files with 40 additions and 17 deletions

View file

@ -1,12 +1,24 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_bucket": {
"conditions": {
"items": [
{
"items": [
"new_soviet:whitewash_item"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_quartz": {
"conditions": {
"items": [
{
"items": [
"minecraft:quartz"
"new_soviet:whitewash_item"
]
}
]
@ -24,7 +36,7 @@
"items": [
{
"items": [
"minecraft:white_dye"
"new_soviet:whitewash_item"
]
}
]
@ -36,6 +48,7 @@
[
"has_quartz",
"has_white_dye",
"has_bucket",
"has_the_recipe"
]
],

View file

@ -1,21 +1,24 @@
{
"type": "minecraft:crafting_shaped",
"category": "building",
"key": {
"X": {
"type": "minecraft:crafting_shapeless",
"category": "misc",
"ingredients": [
{
"item": "minecraft:quartz"
},
"Y": {
{
"item": "minecraft:quartz"
},
{
"item": "minecraft:white_dye"
},
{
"item": "minecraft:white_dye"
},
{
"item": "minecraft:bucket"
}
},
"pattern": [
"XY",
"YX"
],
"result": {
"count": 6,
"item": "new_soviet:whitewash_item"
},
"show_notification": true
}
}