fix recipes

This commit is contained in:
QuImUfu 2024-07-25 21:07:09 +02:00
parent 9545a46171
commit 4ee1a066ac
25 changed files with 55 additions and 51 deletions

View File

@ -10,7 +10,7 @@ yarn_mappings=1.21+build.2
loader_version=0.15.11 loader_version=0.15.11
# Mod Properties # Mod Properties
mod_version=0.9.5.1 mod_version=0.9.5.2
maven_group=quimufu.colourful-portalRepresentations maven_group=quimufu.colourful-portalRepresentations
archives_base_name=colourful-portalRepresentations archives_base_name=colourful-portalRepresentations

View File

@ -22,5 +22,7 @@
"colourful_portals.midnightconfig.yellow": "Blöcke, die gelbe Portale erzeugen", "colourful_portals.midnightconfig.yellow": "Blöcke, die gelbe Portale erzeugen",
"item.colourful_portals.colour_blob_bright": "Heller Farbmix", "item.colourful_portals.colour_blob_bright": "Heller Farbmix",
"item.colourful_portals.colour_blob_dark": "Dunkler Farbmix", "item.colourful_portals.colour_blob_dark": "Dunkler Farbmix",
"item.colourful_portals.portal_fluid_bucket": "Farbeimer" "item.colourful_portals.portal_fluid_bucket": "Farbeimer",
"tag.block.c.crystals": "Kristalle",
"tag.block.c.slime_balls": "Schleimbälle"
} }

View File

@ -22,5 +22,7 @@
"colourful_portals.midnightconfig.yellow": "Blocks that create yellow portals", "colourful_portals.midnightconfig.yellow": "Blocks that create yellow portals",
"item.colourful_portals.colour_blob_bright": "Bright Colour Mix", "item.colourful_portals.colour_blob_bright": "Bright Colour Mix",
"item.colourful_portals.colour_blob_dark": "Dark Colour Mix", "item.colourful_portals.colour_blob_dark": "Dark Colour Mix",
"item.colourful_portals.portal_fluid_bucket": "Colourful Bucket" "item.colourful_portals.portal_fluid_bucket": "Colourful Bucket",
"tag.block.c.slime_balls": "Slime Balls",
"tag.block.c.crystals": "Crystals"
} }

View File

@ -0,0 +1,37 @@
{
"type": "minecraft:crafting_shapeless",
"category": "misc",
"ingredients": [
{
"tag": "c:dyes/white"
},
{
"tag": "c:dyes/yellow"
},
{
"tag": "c:dyes/pink"
},
{
"tag": "c:dyes/lime"
},
{
"tag": "c:dyes/light_gray"
},
{
"tag": "c:dyes/orange"
},
{
"tag": "c:dyes/light_blue"
},
{
"tag": "c:dyes/magenta"
},
{
"tag": "c:slime_balls"
}
],
"result": {
"count": 1,
"id": "colourful_portals:colour_blob_bright"
}
}

View File

@ -3,28 +3,28 @@
"category": "misc", "category": "misc",
"ingredients": [ "ingredients": [
{ {
"tag": "c:black_dyes" "tag": "c:dyes/black"
}, },
{ {
"tag": "c:gray_dyes" "tag": "c:dyes/gray"
}, },
{ {
"tag": "c:blue_dyes" "tag": "c:dyes/blue"
}, },
{ {
"tag": "c:red_dyes" "tag": "c:dyes/red"
}, },
{ {
"tag": "c:brown_dyes" "tag": "c:dyes/brown"
}, },
{ {
"tag": "c:green_dyes" "tag": "c:dyes/green"
}, },
{ {
"tag": "c:purple_dyes" "tag": "c:dyes/purple"
}, },
{ {
"tag": "c:cyan_dyes" "tag": "c:dyes/cyan"
}, },
{ {
"tag": "c:slime_balls" "tag": "c:slime_balls"
@ -32,6 +32,6 @@
], ],
"result": { "result": {
"count": 1, "count": 1,
"item": "colourful_portals:colour_blob_dark" "id": "colourful_portals:colour_blob_dark"
} }
} }

View File

@ -18,7 +18,7 @@
"item": "minecraft:ender_eye" "item": "minecraft:ender_eye"
}, },
"D": { "D": {
"tag": "c:gems" "tag": "c:crystals"
} }
}, },
"pattern": [ "pattern": [
@ -28,7 +28,7 @@
], ],
"result": { "result": {
"count": 1, "count": 1,
"item": "colourful_portals:portal_fluid_bucket" "id": "colourful_portals:portal_fluid_bucket"
}, },
"show_notification": true "show_notification": true
} }

View File

@ -1,37 +0,0 @@
{
"type": "minecraft:crafting_shapeless",
"category": "misc",
"ingredients": [
{
"tag": "c:white_dyes"
},
{
"tag": "c:yellow_dyes"
},
{
"tag": "c:pink_dyes"
},
{
"tag": "c:lime_dyes"
},
{
"tag": "c:light_gray_dyes"
},
{
"tag": "c:orange_dyes"
},
{
"tag": "c:light_blue_dyes"
},
{
"tag": "c:magenta_dyes"
},
{
"tag": "c:slime_balls"
}
],
"result": {
"count": 1,
"item": "colourful_portals:colour_blob_bright"
}
}