41
41
import flaxbeard .thaumicexploration .item .ItemChestSeal ;
42
42
import flaxbeard .thaumicexploration .item .ItemChestSealLinked ;
43
43
import flaxbeard .thaumicexploration .item .ItemCrystalArmor ;
44
- import flaxbeard .thaumicexploration .item .ItemJarSealLinked ;
44
+ import flaxbeard .thaumicexploration .item .focus . ItemFocusNecromancy ;
45
45
import flaxbeard .thaumicexploration .packet .TXPacketHandler ;
46
46
import flaxbeard .thaumicexploration .research .ModRecipes ;
47
47
import flaxbeard .thaumicexploration .research .ModResearch ;
48
+ import flaxbeard .thaumicexploration .tile .TileCrystalAdvanced ;
48
49
import flaxbeard .thaumicexploration .tile .TileEntityBoundChest ;
49
50
import flaxbeard .thaumicexploration .tile .TileEntityBoundJar ;
50
- import flaxbeard .thaumicexploration .tile .TileCrystalAdvanced ;
51
51
import flaxbeard .thaumicexploration .tile .TileEntityThinkTankBookshelf ;
52
52
import flaxbeard .thaumicexploration .wand .WandRodAmberOnUpdate ;
53
53
import flaxbeard .thaumicexploration .wand .WandRodTransmutationOnUpdate ;
54
54
55
55
56
- @ Mod (modid = "ThaumicExploration" , name = "Thaumic Exploration" , version = "0.0 .1" , dependencies ="required-after:Thaumcraft" )
56
+ @ Mod (modid = "ThaumicExploration" , name = "Thaumic Exploration" , version = "0.1 .1" , dependencies ="required-after:Thaumcraft" )
57
57
@ NetworkMod (clientSideRequired =true , serverSideRequired =false , channels ={"tExploration" }, packetHandler = TXPacketHandler .class )
58
58
public class ThaumicExploration {
59
59
@@ -136,7 +136,7 @@ public void preInit(FMLPreInitializationEvent event) {
136
136
public void load (FMLInitializationEvent event ) {
137
137
//EventHandler
138
138
MinecraftForge .EVENT_BUS .register (new TXEventHandler ());
139
-
139
+
140
140
//Tiles
141
141
GameRegistry .registerTileEntity (TileEntityBoundChest .class , "tileEntityBoundChest" );
142
142
GameRegistry .registerTileEntity (TileEntityBoundJar .class , "tileEntityBoundJar" );
@@ -145,8 +145,9 @@ public void load(FMLInitializationEvent event) {
145
145
146
146
//Blocks
147
147
thinkTankBookshelf = new BlockThinkTankBookshelf (205 , Material .wood ).setUnlocalizedName ("thinkTankBookshelf" ).setCreativeTab (CreativeTabs .tabBlock );
148
- boundChest = new BlockBoundChest (boundChestID , 0 ).setUnlocalizedName ("boundChest" ).setCreativeTab (CreativeTabs .tabBlock );
149
- boundJar = new BlockBoundJar (boundJarID ).setUnlocalizedName ("boundJar" ).setCreativeTab (CreativeTabs .tabBlock );
148
+ boundChest = new BlockBoundChest (boundChestID , 0 ).setUnlocalizedName ("boundChest" );
149
+ boundJar = new BlockBoundJar (boundJarID ).setUnlocalizedName ("boundJar" );
150
+
150
151
GameRegistry .registerBlock (boundChest , "boundChest" );
151
152
GameRegistry .registerBlock (boundJar , "boundJar" );
152
153
GameRegistry .registerBlock (thinkTankBookshelf , "thinkTankBookshelf" );
@@ -159,11 +160,11 @@ public void load(FMLInitializationEvent event) {
159
160
chestSeal = (new ItemChestSeal (chestSealID ).setCreativeTab (CreativeTabs .tabBlock ).setTextureName ("thaumicexploration:sealChest" ).setUnlocalizedName ("thaumicexploration:chestSeal" ));
160
161
chestSealLinked = (new ItemChestSealLinked (chestSealLinkedID ).setTextureName ("thaumicexploration:sealChest" ).setUnlocalizedName ("thaumicexploration:chestSeal" ));
161
162
jarSeal = (new ItemChestSeal (jarSealID ).setCreativeTab (CreativeTabs .tabBlock ).setTextureName ("thaumicexploration:sealJar" ).setUnlocalizedName ("thaumicexploration:jarSeal" ));
162
- jarSealLinked = (new ItemJarSealLinked (jarSealLinkedID ).setTextureName ("thaumicexploration:sealJar" ).setUnlocalizedName ("thaumicexploration:jarSeal" ));
163
+ jarSealLinked = (new ItemChestSealLinked (jarSealLinkedID ).setTextureName ("thaumicexploration:sealJar" ).setUnlocalizedName ("thaumicexploration:jarSeal" ));
163
164
164
165
armorMaterialCrystal = EnumHelper .addArmorMaterial ("CRYSTAL" , 25 , new int [] { 2 , 6 , 5 , 2 }, 25 );
165
166
helmetCrystal = (new ItemCrystalArmor (helmetCrystalID , armorMaterialCrystal , 2 , 0 )).setUnlocalizedName ("thaumicexploration:helmetCrystal" ).setCreativeTab (CreativeTabs .tabBlock ).setTextureName ("thaumicexploration:rodTransmutation" );
166
- chestCrystal = (new ItemCrystalArmor (chestCrystalID , armorMaterialCrystal , 1 , 1 )).setUnlocalizedName ("thaumicexploration:chestCrystal" ).setCreativeTab (CreativeTabs .tabBlock ).setTextureName ("thaumicexploration:rodTransmutation" );
167
+ chestCrystal = (new ItemFocusNecromancy (chestCrystalID )).setUnlocalizedName ("thaumicexploration:chestCrystal" ).setCreativeTab (CreativeTabs .tabBlock ).setTextureName ("thaumicexploration:rodTransmutation" );
167
168
168
169
//Wands
169
170
WAND_ROD_AMBER = new WandRod ("amber" ,75 ,new ItemStack (ThaumicExploration .amberCore ),1 ,new WandRodAmberOnUpdate (), new ResourceLocation ("thaumicexploration:textures/models/rodAmber.png" ));
0 commit comments