Rework linoleum crafting recipe
This commit is contained in:
parent
267d6fe342
commit
0694e47660
46 changed files with 1042 additions and 212 deletions
4
TODO.md
4
TODO.md
|
@ -3,11 +3,7 @@
|
||||||
* Ensure ru_ru and ru_rpr translations are up-to-date
|
* Ensure ru_ru and ru_rpr translations are up-to-date
|
||||||
### Missing recipes
|
### Missing recipes
|
||||||
* Aquamarine, teal - reliance on prismarine
|
* Aquamarine, teal - reliance on prismarine
|
||||||
* Long blue tiles - missing
|
|
||||||
* Concrete plate - missing
|
* Concrete plate - missing
|
||||||
* Spruce and jungle carved - missing
|
|
||||||
* Yellow-red linoleum - missingл
|
|
||||||
* Beige linoleum - missing
|
|
||||||
* Po-2 wall and crate...? - missing
|
* Po-2 wall and crate...? - missing
|
||||||
* Rusty blue iron bars - missing
|
* Rusty blue iron bars - missing
|
||||||
* Most wallpaper - missing
|
* Most wallpaper - missing
|
||||||
|
|
|
@ -0,0 +1,87 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:recipes/root",
|
||||||
|
"criteria": {
|
||||||
|
"has_iron_nugget": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"minecraft:iron_nugget"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
},
|
||||||
|
"has_leather": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"minecraft:leather"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
},
|
||||||
|
"has_oak_planks": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"minecraft:oak_planks"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
},
|
||||||
|
"has_the_recipe": {
|
||||||
|
"conditions": {
|
||||||
|
"recipe": "new_soviet:beige_linoleum"
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:recipe_unlocked"
|
||||||
|
},
|
||||||
|
"has_white_dye_1": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"minecraft:white_dye"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
},
|
||||||
|
"has_white_dye_2": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"minecraft:white_dye"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"has_white_dye_1",
|
||||||
|
"has_white_dye_2",
|
||||||
|
"has_leather",
|
||||||
|
"has_oak_planks",
|
||||||
|
"has_iron_nugget",
|
||||||
|
"has_the_recipe"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"rewards": {
|
||||||
|
"recipes": [
|
||||||
|
"new_soviet:beige_linoleum"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"sends_telemetry_event": false
|
||||||
|
}
|
|
@ -0,0 +1,35 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:recipes/root",
|
||||||
|
"criteria": {
|
||||||
|
"has_beige_linoleum": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"new_soviet:beige_linoleum"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
},
|
||||||
|
"has_the_recipe": {
|
||||||
|
"conditions": {
|
||||||
|
"recipe": "new_soviet:beige_linoleum_slab"
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:recipe_unlocked"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"has_beige_linoleum",
|
||||||
|
"has_the_recipe"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"rewards": {
|
||||||
|
"recipes": [
|
||||||
|
"new_soviet:beige_linoleum_slab"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"sends_telemetry_event": false
|
||||||
|
}
|
|
@ -0,0 +1,35 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:recipes/root",
|
||||||
|
"criteria": {
|
||||||
|
"has_beige_linoleum": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"new_soviet:beige_linoleum"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
},
|
||||||
|
"has_the_recipe": {
|
||||||
|
"conditions": {
|
||||||
|
"recipe": "minecraft:beige_linoleum_slab_from_beige_linoleum_stonecutting"
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:recipe_unlocked"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"has_beige_linoleum",
|
||||||
|
"has_the_recipe"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"rewards": {
|
||||||
|
"recipes": [
|
||||||
|
"minecraft:beige_linoleum_slab_from_beige_linoleum_stonecutting"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"sends_telemetry_event": false
|
||||||
|
}
|
|
@ -0,0 +1,35 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:recipes/root",
|
||||||
|
"criteria": {
|
||||||
|
"has_beige_linoleum": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"new_soviet:beige_linoleum"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
},
|
||||||
|
"has_the_recipe": {
|
||||||
|
"conditions": {
|
||||||
|
"recipe": "new_soviet:beige_linoleum_stairs"
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:recipe_unlocked"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"has_beige_linoleum",
|
||||||
|
"has_the_recipe"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"rewards": {
|
||||||
|
"recipes": [
|
||||||
|
"new_soviet:beige_linoleum_stairs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"sends_telemetry_event": false
|
||||||
|
}
|
|
@ -0,0 +1,35 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:recipes/root",
|
||||||
|
"criteria": {
|
||||||
|
"has_beige_linoleum": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"new_soviet:beige_linoleum"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
},
|
||||||
|
"has_the_recipe": {
|
||||||
|
"conditions": {
|
||||||
|
"recipe": "minecraft:beige_linoleum_stairs_from_beige_linoleum_stonecutting"
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:recipe_unlocked"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"has_beige_linoleum",
|
||||||
|
"has_the_recipe"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"rewards": {
|
||||||
|
"recipes": [
|
||||||
|
"minecraft:beige_linoleum_stairs_from_beige_linoleum_stonecutting"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"sends_telemetry_event": false
|
||||||
|
}
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"parent": "minecraft:recipes/root",
|
"parent": "minecraft:recipes/root",
|
||||||
"criteria": {
|
"criteria": {
|
||||||
"has_blue_dye": {
|
"has_blue_dye_1": {
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
|
@ -13,36 +13,48 @@
|
||||||
},
|
},
|
||||||
"trigger": "minecraft:inventory_changed"
|
"trigger": "minecraft:inventory_changed"
|
||||||
},
|
},
|
||||||
"has_clay": {
|
"has_blue_dye_2": {
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"minecraft:clay"
|
"minecraft:blue_dye"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"trigger": "minecraft:inventory_changed"
|
"trigger": "minecraft:inventory_changed"
|
||||||
},
|
},
|
||||||
"has_paper": {
|
"has_iron_nugget": {
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"minecraft:paper"
|
"minecraft:iron_nugget"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"trigger": "minecraft:inventory_changed"
|
"trigger": "minecraft:inventory_changed"
|
||||||
},
|
},
|
||||||
"has_slime_ball": {
|
"has_leather": {
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"minecraft:slime_ball"
|
"minecraft:leather"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
},
|
||||||
|
"has_oak_planks": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"minecraft:oak_planks"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -58,10 +70,11 @@
|
||||||
},
|
},
|
||||||
"requirements": [
|
"requirements": [
|
||||||
[
|
[
|
||||||
"has_blue_dye",
|
"has_blue_dye_1",
|
||||||
"has_paper",
|
"has_blue_dye_2",
|
||||||
"has_slime_ball",
|
"has_leather",
|
||||||
"has_clay",
|
"has_oak_planks",
|
||||||
|
"has_iron_nugget",
|
||||||
"has_the_recipe"
|
"has_the_recipe"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
|
|
|
@ -1,19 +1,7 @@
|
||||||
{
|
{
|
||||||
"parent": "minecraft:recipes/root",
|
"parent": "minecraft:recipes/root",
|
||||||
"criteria": {
|
"criteria": {
|
||||||
"has_clay": {
|
"has_gray_dye_1": {
|
||||||
"conditions": {
|
|
||||||
"items": [
|
|
||||||
{
|
|
||||||
"items": [
|
|
||||||
"minecraft:clay"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:inventory_changed"
|
|
||||||
},
|
|
||||||
"has_gray_dye": {
|
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
|
@ -25,24 +13,48 @@
|
||||||
},
|
},
|
||||||
"trigger": "minecraft:inventory_changed"
|
"trigger": "minecraft:inventory_changed"
|
||||||
},
|
},
|
||||||
"has_paper": {
|
"has_gray_dye_2": {
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"minecraft:paper"
|
"minecraft:gray_dye"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"trigger": "minecraft:inventory_changed"
|
"trigger": "minecraft:inventory_changed"
|
||||||
},
|
},
|
||||||
"has_slime_ball": {
|
"has_iron_nugget": {
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"minecraft:slime_ball"
|
"minecraft:iron_nugget"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
},
|
||||||
|
"has_leather": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"minecraft:leather"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
},
|
||||||
|
"has_oak_planks": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"minecraft:oak_planks"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -58,10 +70,11 @@
|
||||||
},
|
},
|
||||||
"requirements": [
|
"requirements": [
|
||||||
[
|
[
|
||||||
"has_gray_dye",
|
"has_gray_dye_1",
|
||||||
"has_paper",
|
"has_gray_dye_2",
|
||||||
"has_slime_ball",
|
"has_leather",
|
||||||
"has_clay",
|
"has_oak_planks",
|
||||||
|
"has_iron_nugget",
|
||||||
"has_the_recipe"
|
"has_the_recipe"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
|
|
|
@ -1,19 +1,7 @@
|
||||||
{
|
{
|
||||||
"parent": "minecraft:recipes/root",
|
"parent": "minecraft:recipes/root",
|
||||||
"criteria": {
|
"criteria": {
|
||||||
"has_clay": {
|
"has_gray_dye_1": {
|
||||||
"conditions": {
|
|
||||||
"items": [
|
|
||||||
{
|
|
||||||
"items": [
|
|
||||||
"minecraft:clay"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:inventory_changed"
|
|
||||||
},
|
|
||||||
"has_gray_dye": {
|
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
|
@ -25,24 +13,48 @@
|
||||||
},
|
},
|
||||||
"trigger": "minecraft:inventory_changed"
|
"trigger": "minecraft:inventory_changed"
|
||||||
},
|
},
|
||||||
"has_paper": {
|
"has_gray_dye_2": {
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"minecraft:paper"
|
"minecraft:gray_dye"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"trigger": "minecraft:inventory_changed"
|
"trigger": "minecraft:inventory_changed"
|
||||||
},
|
},
|
||||||
"has_slime_ball": {
|
"has_iron_nugget": {
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"minecraft:slime_ball"
|
"minecraft:iron_nugget"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
},
|
||||||
|
"has_leather": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"minecraft:leather"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
},
|
||||||
|
"has_oak_planks": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"minecraft:oak_planks"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -58,10 +70,11 @@
|
||||||
},
|
},
|
||||||
"requirements": [
|
"requirements": [
|
||||||
[
|
[
|
||||||
"has_gray_dye",
|
"has_gray_dye_1",
|
||||||
"has_paper",
|
"has_gray_dye_2",
|
||||||
"has_slime_ball",
|
"has_leather",
|
||||||
"has_clay",
|
"has_oak_planks",
|
||||||
|
"has_iron_nugget",
|
||||||
"has_the_recipe"
|
"has_the_recipe"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
|
|
|
@ -0,0 +1,35 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:recipes/root",
|
||||||
|
"criteria": {
|
||||||
|
"has_needed_dye": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"minecraft:white_dye"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
},
|
||||||
|
"has_the_recipe": {
|
||||||
|
"conditions": {
|
||||||
|
"recipe": "minecraft:dye_beige_linoleum"
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:recipe_unlocked"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"has_needed_dye",
|
||||||
|
"has_the_recipe"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"rewards": {
|
||||||
|
"recipes": [
|
||||||
|
"minecraft:dye_beige_linoleum"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"sends_telemetry_event": false
|
||||||
|
}
|
|
@ -1,19 +1,7 @@
|
||||||
{
|
{
|
||||||
"parent": "minecraft:recipes/root",
|
"parent": "minecraft:recipes/root",
|
||||||
"criteria": {
|
"criteria": {
|
||||||
"has_clay": {
|
"has_gray_dye_1": {
|
||||||
"conditions": {
|
|
||||||
"items": [
|
|
||||||
{
|
|
||||||
"items": [
|
|
||||||
"minecraft:clay"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:inventory_changed"
|
|
||||||
},
|
|
||||||
"has_gray_dye": {
|
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
|
@ -25,24 +13,48 @@
|
||||||
},
|
},
|
||||||
"trigger": "minecraft:inventory_changed"
|
"trigger": "minecraft:inventory_changed"
|
||||||
},
|
},
|
||||||
"has_paper": {
|
"has_gray_dye_2": {
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"minecraft:paper"
|
"minecraft:gray_dye"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"trigger": "minecraft:inventory_changed"
|
"trigger": "minecraft:inventory_changed"
|
||||||
},
|
},
|
||||||
"has_slime_ball": {
|
"has_iron_nugget": {
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"minecraft:slime_ball"
|
"minecraft:iron_nugget"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
},
|
||||||
|
"has_leather": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"minecraft:leather"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
},
|
||||||
|
"has_oak_planks": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"minecraft:oak_planks"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -58,10 +70,11 @@
|
||||||
},
|
},
|
||||||
"requirements": [
|
"requirements": [
|
||||||
[
|
[
|
||||||
"has_gray_dye",
|
"has_gray_dye_1",
|
||||||
"has_paper",
|
"has_gray_dye_2",
|
||||||
"has_slime_ball",
|
"has_leather",
|
||||||
"has_clay",
|
"has_oak_planks",
|
||||||
|
"has_iron_nugget",
|
||||||
"has_the_recipe"
|
"has_the_recipe"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
|
|
|
@ -1,19 +1,7 @@
|
||||||
{
|
{
|
||||||
"parent": "minecraft:recipes/root",
|
"parent": "minecraft:recipes/root",
|
||||||
"criteria": {
|
"criteria": {
|
||||||
"has_clay": {
|
"has_green_dye_1": {
|
||||||
"conditions": {
|
|
||||||
"items": [
|
|
||||||
{
|
|
||||||
"items": [
|
|
||||||
"minecraft:clay"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:inventory_changed"
|
|
||||||
},
|
|
||||||
"has_green_dye": {
|
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
|
@ -25,24 +13,48 @@
|
||||||
},
|
},
|
||||||
"trigger": "minecraft:inventory_changed"
|
"trigger": "minecraft:inventory_changed"
|
||||||
},
|
},
|
||||||
"has_paper": {
|
"has_green_dye_2": {
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"minecraft:paper"
|
"minecraft:green_dye"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"trigger": "minecraft:inventory_changed"
|
"trigger": "minecraft:inventory_changed"
|
||||||
},
|
},
|
||||||
"has_slime_ball": {
|
"has_iron_nugget": {
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"minecraft:slime_ball"
|
"minecraft:iron_nugget"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
},
|
||||||
|
"has_leather": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"minecraft:leather"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
},
|
||||||
|
"has_oak_planks": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"minecraft:oak_planks"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -58,10 +70,11 @@
|
||||||
},
|
},
|
||||||
"requirements": [
|
"requirements": [
|
||||||
[
|
[
|
||||||
"has_green_dye",
|
"has_green_dye_1",
|
||||||
"has_paper",
|
"has_green_dye_2",
|
||||||
"has_slime_ball",
|
"has_leather",
|
||||||
"has_clay",
|
"has_oak_planks",
|
||||||
|
"has_iron_nugget",
|
||||||
"has_the_recipe"
|
"has_the_recipe"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
|
|
|
@ -1,19 +1,7 @@
|
||||||
{
|
{
|
||||||
"parent": "minecraft:recipes/root",
|
"parent": "minecraft:recipes/root",
|
||||||
"criteria": {
|
"criteria": {
|
||||||
"has_clay": {
|
"has_gray_dye_1": {
|
||||||
"conditions": {
|
|
||||||
"items": [
|
|
||||||
{
|
|
||||||
"items": [
|
|
||||||
"minecraft:clay"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:inventory_changed"
|
|
||||||
},
|
|
||||||
"has_gray_dye": {
|
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
|
@ -25,24 +13,48 @@
|
||||||
},
|
},
|
||||||
"trigger": "minecraft:inventory_changed"
|
"trigger": "minecraft:inventory_changed"
|
||||||
},
|
},
|
||||||
"has_paper": {
|
"has_gray_dye_2": {
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"minecraft:paper"
|
"minecraft:gray_dye"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"trigger": "minecraft:inventory_changed"
|
"trigger": "minecraft:inventory_changed"
|
||||||
},
|
},
|
||||||
"has_slime_ball": {
|
"has_iron_nugget": {
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"minecraft:slime_ball"
|
"minecraft:iron_nugget"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
},
|
||||||
|
"has_leather": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"minecraft:leather"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
},
|
||||||
|
"has_oak_planks": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"minecraft:oak_planks"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -58,10 +70,11 @@
|
||||||
},
|
},
|
||||||
"requirements": [
|
"requirements": [
|
||||||
[
|
[
|
||||||
"has_gray_dye",
|
"has_gray_dye_1",
|
||||||
"has_paper",
|
"has_gray_dye_2",
|
||||||
"has_slime_ball",
|
"has_leather",
|
||||||
"has_clay",
|
"has_oak_planks",
|
||||||
|
"has_iron_nugget",
|
||||||
"has_the_recipe"
|
"has_the_recipe"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
|
|
|
@ -1,31 +1,43 @@
|
||||||
{
|
{
|
||||||
"parent": "minecraft:recipes/root",
|
"parent": "minecraft:recipes/root",
|
||||||
"criteria": {
|
"criteria": {
|
||||||
"has_clay": {
|
"has_iron_nugget": {
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"minecraft:clay"
|
"minecraft:iron_nugget"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"trigger": "minecraft:inventory_changed"
|
"trigger": "minecraft:inventory_changed"
|
||||||
},
|
},
|
||||||
"has_paper": {
|
"has_leather": {
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"minecraft:paper"
|
"minecraft:leather"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"trigger": "minecraft:inventory_changed"
|
"trigger": "minecraft:inventory_changed"
|
||||||
},
|
},
|
||||||
"has_red_dye": {
|
"has_oak_planks": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"minecraft:oak_planks"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
},
|
||||||
|
"has_red_dye_1": {
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
|
@ -37,12 +49,12 @@
|
||||||
},
|
},
|
||||||
"trigger": "minecraft:inventory_changed"
|
"trigger": "minecraft:inventory_changed"
|
||||||
},
|
},
|
||||||
"has_slime_ball": {
|
"has_red_dye_2": {
|
||||||
"conditions": {
|
"conditions": {
|
||||||
"items": [
|
"items": [
|
||||||
{
|
{
|
||||||
"items": [
|
"items": [
|
||||||
"minecraft:slime_ball"
|
"minecraft:red_dye"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -58,10 +70,11 @@
|
||||||
},
|
},
|
||||||
"requirements": [
|
"requirements": [
|
||||||
[
|
[
|
||||||
"has_red_dye",
|
"has_red_dye_1",
|
||||||
"has_paper",
|
"has_red_dye_2",
|
||||||
"has_slime_ball",
|
"has_leather",
|
||||||
"has_clay",
|
"has_oak_planks",
|
||||||
|
"has_iron_nugget",
|
||||||
"has_the_recipe"
|
"has_the_recipe"
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
|
|
|
@ -0,0 +1,87 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:recipes/root",
|
||||||
|
"criteria": {
|
||||||
|
"has_iron_nugget": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"minecraft:iron_nugget"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
},
|
||||||
|
"has_leather": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"minecraft:leather"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
},
|
||||||
|
"has_oak_planks": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"minecraft:oak_planks"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
},
|
||||||
|
"has_red_dye_2": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"minecraft:red_dye"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
},
|
||||||
|
"has_the_recipe": {
|
||||||
|
"conditions": {
|
||||||
|
"recipe": "new_soviet:yellow_red_linoleum"
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:recipe_unlocked"
|
||||||
|
},
|
||||||
|
"has_yellow_dye_1": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"minecraft:yellow_dye"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"has_yellow_dye_1",
|
||||||
|
"has_red_dye_2",
|
||||||
|
"has_leather",
|
||||||
|
"has_oak_planks",
|
||||||
|
"has_iron_nugget",
|
||||||
|
"has_the_recipe"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"rewards": {
|
||||||
|
"recipes": [
|
||||||
|
"new_soviet:yellow_red_linoleum"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"sends_telemetry_event": false
|
||||||
|
}
|
|
@ -0,0 +1,35 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:recipes/root",
|
||||||
|
"criteria": {
|
||||||
|
"has_the_recipe": {
|
||||||
|
"conditions": {
|
||||||
|
"recipe": "new_soviet:yellow_red_linoleum_slab"
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:recipe_unlocked"
|
||||||
|
},
|
||||||
|
"has_yellow_red_linoleum": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"new_soviet:yellow_red_linoleum"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"has_yellow_red_linoleum",
|
||||||
|
"has_the_recipe"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"rewards": {
|
||||||
|
"recipes": [
|
||||||
|
"new_soviet:yellow_red_linoleum_slab"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"sends_telemetry_event": false
|
||||||
|
}
|
|
@ -0,0 +1,35 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:recipes/root",
|
||||||
|
"criteria": {
|
||||||
|
"has_the_recipe": {
|
||||||
|
"conditions": {
|
||||||
|
"recipe": "minecraft:yellow_red_linoleum_slab_from_yellow_red_linoleum_stonecutting"
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:recipe_unlocked"
|
||||||
|
},
|
||||||
|
"has_yellow_red_linoleum": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"new_soviet:yellow_red_linoleum"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"has_yellow_red_linoleum",
|
||||||
|
"has_the_recipe"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"rewards": {
|
||||||
|
"recipes": [
|
||||||
|
"minecraft:yellow_red_linoleum_slab_from_yellow_red_linoleum_stonecutting"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"sends_telemetry_event": false
|
||||||
|
}
|
|
@ -0,0 +1,35 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:recipes/root",
|
||||||
|
"criteria": {
|
||||||
|
"has_the_recipe": {
|
||||||
|
"conditions": {
|
||||||
|
"recipe": "new_soviet:yellow_red_linoleum_stairs"
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:recipe_unlocked"
|
||||||
|
},
|
||||||
|
"has_yellow_red_linoleum": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"new_soviet:yellow_red_linoleum"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"has_yellow_red_linoleum",
|
||||||
|
"has_the_recipe"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"rewards": {
|
||||||
|
"recipes": [
|
||||||
|
"new_soviet:yellow_red_linoleum_stairs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"sends_telemetry_event": false
|
||||||
|
}
|
|
@ -0,0 +1,35 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:recipes/root",
|
||||||
|
"criteria": {
|
||||||
|
"has_the_recipe": {
|
||||||
|
"conditions": {
|
||||||
|
"recipe": "minecraft:yellow_red_linoleum_stairs_from_yellow_red_linoleum_stonecutting"
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:recipe_unlocked"
|
||||||
|
},
|
||||||
|
"has_yellow_red_linoleum": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": [
|
||||||
|
"new_soviet:yellow_red_linoleum"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"has_yellow_red_linoleum",
|
||||||
|
"has_the_recipe"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"rewards": {
|
||||||
|
"recipes": [
|
||||||
|
"minecraft:yellow_red_linoleum_stairs_from_yellow_red_linoleum_stonecutting"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"sends_telemetry_event": false
|
||||||
|
}
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shaped",
|
||||||
|
"category": "building",
|
||||||
|
"key": {
|
||||||
|
"F": {
|
||||||
|
"item": "minecraft:white_dye"
|
||||||
|
},
|
||||||
|
"I": {
|
||||||
|
"item": "minecraft:iron_nugget"
|
||||||
|
},
|
||||||
|
"L": {
|
||||||
|
"item": "minecraft:leather"
|
||||||
|
},
|
||||||
|
"P": {
|
||||||
|
"item": "minecraft:oak_planks"
|
||||||
|
},
|
||||||
|
"S": {
|
||||||
|
"item": "minecraft:white_dye"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pattern": [
|
||||||
|
"LLL",
|
||||||
|
"PPP",
|
||||||
|
"FIS"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"count": 3,
|
||||||
|
"item": "new_soviet:beige_linoleum"
|
||||||
|
},
|
||||||
|
"show_notification": true
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shaped",
|
||||||
|
"category": "building",
|
||||||
|
"key": {
|
||||||
|
"#": {
|
||||||
|
"item": "new_soviet:beige_linoleum"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pattern": [
|
||||||
|
"###"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"count": 6,
|
||||||
|
"item": "new_soviet:beige_linoleum_slab"
|
||||||
|
},
|
||||||
|
"show_notification": true
|
||||||
|
}
|
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"type": "minecraft:stonecutting",
|
||||||
|
"count": 2,
|
||||||
|
"ingredient": {
|
||||||
|
"item": "new_soviet:beige_linoleum"
|
||||||
|
},
|
||||||
|
"result": "new_soviet:beige_linoleum_slab"
|
||||||
|
}
|
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shaped",
|
||||||
|
"category": "building",
|
||||||
|
"key": {
|
||||||
|
"#": {
|
||||||
|
"item": "new_soviet:beige_linoleum"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pattern": [
|
||||||
|
"# ",
|
||||||
|
"## ",
|
||||||
|
"###"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"count": 4,
|
||||||
|
"item": "new_soviet:beige_linoleum_stairs"
|
||||||
|
},
|
||||||
|
"show_notification": true
|
||||||
|
}
|
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"type": "minecraft:stonecutting",
|
||||||
|
"count": 1,
|
||||||
|
"ingredient": {
|
||||||
|
"item": "new_soviet:beige_linoleum"
|
||||||
|
},
|
||||||
|
"result": "new_soviet:beige_linoleum_stairs"
|
||||||
|
}
|
|
@ -2,26 +2,29 @@
|
||||||
"type": "minecraft:crafting_shaped",
|
"type": "minecraft:crafting_shaped",
|
||||||
"category": "building",
|
"category": "building",
|
||||||
"key": {
|
"key": {
|
||||||
"C": {
|
"F": {
|
||||||
"item": "minecraft:clay"
|
|
||||||
},
|
|
||||||
"D": {
|
|
||||||
"item": "minecraft:blue_dye"
|
"item": "minecraft:blue_dye"
|
||||||
},
|
},
|
||||||
|
"I": {
|
||||||
|
"item": "minecraft:iron_nugget"
|
||||||
|
},
|
||||||
|
"L": {
|
||||||
|
"item": "minecraft:leather"
|
||||||
|
},
|
||||||
"P": {
|
"P": {
|
||||||
"item": "minecraft:paper"
|
"item": "minecraft:oak_planks"
|
||||||
},
|
},
|
||||||
"S": {
|
"S": {
|
||||||
"item": "minecraft:slime_ball"
|
"item": "minecraft:blue_dye"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pattern": [
|
"pattern": [
|
||||||
" D ",
|
"LLL",
|
||||||
"CPC",
|
"PPP",
|
||||||
"SPS"
|
"FIS"
|
||||||
],
|
],
|
||||||
"result": {
|
"result": {
|
||||||
"count": 2,
|
"count": 3,
|
||||||
"item": "new_soviet:blue_linoleum"
|
"item": "new_soviet:blue_linoleum"
|
||||||
},
|
},
|
||||||
"show_notification": true
|
"show_notification": true
|
||||||
|
|
|
@ -2,26 +2,29 @@
|
||||||
"type": "minecraft:crafting_shaped",
|
"type": "minecraft:crafting_shaped",
|
||||||
"category": "building",
|
"category": "building",
|
||||||
"key": {
|
"key": {
|
||||||
"C": {
|
"F": {
|
||||||
"item": "minecraft:clay"
|
|
||||||
},
|
|
||||||
"D": {
|
|
||||||
"item": "minecraft:gray_dye"
|
"item": "minecraft:gray_dye"
|
||||||
},
|
},
|
||||||
|
"I": {
|
||||||
|
"item": "minecraft:iron_nugget"
|
||||||
|
},
|
||||||
|
"L": {
|
||||||
|
"item": "minecraft:leather"
|
||||||
|
},
|
||||||
"P": {
|
"P": {
|
||||||
"item": "minecraft:paper"
|
"item": "minecraft:oak_planks"
|
||||||
},
|
},
|
||||||
"S": {
|
"S": {
|
||||||
"item": "minecraft:slime_ball"
|
"item": "minecraft:gray_dye"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pattern": [
|
"pattern": [
|
||||||
" D ",
|
"LLL",
|
||||||
"CPC",
|
"PPP",
|
||||||
"SPS"
|
"FIS"
|
||||||
],
|
],
|
||||||
"result": {
|
"result": {
|
||||||
"count": 2,
|
"count": 3,
|
||||||
"item": "new_soviet:brown_linoleum"
|
"item": "new_soviet:brown_linoleum"
|
||||||
},
|
},
|
||||||
"show_notification": true
|
"show_notification": true
|
||||||
|
|
|
@ -2,26 +2,29 @@
|
||||||
"type": "minecraft:crafting_shaped",
|
"type": "minecraft:crafting_shaped",
|
||||||
"category": "building",
|
"category": "building",
|
||||||
"key": {
|
"key": {
|
||||||
"C": {
|
"F": {
|
||||||
"item": "minecraft:clay"
|
|
||||||
},
|
|
||||||
"D": {
|
|
||||||
"item": "minecraft:gray_dye"
|
"item": "minecraft:gray_dye"
|
||||||
},
|
},
|
||||||
|
"I": {
|
||||||
|
"item": "minecraft:iron_nugget"
|
||||||
|
},
|
||||||
|
"L": {
|
||||||
|
"item": "minecraft:leather"
|
||||||
|
},
|
||||||
"P": {
|
"P": {
|
||||||
"item": "minecraft:paper"
|
"item": "minecraft:oak_planks"
|
||||||
},
|
},
|
||||||
"S": {
|
"S": {
|
||||||
"item": "minecraft:slime_ball"
|
"item": "minecraft:gray_dye"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pattern": [
|
"pattern": [
|
||||||
" D ",
|
"LLL",
|
||||||
"CPC",
|
"PPP",
|
||||||
"SPS"
|
"FIS"
|
||||||
],
|
],
|
||||||
"result": {
|
"result": {
|
||||||
"count": 2,
|
"count": 3,
|
||||||
"item": "new_soviet:cyan_linoleum"
|
"item": "new_soviet:cyan_linoleum"
|
||||||
},
|
},
|
||||||
"show_notification": true
|
"show_notification": true
|
||||||
|
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"category": "building",
|
||||||
|
"group": "linoleum",
|
||||||
|
"ingredients": [
|
||||||
|
{
|
||||||
|
"item": "minecraft:white_dye"
|
||||||
|
},
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"item": "new_soviet:green_linoleum"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"item": "new_soviet:orange_linoleum"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"item": "new_soviet:blue_linoleum"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"item": "new_soviet:red_linoleum"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"item": "new_soviet:gray_linoleum"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"item": "new_soviet:brown_linoleum"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"item": "new_soviet:cyan_linoleum"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"item": "new_soviet:beige_linoleum"
|
||||||
|
}
|
||||||
|
}
|
|
@ -7,6 +7,9 @@
|
||||||
"item": "minecraft:blue_dye"
|
"item": "minecraft:blue_dye"
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
|
{
|
||||||
|
"item": "new_soviet:beige_linoleum"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"item": "new_soviet:green_linoleum"
|
"item": "new_soviet:green_linoleum"
|
||||||
},
|
},
|
||||||
|
|
|
@ -7,6 +7,9 @@
|
||||||
"item": "minecraft:brown_dye"
|
"item": "minecraft:brown_dye"
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
|
{
|
||||||
|
"item": "new_soviet:beige_linoleum"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"item": "new_soviet:green_linoleum"
|
"item": "new_soviet:green_linoleum"
|
||||||
},
|
},
|
||||||
|
|
|
@ -7,6 +7,9 @@
|
||||||
"item": "minecraft:cyan_dye"
|
"item": "minecraft:cyan_dye"
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
|
{
|
||||||
|
"item": "new_soviet:beige_linoleum"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"item": "new_soviet:green_linoleum"
|
"item": "new_soviet:green_linoleum"
|
||||||
},
|
},
|
||||||
|
|
|
@ -7,6 +7,9 @@
|
||||||
"item": "minecraft:gray_dye"
|
"item": "minecraft:gray_dye"
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
|
{
|
||||||
|
"item": "new_soviet:beige_linoleum"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"item": "new_soviet:green_linoleum"
|
"item": "new_soviet:green_linoleum"
|
||||||
},
|
},
|
||||||
|
|
|
@ -7,6 +7,9 @@
|
||||||
"item": "minecraft:green_dye"
|
"item": "minecraft:green_dye"
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
|
{
|
||||||
|
"item": "new_soviet:beige_linoleum"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"item": "new_soviet:orange_linoleum"
|
"item": "new_soviet:orange_linoleum"
|
||||||
},
|
},
|
||||||
|
|
|
@ -7,6 +7,9 @@
|
||||||
"item": "minecraft:orange_dye"
|
"item": "minecraft:orange_dye"
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
|
{
|
||||||
|
"item": "new_soviet:beige_linoleum"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"item": "new_soviet:green_linoleum"
|
"item": "new_soviet:green_linoleum"
|
||||||
},
|
},
|
||||||
|
|
|
@ -7,6 +7,9 @@
|
||||||
"item": "minecraft:red_dye"
|
"item": "minecraft:red_dye"
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
|
{
|
||||||
|
"item": "new_soviet:beige_linoleum"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"item": "new_soviet:green_linoleum"
|
"item": "new_soviet:green_linoleum"
|
||||||
},
|
},
|
||||||
|
|
|
@ -2,26 +2,29 @@
|
||||||
"type": "minecraft:crafting_shaped",
|
"type": "minecraft:crafting_shaped",
|
||||||
"category": "building",
|
"category": "building",
|
||||||
"key": {
|
"key": {
|
||||||
"C": {
|
"F": {
|
||||||
"item": "minecraft:clay"
|
|
||||||
},
|
|
||||||
"D": {
|
|
||||||
"item": "minecraft:gray_dye"
|
"item": "minecraft:gray_dye"
|
||||||
},
|
},
|
||||||
|
"I": {
|
||||||
|
"item": "minecraft:iron_nugget"
|
||||||
|
},
|
||||||
|
"L": {
|
||||||
|
"item": "minecraft:leather"
|
||||||
|
},
|
||||||
"P": {
|
"P": {
|
||||||
"item": "minecraft:paper"
|
"item": "minecraft:oak_planks"
|
||||||
},
|
},
|
||||||
"S": {
|
"S": {
|
||||||
"item": "minecraft:slime_ball"
|
"item": "minecraft:gray_dye"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pattern": [
|
"pattern": [
|
||||||
" D ",
|
"LLL",
|
||||||
"CPC",
|
"PPP",
|
||||||
"SPS"
|
"FIS"
|
||||||
],
|
],
|
||||||
"result": {
|
"result": {
|
||||||
"count": 2,
|
"count": 3,
|
||||||
"item": "new_soviet:gray_linoleum"
|
"item": "new_soviet:gray_linoleum"
|
||||||
},
|
},
|
||||||
"show_notification": true
|
"show_notification": true
|
||||||
|
|
|
@ -2,26 +2,29 @@
|
||||||
"type": "minecraft:crafting_shaped",
|
"type": "minecraft:crafting_shaped",
|
||||||
"category": "building",
|
"category": "building",
|
||||||
"key": {
|
"key": {
|
||||||
"C": {
|
"F": {
|
||||||
"item": "minecraft:clay"
|
|
||||||
},
|
|
||||||
"D": {
|
|
||||||
"item": "minecraft:green_dye"
|
"item": "minecraft:green_dye"
|
||||||
},
|
},
|
||||||
|
"I": {
|
||||||
|
"item": "minecraft:iron_nugget"
|
||||||
|
},
|
||||||
|
"L": {
|
||||||
|
"item": "minecraft:leather"
|
||||||
|
},
|
||||||
"P": {
|
"P": {
|
||||||
"item": "minecraft:paper"
|
"item": "minecraft:oak_planks"
|
||||||
},
|
},
|
||||||
"S": {
|
"S": {
|
||||||
"item": "minecraft:slime_ball"
|
"item": "minecraft:green_dye"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pattern": [
|
"pattern": [
|
||||||
" D ",
|
"LLL",
|
||||||
"CPC",
|
"PPP",
|
||||||
"SPS"
|
"FIS"
|
||||||
],
|
],
|
||||||
"result": {
|
"result": {
|
||||||
"count": 2,
|
"count": 3,
|
||||||
"item": "new_soviet:green_linoleum"
|
"item": "new_soviet:green_linoleum"
|
||||||
},
|
},
|
||||||
"show_notification": true
|
"show_notification": true
|
||||||
|
|
|
@ -2,26 +2,29 @@
|
||||||
"type": "minecraft:crafting_shaped",
|
"type": "minecraft:crafting_shaped",
|
||||||
"category": "building",
|
"category": "building",
|
||||||
"key": {
|
"key": {
|
||||||
"C": {
|
"F": {
|
||||||
"item": "minecraft:clay"
|
|
||||||
},
|
|
||||||
"D": {
|
|
||||||
"item": "minecraft:gray_dye"
|
"item": "minecraft:gray_dye"
|
||||||
},
|
},
|
||||||
|
"I": {
|
||||||
|
"item": "minecraft:iron_nugget"
|
||||||
|
},
|
||||||
|
"L": {
|
||||||
|
"item": "minecraft:leather"
|
||||||
|
},
|
||||||
"P": {
|
"P": {
|
||||||
"item": "minecraft:paper"
|
"item": "minecraft:oak_planks"
|
||||||
},
|
},
|
||||||
"S": {
|
"S": {
|
||||||
"item": "minecraft:slime_ball"
|
"item": "minecraft:gray_dye"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pattern": [
|
"pattern": [
|
||||||
" D ",
|
"LLL",
|
||||||
"CPC",
|
"PPP",
|
||||||
"SPS"
|
"FIS"
|
||||||
],
|
],
|
||||||
"result": {
|
"result": {
|
||||||
"count": 2,
|
"count": 3,
|
||||||
"item": "new_soviet:orange_linoleum"
|
"item": "new_soviet:orange_linoleum"
|
||||||
},
|
},
|
||||||
"show_notification": true
|
"show_notification": true
|
||||||
|
|
|
@ -2,26 +2,29 @@
|
||||||
"type": "minecraft:crafting_shaped",
|
"type": "minecraft:crafting_shaped",
|
||||||
"category": "building",
|
"category": "building",
|
||||||
"key": {
|
"key": {
|
||||||
"C": {
|
"F": {
|
||||||
"item": "minecraft:clay"
|
|
||||||
},
|
|
||||||
"D": {
|
|
||||||
"item": "minecraft:red_dye"
|
"item": "minecraft:red_dye"
|
||||||
},
|
},
|
||||||
|
"I": {
|
||||||
|
"item": "minecraft:iron_nugget"
|
||||||
|
},
|
||||||
|
"L": {
|
||||||
|
"item": "minecraft:leather"
|
||||||
|
},
|
||||||
"P": {
|
"P": {
|
||||||
"item": "minecraft:paper"
|
"item": "minecraft:oak_planks"
|
||||||
},
|
},
|
||||||
"S": {
|
"S": {
|
||||||
"item": "minecraft:slime_ball"
|
"item": "minecraft:red_dye"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pattern": [
|
"pattern": [
|
||||||
" D ",
|
"LLL",
|
||||||
"CPC",
|
"PPP",
|
||||||
"SPS"
|
"FIS"
|
||||||
],
|
],
|
||||||
"result": {
|
"result": {
|
||||||
"count": 2,
|
"count": 3,
|
||||||
"item": "new_soviet:red_linoleum"
|
"item": "new_soviet:red_linoleum"
|
||||||
},
|
},
|
||||||
"show_notification": true
|
"show_notification": true
|
||||||
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shaped",
|
||||||
|
"category": "building",
|
||||||
|
"key": {
|
||||||
|
"F": {
|
||||||
|
"item": "minecraft:yellow_dye"
|
||||||
|
},
|
||||||
|
"I": {
|
||||||
|
"item": "minecraft:iron_nugget"
|
||||||
|
},
|
||||||
|
"L": {
|
||||||
|
"item": "minecraft:leather"
|
||||||
|
},
|
||||||
|
"P": {
|
||||||
|
"item": "minecraft:oak_planks"
|
||||||
|
},
|
||||||
|
"S": {
|
||||||
|
"item": "minecraft:red_dye"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pattern": [
|
||||||
|
"LLL",
|
||||||
|
"PPP",
|
||||||
|
"FIS"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"count": 3,
|
||||||
|
"item": "new_soviet:yellow_red_linoleum"
|
||||||
|
},
|
||||||
|
"show_notification": true
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shaped",
|
||||||
|
"category": "building",
|
||||||
|
"key": {
|
||||||
|
"#": {
|
||||||
|
"item": "new_soviet:yellow_red_linoleum"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pattern": [
|
||||||
|
"###"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"count": 6,
|
||||||
|
"item": "new_soviet:yellow_red_linoleum_slab"
|
||||||
|
},
|
||||||
|
"show_notification": true
|
||||||
|
}
|
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"type": "minecraft:stonecutting",
|
||||||
|
"count": 2,
|
||||||
|
"ingredient": {
|
||||||
|
"item": "new_soviet:yellow_red_linoleum"
|
||||||
|
},
|
||||||
|
"result": "new_soviet:yellow_red_linoleum_slab"
|
||||||
|
}
|
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shaped",
|
||||||
|
"category": "building",
|
||||||
|
"key": {
|
||||||
|
"#": {
|
||||||
|
"item": "new_soviet:yellow_red_linoleum"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pattern": [
|
||||||
|
"# ",
|
||||||
|
"## ",
|
||||||
|
"###"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"count": 4,
|
||||||
|
"item": "new_soviet:yellow_red_linoleum_stairs"
|
||||||
|
},
|
||||||
|
"show_notification": true
|
||||||
|
}
|
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"type": "minecraft:stonecutting",
|
||||||
|
"count": 1,
|
||||||
|
"ingredient": {
|
||||||
|
"item": "new_soviet:yellow_red_linoleum"
|
||||||
|
},
|
||||||
|
"result": "new_soviet:yellow_red_linoleum_stairs"
|
||||||
|
}
|
|
@ -11,6 +11,7 @@ import net.minecraft.item.Items;
|
||||||
import net.minecraft.recipe.Ingredient;
|
import net.minecraft.recipe.Ingredient;
|
||||||
import net.minecraft.recipe.book.RecipeCategory;
|
import net.minecraft.recipe.book.RecipeCategory;
|
||||||
import net.minecraft.registry.Registries;
|
import net.minecraft.registry.Registries;
|
||||||
|
import net.minecraft.registry.tag.BlockTags;
|
||||||
import net.minecraft.registry.tag.ItemTags;
|
import net.minecraft.registry.tag.ItemTags;
|
||||||
import net.minecraft.util.Util;
|
import net.minecraft.util.Util;
|
||||||
import su.a71.new_soviet.registration.NSE_Blocks;
|
import su.a71.new_soviet.registration.NSE_Blocks;
|
||||||
|
@ -162,15 +163,20 @@ public class RecipeGenerator extends FabricRecipeProvider {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void linoleumRecipe(Consumer<RecipeJsonProvider> exporter, ItemConvertible output, ItemConvertible dye) {
|
private void linoleumRecipe(Consumer<RecipeJsonProvider> exporter, ItemConvertible output, ItemConvertible dye) {
|
||||||
ShapedRecipeJsonBuilder.create(RecipeCategory.BUILDING_BLOCKS, output, 2)
|
linoleumRecipe(exporter, output, dye, dye);
|
||||||
.input('D', dye).input('P', Items.PAPER).input('C', Items.CLAY).input('S', Items.SLIME_BALL)
|
}
|
||||||
.pattern(" D ")
|
|
||||||
.pattern("CPC")
|
private void linoleumRecipe(Consumer<RecipeJsonProvider> exporter, ItemConvertible output, ItemConvertible dye1, ItemConvertible dye2) {
|
||||||
.pattern("SPS")
|
ShapedRecipeJsonBuilder.create(RecipeCategory.BUILDING_BLOCKS, output, 3)
|
||||||
.criterion(hasItem(dye), conditionsFromItem(dye))
|
.input('F', dye1).input('S', dye2).input('L', Items.LEATHER).input('P', Items.OAK_PLANKS).input('I', Items.IRON_NUGGET)
|
||||||
.criterion(hasItem(Items.PAPER), conditionsFromItem(Items.PAPER))
|
.pattern("LLL")
|
||||||
.criterion(hasItem(Items.SLIME_BALL), conditionsFromItem(Items.SLIME_BALL))
|
.pattern("PPP")
|
||||||
.criterion(hasItem(Items.CLAY), conditionsFromItem(Items.CLAY))
|
.pattern("FIS")
|
||||||
|
.criterion(hasItem(dye1) + "_1", conditionsFromItem(dye1))
|
||||||
|
.criterion(hasItem(dye2) + "_2", conditionsFromItem(dye2))
|
||||||
|
.criterion(hasItem(Items.LEATHER), conditionsFromItem(Items.LEATHER))
|
||||||
|
.criterion(hasItem(Items.OAK_PLANKS), conditionsFromItem(Items.OAK_PLANKS))
|
||||||
|
.criterion(hasItem(Items.IRON_NUGGET), conditionsFromItem(Items.IRON_NUGGET))
|
||||||
.offerTo(exporter);
|
.offerTo(exporter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -997,6 +1003,8 @@ public class RecipeGenerator extends FabricRecipeProvider {
|
||||||
offerStairsAndSlab(exporter, NSE_Blocks.ORANGE_LINOLEUM_STAIRS, NSE_Blocks.ORANGE_LINOLEUM_SLAB, NSE_Blocks.ORANGE_LINOLEUM);
|
offerStairsAndSlab(exporter, NSE_Blocks.ORANGE_LINOLEUM_STAIRS, NSE_Blocks.ORANGE_LINOLEUM_SLAB, NSE_Blocks.ORANGE_LINOLEUM);
|
||||||
offerStairsAndSlab(exporter, NSE_Blocks.BROWN_LINOLEUM_STAIRS, NSE_Blocks.BROWN_LINOLEUM_SLAB, NSE_Blocks.BROWN_LINOLEUM);
|
offerStairsAndSlab(exporter, NSE_Blocks.BROWN_LINOLEUM_STAIRS, NSE_Blocks.BROWN_LINOLEUM_SLAB, NSE_Blocks.BROWN_LINOLEUM);
|
||||||
offerStairsAndSlab(exporter, NSE_Blocks.CYAN_LINOLEUM_STAIRS, NSE_Blocks.CYAN_LINOLEUM_SLAB, NSE_Blocks.CYAN_LINOLEUM);
|
offerStairsAndSlab(exporter, NSE_Blocks.CYAN_LINOLEUM_STAIRS, NSE_Blocks.CYAN_LINOLEUM_SLAB, NSE_Blocks.CYAN_LINOLEUM);
|
||||||
|
offerStairsAndSlab(exporter, NSE_Blocks.BEIGE_LINOLEUM_STAIRS, NSE_Blocks.BEIGE_LINOLEUM_SLAB, NSE_Blocks.BEIGE_LINOLEUM);
|
||||||
|
offerStairsAndSlab(exporter, NSE_Blocks.YELLOW_RED_LINOLEUM_STAIRS, NSE_Blocks.YELLOW_RED_LINOLEUM_SLAB, NSE_Blocks.YELLOW_RED_LINOLEUM);
|
||||||
offerStairsAndSlab(exporter, NSE_Blocks.METAL_PLATING_STAIRS, NSE_Blocks.METAL_PLATING_SLAB, NSE_Blocks.METAL_PLATING);
|
offerStairsAndSlab(exporter, NSE_Blocks.METAL_PLATING_STAIRS, NSE_Blocks.METAL_PLATING_SLAB, NSE_Blocks.METAL_PLATING);
|
||||||
offerStairsAndSlab(exporter, NSE_Blocks.HERRINGBONE_CHERRY_PLANKS_STAIRS, NSE_Blocks.HERRINGBONE_CHERRY_PLANKS_SLAB, NSE_Blocks.HERRINGBONE_CHERRY_PLANKS);
|
offerStairsAndSlab(exporter, NSE_Blocks.HERRINGBONE_CHERRY_PLANKS_STAIRS, NSE_Blocks.HERRINGBONE_CHERRY_PLANKS_SLAB, NSE_Blocks.HERRINGBONE_CHERRY_PLANKS);
|
||||||
offerStairsAndSlab(exporter, NSE_Blocks.CROSS_CHERRY_PLANKS_STAIRS, NSE_Blocks.CROSS_CHERRY_PLANKS_SLAB, NSE_Blocks.CROSS_CHERRY_PLANKS);
|
offerStairsAndSlab(exporter, NSE_Blocks.CROSS_CHERRY_PLANKS_STAIRS, NSE_Blocks.CROSS_CHERRY_PLANKS_SLAB, NSE_Blocks.CROSS_CHERRY_PLANKS);
|
||||||
|
@ -1088,11 +1096,13 @@ public class RecipeGenerator extends FabricRecipeProvider {
|
||||||
linoleumRecipe(exporter, NSE_Blocks.ORANGE_LINOLEUM, Items.GRAY_DYE);
|
linoleumRecipe(exporter, NSE_Blocks.ORANGE_LINOLEUM, Items.GRAY_DYE);
|
||||||
linoleumRecipe(exporter, NSE_Blocks.BROWN_LINOLEUM, Items.GRAY_DYE);
|
linoleumRecipe(exporter, NSE_Blocks.BROWN_LINOLEUM, Items.GRAY_DYE);
|
||||||
linoleumRecipe(exporter, NSE_Blocks.CYAN_LINOLEUM, Items.GRAY_DYE);
|
linoleumRecipe(exporter, NSE_Blocks.CYAN_LINOLEUM, Items.GRAY_DYE);
|
||||||
|
linoleumRecipe(exporter, NSE_Blocks.YELLOW_RED_LINOLEUM, Items.YELLOW_DYE, Items.RED_DYE);
|
||||||
|
linoleumRecipe(exporter, NSE_Blocks.BEIGE_LINOLEUM, Items.WHITE_DYE);
|
||||||
offerStonecuttingRecipe(exporter, RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CROSS_ORANGE_LINOLEUM, NSE_Blocks.ORANGE_LINOLEUM);
|
offerStonecuttingRecipe(exporter, RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CROSS_ORANGE_LINOLEUM, NSE_Blocks.ORANGE_LINOLEUM);
|
||||||
offerStonecuttingRecipe(exporter, RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CROSS_BROWN_LINOLEUM, NSE_Blocks.ORANGE_LINOLEUM);
|
offerStonecuttingRecipe(exporter, RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CROSS_BROWN_LINOLEUM, NSE_Blocks.ORANGE_LINOLEUM);
|
||||||
offerDyeableRecipes(exporter,
|
offerDyeableRecipes(exporter,
|
||||||
List.of(Items.GREEN_DYE, Items.ORANGE_DYE, Items.BLUE_DYE, Items.RED_DYE, Items.GRAY_DYE, Items.BROWN_DYE, Items.CYAN_DYE),
|
List.of(Items.WHITE_DYE, Items.GREEN_DYE, Items.ORANGE_DYE, Items.BLUE_DYE, Items.RED_DYE, Items.GRAY_DYE, Items.BROWN_DYE, Items.CYAN_DYE),
|
||||||
List.of(NSE_Blocks.GREEN_LINOLEUM.asItem(), NSE_Blocks.ORANGE_LINOLEUM.asItem(), NSE_Blocks.BLUE_LINOLEUM.asItem(),
|
List.of(NSE_Blocks.BEIGE_LINOLEUM.asItem(), NSE_Blocks.GREEN_LINOLEUM.asItem(), NSE_Blocks.ORANGE_LINOLEUM.asItem(), NSE_Blocks.BLUE_LINOLEUM.asItem(),
|
||||||
NSE_Blocks.RED_LINOLEUM.asItem(), NSE_Blocks.GRAY_LINOLEUM.asItem(), NSE_Blocks.BROWN_LINOLEUM.asItem(), NSE_Blocks.CYAN_LINOLEUM.asItem()),
|
NSE_Blocks.RED_LINOLEUM.asItem(), NSE_Blocks.GRAY_LINOLEUM.asItem(), NSE_Blocks.BROWN_LINOLEUM.asItem(), NSE_Blocks.CYAN_LINOLEUM.asItem()),
|
||||||
"linoleum");
|
"linoleum");
|
||||||
|
|
||||||
|
|
Before Width: | Height: | Size: 3 KiB After Width: | Height: | Size: 3 KiB |
Loading…
Reference in a new issue