From 420faddca46e70e3a70def168fb4e452ef193b0d Mon Sep 17 00:00:00 2001 From: OnyxDarkKnight Date: Sat, 21 Feb 2015 21:31:16 +0000 Subject: Added just a butt ton of stuff, also thanks to pau101 for helping me with the Hand Pedestal animation :) --- java/darkknight/jewelrycraft/curses/CurseList.java | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 java/darkknight/jewelrycraft/curses/CurseList.java (limited to 'java/darkknight/jewelrycraft/curses/CurseList.java') diff --git a/java/darkknight/jewelrycraft/curses/CurseList.java b/java/darkknight/jewelrycraft/curses/CurseList.java new file mode 100644 index 0000000..4a46232 --- /dev/null +++ b/java/darkknight/jewelrycraft/curses/CurseList.java @@ -0,0 +1,24 @@ +package darkknight.jewelrycraft.curses; + +import cpw.mods.fml.common.event.FMLPreInitializationEvent; +import darkknight.jewelrycraft.lib.Reference; + +public class CurseList +{ + private static Curse rotten, flaming, blind, greed; + private static boolean isInitialized = false; + + /** + * @param e + */ + public static void preInit(FMLPreInitializationEvent e) + { + if (!isInitialized){ + rotten = new CurseRottenHeart(0, Reference.MODNAME + ":" + "Rotten Heart", 0); + flaming = new CurseFlamingSoul(1, Reference.MODNAME + ":" + "Flaming Soul", 0); + greed = new CurseGreed(2, Reference.MODNAME + ":" + "Greed", 0); + blind = new CurseBlind(3, Reference.MODNAME + ":" + "Blind", 0); + isInitialized = true; + } + } +} -- cgit v1.2.3