From 4db215fc654f390313198e02cc1579728d2aca0c Mon Sep 17 00:00:00 2001 From: Robert Sosnitzka Date: Thu, 12 Jan 2017 22:57:48 +0100 Subject: [PATCH] Finished creation of book pages for Ores. Other pages will come (e.g. about fuels / temperatures). Added german translation. --- src/main/java/com/sosnitzka/taiga/Alloys.java | 1 + src/main/java/com/sosnitzka/taiga/Fluids.java | 2 +- .../com/sosnitzka/taiga/MaterialTraits.java | 1 + src/main/java/com/sosnitzka/taiga/TAIGA.java | 7 +----- .../sosnitzka/taiga/TAIGAConfiguration.java | 2 +- .../com/sosnitzka/taiga/book/ContentOre.java | 1 - .../assets/taiga/book/de_DE/language.lang | 2 ++ .../assets/taiga/book/de_DE/ore/abyssum.json | 18 +++++++++++++ .../assets/taiga/book/de_DE/ore/aurorium.json | 18 +++++++++++++ .../assets/taiga/book/de_DE/ore/basalt.json | 19 ++++++++++++++ .../taiga/book/de_DE/ore/dilithium.json | 19 ++++++++++++++ .../assets/taiga/book/de_DE/ore/duranite.json | 19 ++++++++++++++ .../assets/taiga/book/de_DE/ore/eezo.json | 19 ++++++++++++++ .../assets/taiga/book/de_DE/ore/jauxum.json | 18 +++++++++++++ .../taiga/book/de_DE/ore/karmesine.json | 18 +++++++++++++ .../taiga/book/de_DE/ore/meteorite.json | 19 ++++++++++++++ .../taiga/book/de_DE/ore/obsidiorite.json | 20 +++++++++++++++ .../assets/taiga/book/de_DE/ore/osram.json | 19 ++++++++++++++ .../assets/taiga/book/de_DE/ore/ovium.json | 18 +++++++++++++ .../taiga/book/de_DE/ore/palladium.json | 20 +++++++++++++++ .../taiga/book/de_DE/ore/prometheum.json | 20 +++++++++++++++ .../assets/taiga/book/de_DE/ore/tiberium.json | 19 ++++++++++++++ .../assets/taiga/book/de_DE/ore/uru.json | 19 ++++++++++++++ .../assets/taiga/book/de_DE/ore/valyrium.json | 19 ++++++++++++++ .../taiga/book/de_DE/ore/vibranium.json | 20 +++++++++++++++ .../taiga/book/de_DE/taiga/firstwords.json | 11 ++++++++ .../assets/taiga/book/de_DE/taiga/intro.json | 11 ++++++++ .../assets/taiga/book/en_US/ore/abyssum.json | 18 +++++++++++++ .../assets/taiga/book/en_US/ore/aurorium.json | 2 +- .../taiga/book/en_US/ore/dilithium.json | 19 ++++++++++++++ .../assets/taiga/book/en_US/ore/duranite.json | 2 +- .../assets/taiga/book/en_US/ore/eezo.json | 19 ++++++++++++++ .../assets/taiga/book/en_US/ore/jauxum.json | 2 +- .../assets/taiga/book/en_US/ore/osram.json | 19 ++++++++++++++ .../assets/taiga/book/en_US/ore/ovium.json | 4 +-- .../taiga/book/en_US/ore/palladium.json | 2 +- .../taiga/book/en_US/ore/prometheum.json | 2 +- .../assets/taiga/book/en_US/ore/tiberium.json | 2 +- .../assets/taiga/book/en_US/ore/uru.json | 19 ++++++++++++++ .../taiga/book/en_US/ore/vibranium.json | 2 +- .../assets/taiga/book/sections/intro.json | 25 +++++++++++++++++++ 41 files changed, 498 insertions(+), 18 deletions(-) create mode 100644 src/main/resources/assets/taiga/book/de_DE/language.lang create mode 100644 src/main/resources/assets/taiga/book/de_DE/ore/abyssum.json create mode 100644 src/main/resources/assets/taiga/book/de_DE/ore/aurorium.json create mode 100644 src/main/resources/assets/taiga/book/de_DE/ore/basalt.json create mode 100644 src/main/resources/assets/taiga/book/de_DE/ore/dilithium.json create mode 100644 src/main/resources/assets/taiga/book/de_DE/ore/duranite.json create mode 100644 src/main/resources/assets/taiga/book/de_DE/ore/eezo.json create mode 100644 src/main/resources/assets/taiga/book/de_DE/ore/jauxum.json create mode 100644 src/main/resources/assets/taiga/book/de_DE/ore/karmesine.json create mode 100644 src/main/resources/assets/taiga/book/de_DE/ore/meteorite.json create mode 100644 src/main/resources/assets/taiga/book/de_DE/ore/obsidiorite.json create mode 100644 src/main/resources/assets/taiga/book/de_DE/ore/osram.json create mode 100644 src/main/resources/assets/taiga/book/de_DE/ore/ovium.json create mode 100644 src/main/resources/assets/taiga/book/de_DE/ore/palladium.json create mode 100644 src/main/resources/assets/taiga/book/de_DE/ore/prometheum.json create mode 100644 src/main/resources/assets/taiga/book/de_DE/ore/tiberium.json create mode 100644 src/main/resources/assets/taiga/book/de_DE/ore/uru.json create mode 100644 src/main/resources/assets/taiga/book/de_DE/ore/valyrium.json create mode 100644 src/main/resources/assets/taiga/book/de_DE/ore/vibranium.json create mode 100644 src/main/resources/assets/taiga/book/de_DE/taiga/firstwords.json create mode 100644 src/main/resources/assets/taiga/book/de_DE/taiga/intro.json create mode 100644 src/main/resources/assets/taiga/book/en_US/ore/abyssum.json create mode 100644 src/main/resources/assets/taiga/book/en_US/ore/dilithium.json create mode 100644 src/main/resources/assets/taiga/book/en_US/ore/eezo.json create mode 100644 src/main/resources/assets/taiga/book/en_US/ore/osram.json create mode 100644 src/main/resources/assets/taiga/book/en_US/ore/uru.json diff --git a/src/main/java/com/sosnitzka/taiga/Alloys.java b/src/main/java/com/sosnitzka/taiga/Alloys.java index 75b46b1..a47c8a3 100644 --- a/src/main/java/com/sosnitzka/taiga/Alloys.java +++ b/src/main/java/com/sosnitzka/taiga/Alloys.java @@ -15,6 +15,7 @@ public class Alloys { public static void register() { registerTinkerAlloy(new FluidStack(terraxFluid, 2), new FluidStack(karmesineFluid, 1), new FluidStack(oviumFluid, 1), new FluidStack(jauxumFluid, 1)); registerTinkerAlloy(new FluidStack(triberiumFluid, 1), new FluidStack(tiberiumFluid, 5), new FluidStack(basaltFluid, 1)); + registerTinkerAlloy(new FluidStack(triberiumFluid, 1), new FluidStack(tiberiumFluid, 5), new FluidStack(dilithiumFluid, 2)); registerTinkerAlloy(new FluidStack(fractumFluid, 2), new FluidStack(triberiumFluid, 3), new FluidStack(TinkerFluids.obsidian, 3), new FluidStack(abyssumFluid, 1)); registerTinkerAlloy(new FluidStack(violiumFluid, 2), new FluidStack(auroriumFluid, 3), new FluidStack(TinkerFluids.ardite, 2)); registerTinkerAlloy(new FluidStack(proxiiFluid, 3), new FluidStack(prometheumFluid, 3), new FluidStack(palladiumFluid, 3), new FluidStack(eezoFluid, 1)); diff --git a/src/main/java/com/sosnitzka/taiga/Fluids.java b/src/main/java/com/sosnitzka/taiga/Fluids.java index 2d62a77..5f8f7e7 100644 --- a/src/main/java/com/sosnitzka/taiga/Fluids.java +++ b/src/main/java/com/sosnitzka/taiga/Fluids.java @@ -54,7 +54,7 @@ public class Fluids { // Community - public static BasicTinkerFluid dilithiumFluid = new BasicTinkerFluid("dilithium_fluid", 0xEEEEEEEE, 2500, 10, 5000); + public static BasicTinkerFluid dilithiumFluid = new BasicTinkerFluid("dilithium_fluid", 0xFF79aea6, 1500, 10, 5000); /** * Registers all materials' fluids
diff --git a/src/main/java/com/sosnitzka/taiga/MaterialTraits.java b/src/main/java/com/sosnitzka/taiga/MaterialTraits.java index bb1e57a..d98d950 100644 --- a/src/main/java/com/sosnitzka/taiga/MaterialTraits.java +++ b/src/main/java/com/sosnitzka/taiga/MaterialTraits.java @@ -108,5 +108,6 @@ public class MaterialTraits { public static Material ovium = new Material("ovium", TextFormatting.BLUE); public static Material jauxum = new Material("jauxum", TextFormatting.YELLOW); public static Material karmesine = new Material("karmesine", TextFormatting.RED); + public static Material dilithium = new Material("dilithium", TextFormatting.BLUE); } diff --git a/src/main/java/com/sosnitzka/taiga/TAIGA.java b/src/main/java/com/sosnitzka/taiga/TAIGA.java index f1d4354..212bbb2 100644 --- a/src/main/java/com/sosnitzka/taiga/TAIGA.java +++ b/src/main/java/com/sosnitzka/taiga/TAIGA.java @@ -1,7 +1,6 @@ package com.sosnitzka.taiga; import com.google.common.collect.Lists; -import com.sosnitzka.taiga.book.ContentOre; import com.sosnitzka.taiga.proxy.CommonProxy; import com.sosnitzka.taiga.recipes.CraftingRegistry; import com.sosnitzka.taiga.recipes.SmeltingRegistry; @@ -24,7 +23,6 @@ import static com.sosnitzka.taiga.Fluids.*; import static com.sosnitzka.taiga.MaterialTraits.*; import static com.sosnitzka.taiga.util.Utils.integrateMaterial; import static com.sosnitzka.taiga.util.Utils.integrateOre; -import static slimeknights.mantle.client.book.BookLoader.registerPageType; import static slimeknights.tconstruct.library.utils.HarvestLevels.*; @Mod(modid = TAIGA.MODID, version = TAIGA.VERSION, guiFactory = TAIGA.GUIFACTORY, dependencies = "required-after:tconstruct@[1.10.2-2.5.0,);" + "required-after:mantle@[1.10.2-1.0.0,)") @@ -119,10 +117,7 @@ public class TAIGA { integrateMaterial("Yrdeen", yrdeen, yrdeenFluid, 999, 9.1f, 3f, 1.35f, 150, 250, COBALT, shitty); integrateMaterial("Meteorite", meteorite, meteoriteFluid, 1500, 1.5f, 1.5f, .5f, 0, 0, OBSIDIAN, shitty); integrateMaterial("Obsidiorite", obsidiorite, obsidioriteFluid, 1500, .5f, .5f, 1, -100, 100, COBALT, shitty); - // when more traits / ideas are available - // integrateMaterial("Uru", uru, uruFluid, (552), 8.75f, 2.87f, 0.98f, -100, 200, DIAMOND); - // integrateMaterial("Osram", osram, osramFluid, 500, 5f, 3f, 0.8f, -50, 50, DIAMOND); - // integrateMaterial("Abyssum", abyssum, abyssumFluid, 100, 1f, 1f, 1f, 300, 300, DIAMOND); + integrateOre("Osram", osramFluid); integrateOre("Abyssum", abyssumFluid); integrateOre("Iox", ioxFluid); diff --git a/src/main/java/com/sosnitzka/taiga/TAIGAConfiguration.java b/src/main/java/com/sosnitzka/taiga/TAIGAConfiguration.java index e53f73e..60f826b 100644 --- a/src/main/java/com/sosnitzka/taiga/TAIGAConfiguration.java +++ b/src/main/java/com/sosnitzka/taiga/TAIGAConfiguration.java @@ -99,7 +99,7 @@ public class TAIGAConfiguration { final int DILITHIUM_DEFAULT = 12; final int OSRAM_DEFAULT = 1; final int DURANITE_DEFAULT = 1; - final int BASALT_DEFAULT = 10; + final int BASALT_DEFAULT = 12; final int EEZO_DEFAULT = 3; final int KARMESINE_DEFAULT = 8; final int JAUXUM_DEFAULT = 8; diff --git a/src/main/java/com/sosnitzka/taiga/book/ContentOre.java b/src/main/java/com/sosnitzka/taiga/book/ContentOre.java index ec88a92..10f5728 100644 --- a/src/main/java/com/sosnitzka/taiga/book/ContentOre.java +++ b/src/main/java/com/sosnitzka/taiga/book/ContentOre.java @@ -36,7 +36,6 @@ public class ContentOre extends TinkerPage { TextData tdTitle = new TextData(title); tdTitle.underlined = true; - addTitle(list, CustomFontColor.encodeColor(r, g, b) + title, true); if (input != null && !input.id.equals("")) { diff --git a/src/main/resources/assets/taiga/book/de_DE/language.lang b/src/main/resources/assets/taiga/book/de_DE/language.lang new file mode 100644 index 0000000..30b3d47 --- /dev/null +++ b/src/main/resources/assets/taiga/book/de_DE/language.lang @@ -0,0 +1,2 @@ +index_title=TAIGA +modifier.informations=Informationen \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/de_DE/ore/abyssum.json b/src/main/resources/assets/taiga/book/de_DE/ore/abyssum.json new file mode 100644 index 0000000..4b8ebf1 --- /dev/null +++ b/src/main/resources/assets/taiga/book/de_DE/ore/abyssum.json @@ -0,0 +1,18 @@ +{ + "title": "Abyssum", + "r": 33, + "g": 188, + "b": 194, + "input": { + "id": "taiga:abyssum_ore" + }, + "description": [ + { + "text": "Wie schon bei Eezo entsteht Abyssum durch Sonnenstürme, die bis ins End reichen. Das aufgeladenen Void fusioniert dabei mit Endstein zu Abyssum und setzt sich, da keine Bedrockbarriere existiert an den Boden der Enderinseln ab." + } + ], + "informations": [ + "Level: Cobalt", + "Achtung: Stürze nicht ins Void" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/de_DE/ore/aurorium.json b/src/main/resources/assets/taiga/book/de_DE/ore/aurorium.json new file mode 100644 index 0000000..b143023 --- /dev/null +++ b/src/main/resources/assets/taiga/book/de_DE/ore/aurorium.json @@ -0,0 +1,18 @@ +{ + "title": "Aurorium", + "r": 239, + "g": 174, + "b": 148, + "input": { + "id": "taiga:aurorium_ore" + }, + "description": [ + { + "text": "Aurorium ist nicht sehr häufig im Ende zu finden, aber mit ein wenig Fleiß und Geduld findet man genug. Aktuell besitzt Aurorium keine gesonderen Features." + } + ], + "informations": [ + "Level: Cobalt", + "Selten" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/de_DE/ore/basalt.json b/src/main/resources/assets/taiga/book/de_DE/ore/basalt.json new file mode 100644 index 0000000..9031530 --- /dev/null +++ b/src/main/resources/assets/taiga/book/de_DE/ore/basalt.json @@ -0,0 +1,19 @@ +{ + "title": "Basalt", + "r": 220, + "g": 220, + "b": 220, + "input": { + "id": "taiga:basalt_block" + }, + "description": [ + { + "text": "Basalt entsteht bei hohen Temperaturen und sondert sich als Schlacke ab. Da es leichter ist, als Stein, schwimmt es auf der Lava, sodass man beim Abbau vorsichtig sein muss. Man nutzt Basalt zur Stabilisierung von Tiberium." + } + ], + "informations": [ + "Level: Iron", + "Swims on lava", + "Used for some alloys" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/de_DE/ore/dilithium.json b/src/main/resources/assets/taiga/book/de_DE/ore/dilithium.json new file mode 100644 index 0000000..94fd920 --- /dev/null +++ b/src/main/resources/assets/taiga/book/de_DE/ore/dilithium.json @@ -0,0 +1,19 @@ +{ + "title": "Dilithium", + "r": 121, + "g": 174, + "b": 166, + "input": { + "id": "taiga:dilithium_ore" + }, + "description": [ + { + "text": "Wo es Sand gibt, ist Dilithium nicht weit entfernt. Man nutzt es, um Tiberium zu stabilisieren, wobei es selbst viel eigene Energie besitzt. Es kann explodieren, aber auch als Wärmequelle genutzt werden." + } + ], + "informations": [ + "Level: Diamant", + "Vorsicht: Kann bei Explosionen eine Kettenreaktion auslösen", + "Orte: Wüsten, Strände, Ozene" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/de_DE/ore/duranite.json b/src/main/resources/assets/taiga/book/de_DE/ore/duranite.json new file mode 100644 index 0000000..a93712f --- /dev/null +++ b/src/main/resources/assets/taiga/book/de_DE/ore/duranite.json @@ -0,0 +1,19 @@ +{ + "title": "Duranite", + "r": 172, + "g": 221, + "b": 235, + "input": { + "id": "taiga:duranite_ore" + }, + "description": [ + { + "text": "Vor langer Zeit stürzten brennende Meteoriten vom Himmel. Die Reibungshitze war so groß, dass sie die Metalle im inneren zusammenschmolz und einen enorm harten Klumpen Duranite erzeugte." + } + ], + "informations": [ + "Level: Duranite", + "Sehr selten", + "Eingeschlossen in Meteoriten" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/de_DE/ore/eezo.json b/src/main/resources/assets/taiga/book/de_DE/ore/eezo.json new file mode 100644 index 0000000..5a75565 --- /dev/null +++ b/src/main/resources/assets/taiga/book/de_DE/ore/eezo.json @@ -0,0 +1,19 @@ +{ + "title": "Element Zero", + "r": 56, + "g": 89, + "b": 106, + "input": { + "id": "taiga:eezo_ore" + }, + "description": [ + { + "text": "Hin und wieder erzeugen Sonnenstürme enorm starke Magnetwellen, die bis unter die Erdoberfläche reichen. Das Void wird davon in Wallung versetzt und reicht selten bis an den Bedrock, wo es zu Element Zero fusioniert." + } + ], + "informations": [ + "Level: Cobalt", + "Selten", + "Achtung: Beim Abbau nicht ins Void stürzen" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/de_DE/ore/jauxum.json b/src/main/resources/assets/taiga/book/de_DE/ore/jauxum.json new file mode 100644 index 0000000..6820465 --- /dev/null +++ b/src/main/resources/assets/taiga/book/de_DE/ore/jauxum.json @@ -0,0 +1,18 @@ +{ + "title": "Jauxum", + "r": 104, + "g": 198, + "b": 99, + "input": { + "id": "taiga:jauxum_ore" + }, + "description": [ + { + "text": "Jauxum ist eines der drei etherischen Erze. Zusammen mit Karmesine und Ovium erzeugt es beim verschmelzen die Verbindung Terrax." + } + ], + "informations": [ + "Level: Cobalt", + "Entsteht in Granit" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/de_DE/ore/karmesine.json b/src/main/resources/assets/taiga/book/de_DE/ore/karmesine.json new file mode 100644 index 0000000..0e89d70 --- /dev/null +++ b/src/main/resources/assets/taiga/book/de_DE/ore/karmesine.json @@ -0,0 +1,18 @@ +{ + "title": "Karmesin", + "r": 235, + "g": 72, + "b": 74, + "input": { + "id": "taiga:karmesine_ore" + }, + "description": [ + { + "text": "Karmesin ist eines der drei etherischen Erze. Zusammen mit Jauxum und Ovium erzeugt es beim verschmelzen die Verbindung Terrax." + } + ], + "informations": [ + "Level: Cobalt", + "Entsteht in andensit" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/de_DE/ore/meteorite.json b/src/main/resources/assets/taiga/book/de_DE/ore/meteorite.json new file mode 100644 index 0000000..f1a8370 --- /dev/null +++ b/src/main/resources/assets/taiga/book/de_DE/ore/meteorite.json @@ -0,0 +1,19 @@ +{ + "title": "Meteorit", + "r": 35, + "g": 35, + "b": 35, + "input": { + "id": "taiga:meteorite_block" + }, + "description": [ + { + "text": "Man muss Geduld aufbringen, um Meteoriten zu finden. Vor vielen tausend Jahren stürzten sie vom Himmel. Die meisten von ihnen liegen unter der Erde begraben, entsprechend aufwändig gestaltet die Suche." + } + ], + "informations": [ + "Level: Cobalt", + "Manchmal zerbröselt es beim Abbau", + "Liegt häufig unterirdisch" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/de_DE/ore/obsidiorite.json b/src/main/resources/assets/taiga/book/de_DE/ore/obsidiorite.json new file mode 100644 index 0000000..be2e1c6 --- /dev/null +++ b/src/main/resources/assets/taiga/book/de_DE/ore/obsidiorite.json @@ -0,0 +1,20 @@ +{ + "title": "Obsidiorit", + "r": 34, + "g": 72, + "b": 83, + "input": { + "id": "taiga:obsidiorite_block" + }, + "description": [ + { + "text": "Obsidiorit findet man im Ende ziemlich häufig. Scheinbar entstanden die kubischen Meteoriten im Void und schweben seither im Ende umher. Man muss fliegen können oder Treppen bauen, um sie abzubauen." + } + ], + "informations": [ + "Level: Duranite", + "Manchmal brechen sie nicht vollständig", + "Sehr hart", + "Schweben im Ende" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/de_DE/ore/osram.json b/src/main/resources/assets/taiga/book/de_DE/ore/osram.json new file mode 100644 index 0000000..e4dda18 --- /dev/null +++ b/src/main/resources/assets/taiga/book/de_DE/ore/osram.json @@ -0,0 +1,19 @@ +{ + "title": "Osram", + "r": 255, + "g": 188, + "b": 144, + "input": { + "id": "taiga:osram_ore" + }, + "description": [ + { + "text": "Osram entstand, als Glimmersteinpartikel unter hohem Druck und enormen Temperaturen schmolz. Dieses seltene Erz kann man in den vielen Lavaseen des Nethers entdecken." + } + ], + "informations": [ + "Level: Cobalt", + "Schwimmt in Nether-Lavaseen", + "Es ist hart und heiß" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/de_DE/ore/ovium.json b/src/main/resources/assets/taiga/book/de_DE/ore/ovium.json new file mode 100644 index 0000000..d4db508 --- /dev/null +++ b/src/main/resources/assets/taiga/book/de_DE/ore/ovium.json @@ -0,0 +1,18 @@ +{ + "title": "Ovium", + "r": 125, + "g": 119, + "b": 195, + "input": { + "id": "taiga:ovium_ore" + }, + "description": [ + { + "text": "Ovium ist eines der drei etherischen Erze. Zusammen mit Jauxum und Karmesin erzeugt es beim verschmelzen die Verbindung Terrax." + } + ], + "informations": [ + "Level: Cobalt", + "Entsteht in Diorit" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/de_DE/ore/palladium.json b/src/main/resources/assets/taiga/book/de_DE/ore/palladium.json new file mode 100644 index 0000000..affbafe --- /dev/null +++ b/src/main/resources/assets/taiga/book/de_DE/ore/palladium.json @@ -0,0 +1,20 @@ +{ + "title": "Palladium", + "r": 238, + "g": 135, + "b": 54, + "input": { + "id": "taiga:palladium_ore" + }, + "description": [ + { + "text": "Palladium ist ein kristallines Erz, welches im Ende auftaucht. Die im Ende vorherrschende Strahlung wird durch Palladium erzeugt. Es glüht und zerfällt auf Grund seiner Radioaktivität." + } + ], + "informations": [ + "Level: Duranite", + "Gefährlich radioaktiv", + "Leuchtet im Dunkeln", + "Kristallin" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/de_DE/ore/prometheum.json b/src/main/resources/assets/taiga/book/de_DE/ore/prometheum.json new file mode 100644 index 0000000..ab35982 --- /dev/null +++ b/src/main/resources/assets/taiga/book/de_DE/ore/prometheum.json @@ -0,0 +1,20 @@ +{ + "title": "Prometheum", + "r": 55, + "g": 44, + "b": 73, + "input": { + "id": "taiga:prometheum_ore" + }, + "description": [ + { + "text": "Manche Wissenschaftler glauben, dass Prometheum durch den hohen Druck in den Tiefen des Nethers entsteht. Abgebaut, beginnt es radioaktiv zu strahlen und zerfällt nach und nach." + } + ], + "informations": [ + "Level: Duranite", + "Zerfällt allmählich", + "Leuchtet im Dunkeln", + "dY: ~16" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/de_DE/ore/tiberium.json b/src/main/resources/assets/taiga/book/de_DE/ore/tiberium.json new file mode 100644 index 0000000..3173704 --- /dev/null +++ b/src/main/resources/assets/taiga/book/de_DE/ore/tiberium.json @@ -0,0 +1,19 @@ +{ + "title": "Tiberium", + "r": 212, + "g": 255, + "b": 0, + "input": { + "id": "taiga:tiberium_ore" + }, + "description": [ + { + "text": "Wenn man den Nether erforscht fallen die vielen Tiberiumadern auf. Dieses kristalline Erz ist äußerst instabil und gefährlich. Es kann urplötzlich explodieren und benötigt daher einen Stabilisator für den weiteren Nutzen." + } + ], + "informations": [ + "Level: Stone", + "Explosiv", + "Kristallin" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/de_DE/ore/uru.json b/src/main/resources/assets/taiga/book/de_DE/ore/uru.json new file mode 100644 index 0000000..5f05473 --- /dev/null +++ b/src/main/resources/assets/taiga/book/de_DE/ore/uru.json @@ -0,0 +1,19 @@ +{ + "title": "Uru", + "r": 191, + "g": 185, + "b": 240, + "input": { + "id": "taiga:uru_ore" + }, + "description": [ + { + "text": "Die Legenden besagen, dass nur Götter in der Lage waren, Uru zu schmelzen. Große, mythische Waffen, wie der Hammer Mjolnir sollen daraus geschmiedet worden sein. Man findet es in den schwebenden Meteoriten aus Obsidiorit." + } + ], + "informations": [ + "Level: Valyrium", + "Mystisches Erz", + "Aufzufinden in den schwebenden Kuboiden im Ende" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/de_DE/ore/valyrium.json b/src/main/resources/assets/taiga/book/de_DE/ore/valyrium.json new file mode 100644 index 0000000..203c81f --- /dev/null +++ b/src/main/resources/assets/taiga/book/de_DE/ore/valyrium.json @@ -0,0 +1,19 @@ +{ + "title": "Valyrium", + "r": 232, + "g": 92, + "b": 49, + "input": { + "id": "taiga:valyrium_ore" + }, + "description": [ + { + "text": "Die alten Valyrer waren die Ersten, die das seltene Metall, wass sie Valyium nanntne, entdeckten. Es ist im Nether zu finden, aber überaus selten." + } + ], + "informations": [ + "Level: Valyrium", + "Sehr selten", + "Y: 0 - 128" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/de_DE/ore/vibranium.json b/src/main/resources/assets/taiga/book/de_DE/ore/vibranium.json new file mode 100644 index 0000000..d08c1fb --- /dev/null +++ b/src/main/resources/assets/taiga/book/de_DE/ore/vibranium.json @@ -0,0 +1,20 @@ +{ + "title": "Vibranium", + "r": 186, + "g": 210, + "b": 217, + "input": { + "id": "taiga:vibranium_ore" + }, + "description": [ + { + "text": "Vibranium ist eins der seltensten Erze der Welt. Stimmen sagen, dass man es in Wüsten und Bergen öfter finden kann. Wer es abbaut, muss wegen seiner Zusammensetzung aber acht geben, um sich nicht selbst zu verletzen" + } + ], + "informations": [ + "Level: Vibranium", + "Sehr selten", + "Häufiger in Wüsten und Bergen", + "Es vibriert" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/de_DE/taiga/firstwords.json b/src/main/resources/assets/taiga/book/de_DE/taiga/firstwords.json new file mode 100644 index 0000000..9e8bd4d --- /dev/null +++ b/src/main/resources/assets/taiga/book/de_DE/taiga/firstwords.json @@ -0,0 +1,11 @@ +{ + "title": "New ores", + "image": { + "file": "taiga:textures/book/ores.png" + }, + "text": [ + { + "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." + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/de_DE/taiga/intro.json b/src/main/resources/assets/taiga/book/de_DE/taiga/intro.json new file mode 100644 index 0000000..2d5801b --- /dev/null +++ b/src/main/resources/assets/taiga/book/de_DE/taiga/intro.json @@ -0,0 +1,11 @@ +{ + "title": "TAIGA: Tinkers' Alloying Addon", + "image": { + "file": "taiga:textures/logo.png" + }, + "text": [ + { + "text": "Thank you for downloading TAIGA. TAIGA is an addon for Tinker's Construct with a lot of end game materials. On the next pages you will see and learn how to find the new added Ores and what other features you can find in TAIGA." + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/en_US/ore/abyssum.json b/src/main/resources/assets/taiga/book/en_US/ore/abyssum.json new file mode 100644 index 0000000..7bde8d7 --- /dev/null +++ b/src/main/resources/assets/taiga/book/en_US/ore/abyssum.json @@ -0,0 +1,18 @@ +{ + "title": "Abyssum", + "r": 33, + "g": 188, + "b": 194, + "input": { + "id": "taiga:abyssum_ore" + }, + "description": [ + { + "text": "Just like eezo, abyssum accrues from solar storms which are affecting the end. The magnetized void fuses with endstone and absorbs a lot of energy. Because there is no bedrock, abyssum is found at the bottom of ender islands." + } + ], + "informations": [ + "Level: Cobalt", + "Caution: Don't fall into the void" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/en_US/ore/aurorium.json b/src/main/resources/assets/taiga/book/en_US/ore/aurorium.json index 8bf5ba0..8bc4822 100644 --- a/src/main/resources/assets/taiga/book/en_US/ore/aurorium.json +++ b/src/main/resources/assets/taiga/book/en_US/ore/aurorium.json @@ -8,7 +8,7 @@ }, "description": [ { - "text": "Aurorium ore isn't very common in the end, but you can find a lot if you are patient enough. With some twists and turns it will maybe get some more unique features later." + "text": "Aurorium ore is very uncommon in the end, but you can find a lot of it if you are patient enough. Aurorium has no more features yet." } ], "informations": [ diff --git a/src/main/resources/assets/taiga/book/en_US/ore/dilithium.json b/src/main/resources/assets/taiga/book/en_US/ore/dilithium.json new file mode 100644 index 0000000..c1e097e --- /dev/null +++ b/src/main/resources/assets/taiga/book/en_US/ore/dilithium.json @@ -0,0 +1,19 @@ +{ + "title": "Dilithium", + "r": 121, + "g": 174, + "b": 166, + "input": { + "id": "taiga:dilithium_ore" + }, + "description": [ + { + "text": "When you find a lot of sand, dilithium propably is not far away. You can use dilithium as a stabilizer for tiberium. It holds so much energy that you can use it as a hot fuel source." + } + ], + "informations": [ + "Level: Diamond", + "Caution: Explosions cause more explosions", + "Location: Deserts, Beaches, Oceans" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/en_US/ore/duranite.json b/src/main/resources/assets/taiga/book/en_US/ore/duranite.json index 599d342..7a4193c 100644 --- a/src/main/resources/assets/taiga/book/en_US/ore/duranite.json +++ b/src/main/resources/assets/taiga/book/en_US/ore/duranite.json @@ -8,7 +8,7 @@ }, "description": [ { - "text": "A long time ago, meteorites fell from the sky. The friction heat and the pressure formed duranite ore inside the meteorites. Its natural form is very hard and you need some time to break that ore." + "text": "A long time ago, meteorites fell from the sky. The friction heat and the pressure formed duranite ore inside the meteorites. Its natural form is very hard and you will need some time to break that ore." } ], "informations": [ diff --git a/src/main/resources/assets/taiga/book/en_US/ore/eezo.json b/src/main/resources/assets/taiga/book/en_US/ore/eezo.json new file mode 100644 index 0000000..265e96e --- /dev/null +++ b/src/main/resources/assets/taiga/book/en_US/ore/eezo.json @@ -0,0 +1,19 @@ +{ + "title": "Element Zero", + "r": 56, + "g": 89, + "b": 106, + "input": { + "id": "taiga:eezo_ore" + }, + "description": [ + { + "text": "Sometimes the world is exposed by solar storms and strong magnetism. This particularly affects the void which then begins to oscillate. Sometimes single peaks reach bedrock and fuse to this rare element." + } + ], + "informations": [ + "Level: Cobalt", + "Rare", + "Caution: Don't fall into the void" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/en_US/ore/jauxum.json b/src/main/resources/assets/taiga/book/en_US/ore/jauxum.json index eb61024..d214591 100644 --- a/src/main/resources/assets/taiga/book/en_US/ore/jauxum.json +++ b/src/main/resources/assets/taiga/book/en_US/ore/jauxum.json @@ -8,7 +8,7 @@ }, "description": [ { - "text": "Jauxum is one of the three etherical ores. You can find it in natural granite veins. For using karmesine in alloys you need to bind it with karmesine and ovium." + "text": "Jauxum is one of the three etherical ores. You can find it in natural granite veins. For using jauxum in alloys you need to bind it with karmesine and ovium." } ], "informations": [ diff --git a/src/main/resources/assets/taiga/book/en_US/ore/osram.json b/src/main/resources/assets/taiga/book/en_US/ore/osram.json new file mode 100644 index 0000000..280a6d9 --- /dev/null +++ b/src/main/resources/assets/taiga/book/en_US/ore/osram.json @@ -0,0 +1,19 @@ +{ + "title": "Osram", + "r": 255, + "g": 188, + "b": 144, + "input": { + "id": "taiga:osram_ore" + }, + "description": [ + { + "text": "With high pressure and the heat of hellfire osram ore originited from molten glowstone fragments. The rare ore is found swimming in the giant lava lakes of the nether caves." + } + ], + "informations": [ + "Level: Cobalt", + "Swims in nether lava lakes", + "It's very hard and very hot" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/en_US/ore/ovium.json b/src/main/resources/assets/taiga/book/en_US/ore/ovium.json index 4404776..113c101 100644 --- a/src/main/resources/assets/taiga/book/en_US/ore/ovium.json +++ b/src/main/resources/assets/taiga/book/en_US/ore/ovium.json @@ -4,11 +4,11 @@ "g": 119, "b": 195, "input": { - "id": "taiga:karmesine_ore" + "id": "taiga:ovium_ore" }, "description": [ { - "text": "Ovium is one of the three etherical ores. You can find it in natural diorite veins. For using karmesine in alloys you need to bind it with jauxum and karmesine." + "text": "Ovium is one of the three etherical ores. You can find it in natural diorite veins. For using ovium in alloys you need to bind it with jauxum and karmesine." } ], "informations": [ diff --git a/src/main/resources/assets/taiga/book/en_US/ore/palladium.json b/src/main/resources/assets/taiga/book/en_US/ore/palladium.json index 6edb702..2c4399a 100644 --- a/src/main/resources/assets/taiga/book/en_US/ore/palladium.json +++ b/src/main/resources/assets/taiga/book/en_US/ore/palladium.json @@ -8,7 +8,7 @@ }, "description": [ { - "text": "Palladium is a crystalline ore found in the end. It glows caused by its natural radioactivity and is able to hurt you if you take it up (next taiga versions...)." + "text": "Palladium is a crystalline ore found in the end. Its glow is caused by its natural radioactivity, and is able to hurt you if you take it up (next taiga versions...)." } ], "informations": [ diff --git a/src/main/resources/assets/taiga/book/en_US/ore/prometheum.json b/src/main/resources/assets/taiga/book/en_US/ore/prometheum.json index 19bcddd..60c5a04 100644 --- a/src/main/resources/assets/taiga/book/en_US/ore/prometheum.json +++ b/src/main/resources/assets/taiga/book/en_US/ore/prometheum.json @@ -8,7 +8,7 @@ }, "description": [ { - "text": "Some scientists believe that prometheum ore emerges naturally, caused by heavy pressure and heat it has to absorb in the depth of the nether. It is kind of glowing and has a radioactive decay." + "text": "Some scientists believe that prometheum ore emerges naturally, caused by the heavy pressure and the heat it has to absorb in the depth of the nether. It is kind of glowing and has a radioactive decay." } ], "informations": [ diff --git a/src/main/resources/assets/taiga/book/en_US/ore/tiberium.json b/src/main/resources/assets/taiga/book/en_US/ore/tiberium.json index 6e209d8..5791baf 100644 --- a/src/main/resources/assets/taiga/book/en_US/ore/tiberium.json +++ b/src/main/resources/assets/taiga/book/en_US/ore/tiberium.json @@ -8,7 +8,7 @@ }, "description": [ { - "text": "If you explore the nether, you often will discover tiberium ore. Be careful when you try to break the ores. Tiberium crystals are unstable, full of energy, and can cause heavy explosions." + "text": "If you explore the nether, you will often discover tiberium ore. Be careful when you try to break the ores. Tiberium crystals are unstable, full of energy, and can cause heavy explosions." } ], "informations": [ diff --git a/src/main/resources/assets/taiga/book/en_US/ore/uru.json b/src/main/resources/assets/taiga/book/en_US/ore/uru.json new file mode 100644 index 0000000..f20c106 --- /dev/null +++ b/src/main/resources/assets/taiga/book/en_US/ore/uru.json @@ -0,0 +1,19 @@ +{ + "title": "Uru", + "r": 191, + "g": 185, + "b": 240, + "input": { + "id": "taiga:uru_ore" + }, + "description": [ + { + "text": "Legends say, that just the gods were able to melt down uru ore. They say they to have forged mystical weapons out of uru. Mjolnir has been one of them. Uru is found inside of the floating obsidiorite cuboids." + } + ], + "informations": [ + "Level: Valyrium", + "Mystical ore", + "Found in floating obsidiorite cubes" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/taiga/book/en_US/ore/vibranium.json b/src/main/resources/assets/taiga/book/en_US/ore/vibranium.json index 4f78768..a065606 100644 --- a/src/main/resources/assets/taiga/book/en_US/ore/vibranium.json +++ b/src/main/resources/assets/taiga/book/en_US/ore/vibranium.json @@ -8,7 +8,7 @@ }, "description": [ { - "text": "It's the most rarest ore you are able to find. Some people say, you can find more of it it Deserts and Extreme Hill Biomes. Breaking it will cause more damage than usually expected." + "text": "Vibranium is the rarest ore you are able to find. Some people say, you can find more of it it Deserts and Extreme Hill Biomes. Breaking it will cause more damage than usually expected." } ], "informations": [ diff --git a/src/main/resources/assets/taiga/book/sections/intro.json b/src/main/resources/assets/taiga/book/sections/intro.json index 36ffa00..9cd6d26 100644 --- a/src/main/resources/assets/taiga/book/sections/intro.json +++ b/src/main/resources/assets/taiga/book/sections/intro.json @@ -9,6 +9,11 @@ "type": "image with text below", "data": "taiga/firstwords.json" }, + { + "name": "abyssum", + "type": "taigaore", + "data": "ore/abyssum.json" + }, { "name": "aurorium", "type": "taigaore", @@ -19,11 +24,21 @@ "type": "taigaore", "data": "ore/basalt.json" }, + { + "name": "dilithium", + "type": "taigaore", + "data": "ore/dilithium.json" + }, { "name": "duranite", "type": "taigaore", "data": "ore/duranite.json" }, + { + "name": "eezo", + "type": "taigaore", + "data": "ore/eezo.json" + }, { "name": "jauxum", "type": "taigaore", @@ -44,6 +59,11 @@ "type": "taigaore", "data": "ore/obsidiorite.json" }, + { + "name": "osram", + "type": "taigaore", + "data": "ore/osram.json" + }, { "name": "ovium", "type": "taigaore", @@ -64,6 +84,11 @@ "type": "taigaore", "data": "ore/tiberium.json" }, + { + "name": "uru", + "type": "taigaore", + "data": "ore/uru.json" + }, { "name": "valyrium", "type": "taigaore",