Fixed broken book page. Added examples for showing up in the book. Todo: Create a separate template!

This commit is contained in:
Robert Sosnitzka
2017-01-03 00:05:03 +01:00
parent 18bd88e7f9
commit 0eb536e16b
13 changed files with 529 additions and 27 deletions

View File

@@ -0,0 +1,14 @@
{
"title": "Interacting with Blocks",
"input": {
"itemList": "items/records.json"
},
"block": {
"id": "minecraft:jukebox"
},
"description": [
{
"text": "That's my jam!"
}
]
}

View File

@@ -0,0 +1,46 @@
{
"title": "Crafting a Thing",
"grid_size": "large",
"grid": [
[
{},
{
"id": "minecraft:redstone_torch"
}
],
[
{
"id": "minecraft:redstone_torch"
},
{
"id": "minecraft:quartz"
},
{
"id": "minecraft:redstone_torch"
}
],
[
{
"id": "minecraft:stone"
},
{
"id": "minecraft:stone"
},
{
"id": "minecraft:stone"
}
]
],
"result": {
"id": "minecraft:comparator"
},
"description": [
{
"text": "This item does stuff and, of course, "
},
{
"text": "things.",
"underlined": true
}
]
}

View File

@@ -0,0 +1,34 @@
{
"title": "Crafting a Thing",
"grid_size": "small",
"grid": [
[
{
"id": "minecraft:stick"
},
{
"id": "minecraft:planks"
}
],
[
{
"id": "minecraft:planks"
},
{
"id": "minecraft:stick"
}
]
],
"result": {
"id": "tconstruct:stencil"
},
"description": [
{
"text": "This item does stuff and, of course, "
},
{
"text": "things.",
"underlined": true
}
]
}

View File

@@ -0,0 +1,14 @@
{
"title": "Smelting a Thing",
"input": {
"id": "minecraft:iron_ore"
},
"result": {
"id": "minecraft:iron_ingot"
},
"description": [
{
"text": "Very delicious iron."
}
]
}

View File

@@ -0,0 +1,33 @@
{
"title": "Smithing a Thing",
"input": {
"id": "minecraft:diamond_sword"
},
"modifier": {
"id": "minecraft:enchanted_book",
"nbt": {
"ench": [
{
"id": 16,
"lvl": 5
}
]
}
},
"result": {
"id": "minecraft:diamond_sword",
"nbt": {
"ench": [
{
"id": 16,
"lvl": 5
}
]
}
},
"description": [
{
"text": "Ow, that's sharp."
}
]
}

View File

@@ -0,0 +1,16 @@
{
"title": "Basalt",
"text1": [
{
"text": "TAIGA adds various new blocks and ores. To get higher tiers, stats and traits you need to alloy them."
}
],
"text2": [
{
"text": "On the next Pages you will learn where to get these new materials and what you need to know else."
}
],
"image": {
"file": "taiga:textures/book/ores.png"
}
}

View File

@@ -1,20 +1,11 @@
{
"title": "New ores",
"image": {
"file": "taiga:textures/logo_s.png"
"file": "taiga:textures/book/ores.png"
},
"text": [
{
"text": "TAIGA adds various new blocks and ores. You need to combine them in different alloys to get higher tiers,1 some better stats and special traits."
},
{
"text": "\n"
},
{
"text": "\n"
},
{
"text": "The ores have to be found at special places. On the next pages, you will be teached where to find the ores and how they have to be handeled."
"text": "TAIGA adds various new blocks and ores. To get higher tiers, stats and traits you need to alloy them wisely. On the next Pages you will learn where to get these new materials and what else you need to know."
}
]
}

View File

@@ -1,3 +0,0 @@
{
"data": "structure/tank.json"
}

View File

@@ -1,12 +0,0 @@
{
"title": "",
"text": [
{
"text": "The Tinker Tank can be any size from 3x3 to 11x11, and with any height from a minimum of 3. Larger structues increase the size of the tank. In order to be a valid structure, it requires a floor and ceiling, along with a frame around the whole structure"
},
{
"text": "The Tinker Tank can be built using any combination of seared blocks, glass, and drains. The floor and ceiling frame must be either seared blocks or drains. A single Tinker Tank controller is required. It can be placed on any layer except the ceiling, and must not be placed on the outside edges of the frame. The ceiling additionally supports slabs and stairs, even in the frame, provided they are downwards facing.",
"paragraph": true
}
]
}

View File

@@ -6,10 +6,40 @@
},
{
"name": "firstwords",
"type": "text with right image etch",
"type": "image with text below",
"data": "ores/firstwords.json"
},
{
"name": "basalt",
"type": "text with right image etch",
"data": "ores/basalt.json"
},
{
"type": "blank"
},
{
"name": "PageCrafter",
"type": "crafting",
"data": "bsp/pagecrafting.json"
},
{
"name": "PageSmallCrafter",
"type": "crafting",
"data": "bsp/pagecraftingsmall.json"
},
{
"name": "PageSmelting",
"type": "smelting",
"data": "bsp/pagesmelting.json"
},
{
"name": "PageSmithing",
"type": "smithing",
"data": "bsp/pagesmithing.json"
},
{
"name": "PageBlockInteraction",
"type": "block interaction",
"data": "bsp/pageblkinteraction.json"
}
]