From e86949a1ad3269ec66c9de65e2c92f5e66251411 Mon Sep 17 00:00:00 2001 From: OnyxDarkKnight Date: Mon, 23 Mar 2015 14:25:27 +0000 Subject: More stuff. I don't even know by this point.... --- .../jewelrycraft/container/GuiTabModifiers.java | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) (limited to 'java/darkknight/jewelrycraft/container/GuiTabModifiers.java') diff --git a/java/darkknight/jewelrycraft/container/GuiTabModifiers.java b/java/darkknight/jewelrycraft/container/GuiTabModifiers.java index b7d4d1b..89db85b 100644 --- a/java/darkknight/jewelrycraft/container/GuiTabModifiers.java +++ b/java/darkknight/jewelrycraft/container/GuiTabModifiers.java @@ -6,10 +6,7 @@ import darkknight.jewelrycraft.client.GuiGuide; public class GuiTabModifiers extends GuiTab { - - /** - * @param id - */ + int maxPages; public GuiTabModifiers(int id) { super("Modifiers", id); @@ -43,10 +40,16 @@ public class GuiTabModifiers extends GuiTab break; case 2: text = "The ancient ones talked about a rising fire in your heart. Fret do not, for flames do not burn, but water might sting a turn. Watch your step, do not be cocky, for its protection is a bit sloppy."; - Page.addImageTextPage(gui, gui.getLeft() + xPos, gui.getTop(), new ItemStack(Items.blaze_powder), text, 40f); + Page.addImageTextPage(gui, gui.getLeft() + xPos, gui.getTop() - 7, new ItemStack(Items.blaze_powder), text, 40f, true); + break; + case 3: + text = "Light and swift as a feather can be good all together. Enemies miss and get confused, this power can be abused. Against an arrow you can't compare, so move around, don't just stare. Fire is your enemy and weakness is the penalty."; + Page.addImageTextPage(gui, gui.getLeft() + xPos, gui.getTop() - 7, new ItemStack(Items.feather), text, 40f, true); + break; + case 4: + text = "Endermen may tolerate you, end portals are near too, you may find ore that is true. But be careful, for the power may make you dizzy, blind you if you're a sissy, worsen your vision if you're unaware and shift positions everywhere."; + Page.addImageTextPage(gui, gui.getLeft() + xPos, gui.getTop() - 7, new ItemStack(Items.ender_eye), text, 40f, true); break; - default: - ; } } @@ -56,7 +59,7 @@ public class GuiTabModifiers extends GuiTab @Override public int getMaxPages() { - return 1; + return 4; } /** -- cgit v1.2.3