From b53a98852d8678d05bf1f02370cfd7938b6b8b04 Mon Sep 17 00:00:00 2001 From: Forstride Date: Mon, 18 May 2020 18:38:28 -0400 Subject: [PATCH] Added stripped wood recipes (Closes #1612) --- .../building_blocks/stripped_cherry_wood.json | 32 +++++++++++++++++++ .../building_blocks/stripped_dead_wood.json | 32 +++++++++++++++++++ .../building_blocks/stripped_fir_wood.json | 32 +++++++++++++++++++ .../stripped_hellbark_wood.json | 32 +++++++++++++++++++ .../stripped_jacaranda_wood.json | 32 +++++++++++++++++++ .../building_blocks/stripped_magic_wood.json | 32 +++++++++++++++++++ .../stripped_mahogany_wood.json | 32 +++++++++++++++++++ .../building_blocks/stripped_palm_wood.json | 32 +++++++++++++++++++ .../stripped_redwood_wood.json | 32 +++++++++++++++++++ .../building_blocks/stripped_umbran_wood.json | 32 +++++++++++++++++++ .../building_blocks/stripped_willow_wood.json | 32 +++++++++++++++++++ .../recipes/stripped_cherry_wood.json | 17 ++++++++++ .../recipes/stripped_dead_wood.json | 17 ++++++++++ .../recipes/stripped_fir_wood.json | 17 ++++++++++ .../recipes/stripped_hellbark_wood.json | 17 ++++++++++ .../recipes/stripped_jacaranda_wood.json | 17 ++++++++++ .../recipes/stripped_magic_wood.json | 17 ++++++++++ .../recipes/stripped_mahogany_wood.json | 17 ++++++++++ .../recipes/stripped_palm_wood.json | 17 ++++++++++ .../recipes/stripped_redwood_wood.json | 17 ++++++++++ .../recipes/stripped_umbran_wood.json | 17 ++++++++++ .../recipes/stripped_willow_wood.json | 17 ++++++++++ 22 files changed, 539 insertions(+) create mode 100644 src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_cherry_wood.json create mode 100644 src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_dead_wood.json create mode 100644 src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_fir_wood.json create mode 100644 src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_hellbark_wood.json create mode 100644 src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_jacaranda_wood.json create mode 100644 src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_magic_wood.json create mode 100644 src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_mahogany_wood.json create mode 100644 src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_palm_wood.json create mode 100644 src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_redwood_wood.json create mode 100644 src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_umbran_wood.json create mode 100644 src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_willow_wood.json create mode 100644 src/main/resources/data/biomesoplenty/recipes/stripped_cherry_wood.json create mode 100644 src/main/resources/data/biomesoplenty/recipes/stripped_dead_wood.json create mode 100644 src/main/resources/data/biomesoplenty/recipes/stripped_fir_wood.json create mode 100644 src/main/resources/data/biomesoplenty/recipes/stripped_hellbark_wood.json create mode 100644 src/main/resources/data/biomesoplenty/recipes/stripped_jacaranda_wood.json create mode 100644 src/main/resources/data/biomesoplenty/recipes/stripped_magic_wood.json create mode 100644 src/main/resources/data/biomesoplenty/recipes/stripped_mahogany_wood.json create mode 100644 src/main/resources/data/biomesoplenty/recipes/stripped_palm_wood.json create mode 100644 src/main/resources/data/biomesoplenty/recipes/stripped_redwood_wood.json create mode 100644 src/main/resources/data/biomesoplenty/recipes/stripped_umbran_wood.json create mode 100644 src/main/resources/data/biomesoplenty/recipes/stripped_willow_wood.json diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_cherry_wood.json b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_cherry_wood.json new file mode 100644 index 000000000..3a10e90ef --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_cherry_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:stripped_cherry_wood" + ] + }, + "criteria": { + "has_log": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:stripped_cherry_log" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:stripped_cherry_wood" + } + } + }, + "requirements": [ + [ + "has_log", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_dead_wood.json b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_dead_wood.json new file mode 100644 index 000000000..d24248458 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_dead_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:stripped_dead_wood" + ] + }, + "criteria": { + "has_log": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:stripped_dead_log" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:stripped_dead_wood" + } + } + }, + "requirements": [ + [ + "has_log", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_fir_wood.json b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_fir_wood.json new file mode 100644 index 000000000..380e26681 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_fir_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:stripped_fir_wood" + ] + }, + "criteria": { + "has_log": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:stripped_fir_log" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:stripped_fir_wood" + } + } + }, + "requirements": [ + [ + "has_log", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_hellbark_wood.json b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_hellbark_wood.json new file mode 100644 index 000000000..0f960b171 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_hellbark_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:stripped_hellbark_wood" + ] + }, + "criteria": { + "has_log": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:stripped_hellbark_log" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:stripped_hellbark_wood" + } + } + }, + "requirements": [ + [ + "has_log", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_jacaranda_wood.json b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_jacaranda_wood.json new file mode 100644 index 000000000..1c7f0d650 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_jacaranda_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:stripped_jacaranda_wood" + ] + }, + "criteria": { + "has_log": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:stripped_jacaranda_log" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:stripped_jacaranda_wood" + } + } + }, + "requirements": [ + [ + "has_log", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_magic_wood.json b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_magic_wood.json new file mode 100644 index 000000000..33e7b4a75 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_magic_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:stripped_magic_wood" + ] + }, + "criteria": { + "has_log": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:stripped_magic_log" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:stripped_magic_wood" + } + } + }, + "requirements": [ + [ + "has_log", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_mahogany_wood.json b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_mahogany_wood.json new file mode 100644 index 000000000..943f729d6 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_mahogany_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:stripped_mahogany_wood" + ] + }, + "criteria": { + "has_log": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:stripped_mahogany_log" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:stripped_mahogany_wood" + } + } + }, + "requirements": [ + [ + "has_log", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_palm_wood.json b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_palm_wood.json new file mode 100644 index 000000000..7c5ffc7a7 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_palm_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:stripped_palm_wood" + ] + }, + "criteria": { + "has_log": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:stripped_palm_log" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:stripped_palm_wood" + } + } + }, + "requirements": [ + [ + "has_log", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_redwood_wood.json b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_redwood_wood.json new file mode 100644 index 000000000..2cafe1e59 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_redwood_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:stripped_redwood_wood" + ] + }, + "criteria": { + "has_log": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:stripped_redwood_log" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:stripped_redwood_wood" + } + } + }, + "requirements": [ + [ + "has_log", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_umbran_wood.json b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_umbran_wood.json new file mode 100644 index 000000000..aa800f11c --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_umbran_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:stripped_umbran_wood" + ] + }, + "criteria": { + "has_log": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:stripped_umbran_log" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:stripped_umbran_wood" + } + } + }, + "requirements": [ + [ + "has_log", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_willow_wood.json b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_willow_wood.json new file mode 100644 index 000000000..b1cd29de9 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/advancements/recipes/building_blocks/stripped_willow_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "biomesoplenty:stripped_willow_wood" + ] + }, + "criteria": { + "has_log": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "item": "biomesoplenty:stripped_willow_log" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "biomesoplenty:stripped_willow_wood" + } + } + }, + "requirements": [ + [ + "has_log", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/stripped_cherry_wood.json b/src/main/resources/data/biomesoplenty/recipes/stripped_cherry_wood.json new file mode 100644 index 000000000..704b6d387 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/stripped_cherry_wood.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bark", + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "biomesoplenty:stripped_cherry_log" + } + }, + "result": { + "item": "biomesoplenty:stripped_cherry_wood", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/stripped_dead_wood.json b/src/main/resources/data/biomesoplenty/recipes/stripped_dead_wood.json new file mode 100644 index 000000000..448933bc9 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/stripped_dead_wood.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bark", + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "biomesoplenty:stripped_dead_log" + } + }, + "result": { + "item": "biomesoplenty:stripped_dead_wood", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/stripped_fir_wood.json b/src/main/resources/data/biomesoplenty/recipes/stripped_fir_wood.json new file mode 100644 index 000000000..27a6df46d --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/stripped_fir_wood.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bark", + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "biomesoplenty:stripped_fir_log" + } + }, + "result": { + "item": "biomesoplenty:stripped_fir_wood", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/stripped_hellbark_wood.json b/src/main/resources/data/biomesoplenty/recipes/stripped_hellbark_wood.json new file mode 100644 index 000000000..fa400b9d0 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/stripped_hellbark_wood.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bark", + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "biomesoplenty:stripped_hellbark_log" + } + }, + "result": { + "item": "biomesoplenty:stripped_hellbark_wood", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/stripped_jacaranda_wood.json b/src/main/resources/data/biomesoplenty/recipes/stripped_jacaranda_wood.json new file mode 100644 index 000000000..5caa9837a --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/stripped_jacaranda_wood.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bark", + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "biomesoplenty:stripped_jacaranda_log" + } + }, + "result": { + "item": "biomesoplenty:stripped_jacaranda_wood", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/stripped_magic_wood.json b/src/main/resources/data/biomesoplenty/recipes/stripped_magic_wood.json new file mode 100644 index 000000000..a44dd905a --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/stripped_magic_wood.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bark", + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "biomesoplenty:stripped_magic_log" + } + }, + "result": { + "item": "biomesoplenty:stripped_magic_wood", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/stripped_mahogany_wood.json b/src/main/resources/data/biomesoplenty/recipes/stripped_mahogany_wood.json new file mode 100644 index 000000000..51596bbff --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/stripped_mahogany_wood.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bark", + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "biomesoplenty:stripped_mahogany_log" + } + }, + "result": { + "item": "biomesoplenty:stripped_mahogany_wood", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/stripped_palm_wood.json b/src/main/resources/data/biomesoplenty/recipes/stripped_palm_wood.json new file mode 100644 index 000000000..11e60ff91 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/stripped_palm_wood.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bark", + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "biomesoplenty:stripped_palm_log" + } + }, + "result": { + "item": "biomesoplenty:stripped_palm_wood", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/stripped_redwood_wood.json b/src/main/resources/data/biomesoplenty/recipes/stripped_redwood_wood.json new file mode 100644 index 000000000..fe5c33528 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/stripped_redwood_wood.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bark", + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "biomesoplenty:stripped_redwood_log" + } + }, + "result": { + "item": "biomesoplenty:stripped_redwood_wood", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/stripped_umbran_wood.json b/src/main/resources/data/biomesoplenty/recipes/stripped_umbran_wood.json new file mode 100644 index 000000000..e035cc353 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/stripped_umbran_wood.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bark", + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "biomesoplenty:stripped_umbran_log" + } + }, + "result": { + "item": "biomesoplenty:stripped_umbran_wood", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/biomesoplenty/recipes/stripped_willow_wood.json b/src/main/resources/data/biomesoplenty/recipes/stripped_willow_wood.json new file mode 100644 index 000000000..59ece466c --- /dev/null +++ b/src/main/resources/data/biomesoplenty/recipes/stripped_willow_wood.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bark", + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "biomesoplenty:stripped_willow_log" + } + }, + "result": { + "item": "biomesoplenty:stripped_willow_wood", + "count": 3 + } +} \ No newline at end of file