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.
This commit is contained in:
VT-14 2020-12-30 10:43:47 -05:00 committed by GitHub
parent f01a743a3e
commit 7a354e4381
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 81 additions and 0 deletions

View file

@ -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."
}
]
}

View file

@ -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."
}
]
}

View file

@ -0,0 +1,16 @@
{
"include": [
{
"template": "crafting_array",
"as": "a",
"x": 0,
"y": 0
},
{
"template": "crafting_array",
"as": "b",
"x": 0,
"y": 65
}
]
}

View file

@ -0,0 +1,16 @@
{
"include": [
{
"template": "functional_array",
"as": "a",
"x": 0,
"y": 0
},
{
"template": "functional_array",
"as": "b",
"x": 0,
"y": 65
}
]
}