From 9bcdf30eb4f8793a379680607e9f6e921e70e1f7 Mon Sep 17 00:00:00 2001 From: Chris Toph Date: Sun, 16 Feb 2025 20:39:50 -0500 Subject: [PATCH] Simple (and op) recipes --- .../data/tutorialmod/recipes/sapphire_blasting.json | 10 ++++++++++ .../recipes/sapphire_blasting_from_block.json | 10 ++++++++++ .../recipes/sapphire_block_from_sapphire.json | 13 +++++++++++++ .../tutorialmod/recipes/sapphire_from_block.json | 13 +++++++++++++ .../data/tutorialmod/recipes/sapphire_smelting.json | 10 ++++++++++ .../recipes/sapphire_smelting_from_block.json | 10 ++++++++++ 6 files changed, 66 insertions(+) create mode 100644 src/main/resources/data/tutorialmod/recipes/sapphire_blasting.json create mode 100644 src/main/resources/data/tutorialmod/recipes/sapphire_blasting_from_block.json create mode 100644 src/main/resources/data/tutorialmod/recipes/sapphire_block_from_sapphire.json create mode 100644 src/main/resources/data/tutorialmod/recipes/sapphire_from_block.json create mode 100644 src/main/resources/data/tutorialmod/recipes/sapphire_smelting.json create mode 100644 src/main/resources/data/tutorialmod/recipes/sapphire_smelting_from_block.json diff --git a/src/main/resources/data/tutorialmod/recipes/sapphire_blasting.json b/src/main/resources/data/tutorialmod/recipes/sapphire_blasting.json new file mode 100644 index 0000000..4287748 --- /dev/null +++ b/src/main/resources/data/tutorialmod/recipes/sapphire_blasting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 20, + "experience": 0.35, + "ingredient": { + "item": "tutorialmod:raw_sapphire" + }, + "result": "tutorialmod:sapphire" +} diff --git a/src/main/resources/data/tutorialmod/recipes/sapphire_blasting_from_block.json b/src/main/resources/data/tutorialmod/recipes/sapphire_blasting_from_block.json new file mode 100644 index 0000000..2a2c958 --- /dev/null +++ b/src/main/resources/data/tutorialmod/recipes/sapphire_blasting_from_block.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 10, + "experience": 10, + "ingredient": { + "item": "tutorialmod:raw_sapphire_block" + }, + "result": "tutorialmod:sapphire" +} diff --git a/src/main/resources/data/tutorialmod/recipes/sapphire_block_from_sapphire.json b/src/main/resources/data/tutorialmod/recipes/sapphire_block_from_sapphire.json new file mode 100644 index 0000000..49e8fad --- /dev/null +++ b/src/main/resources/data/tutorialmod/recipes/sapphire_block_from_sapphire.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": ["###", "###", "###"], + "key": { + "#": { + "item": "tutorialmod:sapphire" + } + }, + "result": { + "item": "tutorialmod:sapphire_block" + } +} diff --git a/src/main/resources/data/tutorialmod/recipes/sapphire_from_block.json b/src/main/resources/data/tutorialmod/recipes/sapphire_from_block.json new file mode 100644 index 0000000..e3df2e2 --- /dev/null +++ b/src/main/resources/data/tutorialmod/recipes/sapphire_from_block.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "tutorialmod:sapphire_block" + } + ], + "result": { + "item": "tutorialmod:sapphire", + "count": 9 + } +} diff --git a/src/main/resources/data/tutorialmod/recipes/sapphire_smelting.json b/src/main/resources/data/tutorialmod/recipes/sapphire_smelting.json new file mode 100644 index 0000000..2ac493f --- /dev/null +++ b/src/main/resources/data/tutorialmod/recipes/sapphire_smelting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 100, + "experience": 0.35, + "ingredient": { + "item": "tutorialmod:raw_sapphire" + }, + "result": "tutorialmod:sapphire" +} diff --git a/src/main/resources/data/tutorialmod/recipes/sapphire_smelting_from_block.json b/src/main/resources/data/tutorialmod/recipes/sapphire_smelting_from_block.json new file mode 100644 index 0000000..2649b26 --- /dev/null +++ b/src/main/resources/data/tutorialmod/recipes/sapphire_smelting_from_block.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 1, + "experience": 10000, + "ingredient": { + "item": "tutorialmod:raw_sapphire_block" + }, + "result": "tutorialmod:sapphire" +}