From 7a354e43816650884eb4b9b7ad8a3dee7f4ca515 Mon Sep 17 00:00:00 2001 From: VT-14 Date: Wed, 30 Dec 2020 10:43:47 -0500 Subject: [PATCH] Double Arrray Template with Example (#1735) * Double Arrray Template with Example Added a Double Array Template of type "2x_crafting_array" An example using this template was added to the Utilities category. This should be removed before release. * Double Functional Arrays New template and example using double FUNCTIONAL arrays. --- .../entries/utility/example_double_array.json | 23 ++++++++++++++++ .../example_double_functional_array.json | 26 +++++++++++++++++++ .../en_us/templates/2x_crafting_array.json | 16 ++++++++++++ .../en_us/templates/2x_functional_array.json | 16 ++++++++++++ 4 files changed, 81 insertions(+) create mode 100644 src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/entries/utility/example_double_array.json create mode 100644 src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/entries/utility/example_double_functional_array.json create mode 100644 src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/templates/2x_crafting_array.json create mode 100644 src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/templates/2x_functional_array.json diff --git a/src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/entries/utility/example_double_array.json b/src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/entries/utility/example_double_array.json new file mode 100644 index 00000000..a4052f62 --- /dev/null +++ b/src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/entries/utility/example_double_array.json @@ -0,0 +1,23 @@ +{ + "name": "Dev Example - Double Array", + "icon": "minecraft:barrier", + "category": "utility", + "pages": [ + { + "type": "crafting_array", + "heading": "Example Single Array", + "recipe": "bloodmagic:array/living_helmet", + "text": "This is an example using a single array. This template is the normal template.$(br2)The double array template uses the same template, just with an \"a\" recipe on top and a \"b\" recipe below." + } , + { + "type": "2x_crafting_array", + "a.heading": "Example Double Array A", + "a.recipe": "bloodmagic:array/living_plate", + "b.heading": "Example Double Array B", + "b.recipe": "bloodmagic:array/living_leggings", + "b.text": "text under the B array. There's nothing stopping you from putting text under the A array, but it would overlap." + } + ] +} + + diff --git a/src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/entries/utility/example_double_functional_array.json b/src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/entries/utility/example_double_functional_array.json new file mode 100644 index 00000000..1b108e56 --- /dev/null +++ b/src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/entries/utility/example_double_functional_array.json @@ -0,0 +1,26 @@ +{ + "name": "Dev Example - Double Functoinal Array", + "icon": "minecraft:barrier", + "category": "utility", + "pages": [ + { + "type": "functional_array", + "heading": "Example Single Array", + "recipe": "bloodmagic:array/movement", + "image": "movementarray.png", + "text": "This is an example using a single functional array. This template is the normal template.$(br2)The double array template uses the same template, just with an \"a\" recipe on top and a \"b\" recipe below." + } , + { + "type": "2x_functional_array", + "a.heading": "Example Double Array A", + "a.recipe": "bloodmagic:array/movement", + "a.image": "movementarray.png", + "b.heading": "Example Double Array B", + "b.recipe": "bloodmagic:array/movement", + "b.image": "movementarray.png", + "b.text": "text under the B array. There's nothing stopping you from putting text under the A array, but it would overlap." + } + ] +} + + diff --git a/src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/templates/2x_crafting_array.json b/src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/templates/2x_crafting_array.json new file mode 100644 index 00000000..9d192548 --- /dev/null +++ b/src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/templates/2x_crafting_array.json @@ -0,0 +1,16 @@ +{ + "include": [ + { + "template": "crafting_array", + "as": "a", + "x": 0, + "y": 0 + }, + { + "template": "crafting_array", + "as": "b", + "x": 0, + "y": 65 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/templates/2x_functional_array.json b/src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/templates/2x_functional_array.json new file mode 100644 index 00000000..61f095a1 --- /dev/null +++ b/src/main/resources/data/bloodmagic/patchouli_books/guide/en_us/templates/2x_functional_array.json @@ -0,0 +1,16 @@ +{ + "include": [ + { + "template": "functional_array", + "as": "a", + "x": 0, + "y": 0 + }, + { + "template": "functional_array", + "as": "b", + "x": 0, + "y": 65 + } + ] +} \ No newline at end of file