Add in missing recipes

This commit is contained in:
Zontreck 2024-03-01 04:56:55 -07:00
parent 108220bedc
commit b374cfd0ea
8 changed files with 94 additions and 1 deletions

View file

@ -48,7 +48,7 @@ mod_name=Aria's Essentials
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
mod_license=GPLv3
# The mod version. See https://semver.org/
mod_version=1201.2.030124.0405
mod_version=1201.2.030124.0452
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
# This should match the base package used for the mod sources.
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html

View file

@ -36,6 +36,7 @@
"block.ariasessentials.steel_floor_grating": "Steel Floor Grating",
"block.ariasessentials.steel_table": "Steel Table",
"block.ariasessentials.steel_catwalk": "Steel Catwalk",
"block.ariasessentials.steel_catwalk_top": "Top Oriented Steel Catwalk",
"block.ariasessentials.steel_railing": "Steel Railing",
"block.ariasessentials.steel_catwalk_stairs": "Steel Catwalk Stairs",
"block.ariasessentials.steel_catwalk_stairs_lr": "Steel Catwalk Left Rail",

View file

@ -0,0 +1,11 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "ariasessentials:steel_catwalk_top"
}
],
"result": {
"item": "ariasessentials:steel_catwalk"
}
}

View file

@ -0,0 +1,18 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"RSR"
],
"key": {
"S": {
"item": "ariasessentials:steel_catwalk"
},
"R": {
"item": "ariasessentials:steel_railing"
}
},
"result": {
"item": "ariasessentials:steel_catwalk_stairs_dr",
"count": 6
}
}

View file

@ -0,0 +1,18 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"RS "
],
"key": {
"S": {
"item": "ariasessentials:steel_catwalk"
},
"R": {
"item": "ariasessentials:steel_railing"
}
},
"result": {
"item": "ariasessentials:steel_catwalk_stairs_lr",
"count": 6
}
}

View file

@ -0,0 +1,18 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
" SR"
],
"key": {
"S": {
"item": "ariasessentials:steel_catwalk"
},
"R": {
"item": "ariasessentials:steel_railing"
}
},
"result": {
"item": "ariasessentials:steel_catwalk_stairs_rr",
"count": 6
}
}

View file

@ -0,0 +1,11 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "ariasessentials:steel_catwalk"
}
],
"result": {
"item": "ariasessentials:steel_catwalk_top"
}
}

View file

@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"WWW",
"W W"
],
"key": {
"W": {
"item": "ariasessentials:metal_bar"
}
},
"result": {
"item": "ariasessentials:steel_railing",
"count": 1
}
}