From 556858afa709e3630c6c08fa257ce157981347f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20L=C3=B8vbr=C3=B8tte=20Olsen?= Date: Tue, 21 May 2019 14:22:11 +0200 Subject: [PATCH] MC-001 --- .../data/minecraft/recipes/stone_slab.json | 1 + MC-001_disable_vanilla/pack.mcmeta | 6 ++++++ .../recipes/smooth-quartz.json | 17 +++-------------- .../recipes/smooth-red-sandstone.json | 17 +++-------------- .../recipes/smooth-sandstone.json | 17 +++-------------- .../recipes/smooth-stone.json | 17 +++-------------- 6 files changed, 19 insertions(+), 56 deletions(-) create mode 100644 MC-001_disable_vanilla/data/minecraft/recipes/stone_slab.json create mode 100755 MC-001_disable_vanilla/pack.mcmeta diff --git a/MC-001_disable_vanilla/data/minecraft/recipes/stone_slab.json b/MC-001_disable_vanilla/data/minecraft/recipes/stone_slab.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/MC-001_disable_vanilla/data/minecraft/recipes/stone_slab.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/MC-001_disable_vanilla/pack.mcmeta b/MC-001_disable_vanilla/pack.mcmeta new file mode 100755 index 0000000..26cd3cd --- /dev/null +++ b/MC-001_disable_vanilla/pack.mcmeta @@ -0,0 +1,6 @@ +{ + "pack": { + "pack_format": 1, + "description": "MC-001, disables vanilla stone to smooth stone slabs" + } +} diff --git a/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-quartz.json b/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-quartz.json index 67cfd41..bd91fa2 100755 --- a/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-quartz.json +++ b/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-quartz.json @@ -1,16 +1,5 @@ { - "type": "crafting_shaped", - "pattern": [ - "__", - "__" - ], - "key": { - "_": { - "item": "minecraft:quartz_slab" - } - }, - "result": { - "item": "minecraft:smooth_quartz", - "count": 2 - } + "type": "smelting", + "ingredient": {"item": "minecraft:quartz_block"}, + "result": "minecraft:smooth_quartz" } \ No newline at end of file diff --git a/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-red-sandstone.json b/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-red-sandstone.json index c8ac0a9..580e461 100755 --- a/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-red-sandstone.json +++ b/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-red-sandstone.json @@ -1,16 +1,5 @@ { - "type": "crafting_shaped", - "pattern": [ - "__", - "__" - ], - "key": { - "_": { - "item": "minecraft:red_sandstone_slab" - } - }, - "result": { - "item": "minecraft:smooth_red_sandstone", - "count": 2 - } + "type": "smelting", + "ingredient": {"item": "minecraft:red_sandstone"}, + "result": "minecraft:smooth_red_sandstone" } \ No newline at end of file diff --git a/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-sandstone.json b/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-sandstone.json index c336e7e..d1cee18 100755 --- a/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-sandstone.json +++ b/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-sandstone.json @@ -1,16 +1,5 @@ { - "type": "crafting_shaped", - "pattern": [ - "__", - "__" - ], - "key": { - "_": { - "item": "minecraft:sandstone_slab" - } - }, - "result": { - "item": "minecraft:smooth_sandstone", - "count": 2 - } + "type": "smelting", + "ingredient": {"item": "minecraft:sandstone"}, + "result": "minecraft:smooth_sandstone" } \ No newline at end of file diff --git a/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-stone.json b/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-stone.json index 0a8d0fd..bac653b 100755 --- a/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-stone.json +++ b/dodsorfas_old_blocks/data/dodsorfas_old_blocks/recipes/smooth-stone.json @@ -1,16 +1,5 @@ { - "type": "crafting_shaped", - "pattern": [ - "__", - "__" - ], - "key": { - "_": { - "item": "minecraft:stone_slab" - } - }, - "result": { - "item": "minecraft:smooth_stone", - "count": 2 - } + "type": "smelting", + "ingredient": {"item": "minecraft:stone"}, + "result": "minecraft:smooth_stone" } \ No newline at end of file