From b374cfd0eaa2ee2740cb64087bb3ce0181cb13dc Mon Sep 17 00:00:00 2001 From: Zontreck Date: Fri, 1 Mar 2024 04:56:55 -0700 Subject: [PATCH] Add in missing recipes --- gradle.properties | 2 +- .../assets/ariasessentials/lang/en_us.json | 1 + .../finalized/steel_catwalk_from_top.json | 11 +++++++++++ .../finalized/steel_catwalk_stairs_dr.json | 18 ++++++++++++++++++ .../finalized/steel_catwalk_stairs_lr.json | 18 ++++++++++++++++++ .../finalized/steel_catwalk_stairs_rr.json | 18 ++++++++++++++++++ .../finalized/steel_catwalk_top.json | 11 +++++++++++ .../finalized/steel_railing.json | 16 ++++++++++++++++ 8 files changed, 94 insertions(+), 1 deletion(-) create mode 100644 src/main/resources/data/ariasessentials/recipes/engineersdecor/finalized/steel_catwalk_from_top.json create mode 100644 src/main/resources/data/ariasessentials/recipes/engineersdecor/finalized/steel_catwalk_stairs_dr.json create mode 100644 src/main/resources/data/ariasessentials/recipes/engineersdecor/finalized/steel_catwalk_stairs_lr.json create mode 100644 src/main/resources/data/ariasessentials/recipes/engineersdecor/finalized/steel_catwalk_stairs_rr.json create mode 100644 src/main/resources/data/ariasessentials/recipes/engineersdecor/finalized/steel_catwalk_top.json create mode 100644 src/main/resources/data/ariasessentials/recipes/engineersdecor/finalized/steel_railing.json diff --git a/gradle.properties b/gradle.properties index 833ba23..386025a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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 diff --git a/src/main/resources/assets/ariasessentials/lang/en_us.json b/src/main/resources/assets/ariasessentials/lang/en_us.json index 516a5a4..d39f4c1 100644 --- a/src/main/resources/assets/ariasessentials/lang/en_us.json +++ b/src/main/resources/assets/ariasessentials/lang/en_us.json @@ -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", diff --git a/src/main/resources/data/ariasessentials/recipes/engineersdecor/finalized/steel_catwalk_from_top.json b/src/main/resources/data/ariasessentials/recipes/engineersdecor/finalized/steel_catwalk_from_top.json new file mode 100644 index 0000000..0c57a29 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/engineersdecor/finalized/steel_catwalk_from_top.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:steel_catwalk_top" + } + ], + "result": { + "item": "ariasessentials:steel_catwalk" + } +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/engineersdecor/finalized/steel_catwalk_stairs_dr.json b/src/main/resources/data/ariasessentials/recipes/engineersdecor/finalized/steel_catwalk_stairs_dr.json new file mode 100644 index 0000000..0f177b1 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/engineersdecor/finalized/steel_catwalk_stairs_dr.json @@ -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 + } +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/engineersdecor/finalized/steel_catwalk_stairs_lr.json b/src/main/resources/data/ariasessentials/recipes/engineersdecor/finalized/steel_catwalk_stairs_lr.json new file mode 100644 index 0000000..70b786d --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/engineersdecor/finalized/steel_catwalk_stairs_lr.json @@ -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 + } +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/engineersdecor/finalized/steel_catwalk_stairs_rr.json b/src/main/resources/data/ariasessentials/recipes/engineersdecor/finalized/steel_catwalk_stairs_rr.json new file mode 100644 index 0000000..0562915 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/engineersdecor/finalized/steel_catwalk_stairs_rr.json @@ -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 + } +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/engineersdecor/finalized/steel_catwalk_top.json b/src/main/resources/data/ariasessentials/recipes/engineersdecor/finalized/steel_catwalk_top.json new file mode 100644 index 0000000..39277fa --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/engineersdecor/finalized/steel_catwalk_top.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:steel_catwalk" + } + ], + "result": { + "item": "ariasessentials:steel_catwalk_top" + } +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/engineersdecor/finalized/steel_railing.json b/src/main/resources/data/ariasessentials/recipes/engineersdecor/finalized/steel_railing.json new file mode 100644 index 0000000..28092c4 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/engineersdecor/finalized/steel_railing.json @@ -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 + } +}