Added Blank Sigil, Added Varibles to perpare for recipies.

This commit is contained in:
Zachary Daltorio
2013-10-04 10:42:41 -04:00
parent c2dce749df
commit 56b40ebec9
3 changed files with 38 additions and 1 deletions

View File

@@ -91,6 +91,14 @@ public class Divine_Content {
BlessedWood = EnumHelper.addToolMaterial("Blessed Wood", 0, 59, 4.0F, 0, 15);
//Telling forge that we are creating stuff
// Blank Sigil
Item BlankSigil;{
BlankSigil = new items.BlankSigil(2558).setUnlocalizedName("Blank_Sigil").setTextureName("divine_equipment:Blank_Sigil");
LanguageRegistry.addName(BlankSigil, "Blank Sigil");
}
// Tainted Items
Item TaintedSigil;{
TaintedSigil = new items.tainted.TaintedSigil(2559).setUnlocalizedName("Tainted_Sigil").setTextureName("divine_equipment:Tainted_Sigil");

View File

@@ -1,5 +1,8 @@
package common;
import net.minecraft.block.Block;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.stats.Achievement;
import net.minecraftforge.common.AchievementPage;
@@ -8,12 +11,23 @@ import net.minecraftforge.common.AchievementPage;
* Date: 10/4/13
*/
public class Divine_Crafting {
// Achievement Code
public static Achievement HollowBeThyName;
public static Achievement ChildOfTheDamned;
public static Achievement EndersGame;
public static Achievement FallenOne;
public static Achievement Redemption;
public static Achievement ShadowWarrior;
public static AchievementPage Divine_Equipment = new AchievementPage("Divine Equipment", HollowBeThyName, ChildOfTheDamned, EndersGame, FallenOne, Redemption, ShadowWarrior);
// Crafting Recipes
ItemStack quartzStack = new ItemStack(Item.netherQuartz);
ItemStack goldStack = new ItemStack(Item.ingotGold);
ItemStack eyeStack = new ItemStack(Item.eyeOfEnder);
ItemStack obsidianStack = new ItemStack(Block.obsidian);
ItemStack stoneStack = new ItemStack(Block.stone);
}

View File

@@ -0,0 +1,15 @@
package items;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.item.Item;
/**
* User: Orthus
* Date: 10/4/13
*/
public class BlankSigil extends Item {
public BlankSigil(int id){
super(id);
setCreativeTab(CreativeTabs.tabMaterials);
}
}