Working Crafting Recipies, Updated redist, Updated loose redist
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
17
loose redist/mcmod.info
Normal file
17
loose redist/mcmod.info
Normal file
@@ -0,0 +1,17 @@
|
||||
[
|
||||
{
|
||||
"modid": "divine_equipment",
|
||||
"name": "Divine Equipment",
|
||||
"description": "Divine Equipment adds Tools, Armour, Blocks, and Items that are of Blessed, Ender, and Tainted Variations.",
|
||||
"version": "0.5",
|
||||
"mcversion": "1.6.4",
|
||||
"logoFile": "",
|
||||
"url": "https://bitbucket.org/0rthus/divine-equipment",
|
||||
"updateUrl": "",
|
||||
"authors": ["Zackyd"],
|
||||
"credits": "Made by Zackyd",
|
||||
"parent": "",
|
||||
"screenshots": [],
|
||||
"dependencies": []
|
||||
}
|
||||
]
|
||||
Binary file not shown.
@@ -13,6 +13,7 @@ import net.minecraft.block.Block;
|
||||
import net.minecraft.block.material.Material;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraftforge.common.EnumHelper;
|
||||
|
||||
/**
|
||||
@@ -28,6 +29,7 @@ public class Divine_Content {
|
||||
public static Block blessedstone;
|
||||
public static Block blessedwood;
|
||||
public static Block taintedwood;
|
||||
public static Item BlankSigil;
|
||||
// Init All Tainted materials
|
||||
EnumToolMaterial TaintedDiamond;
|
||||
EnumToolMaterial TaintedGold;
|
||||
@@ -96,6 +98,7 @@ public class Divine_Content {
|
||||
Item BlankSigil;{
|
||||
BlankSigil = new items.BlankSigil(2558).setUnlocalizedName("Blank_Sigil").setTextureName("divine_equipment:Blank_Sigil");
|
||||
LanguageRegistry.addName(BlankSigil, "Blank Sigil");
|
||||
GameRegistry.addRecipe(new ItemStack(BlankSigil), " s ", "sgs", " s ", 's', Block.stone, 'g', Item.gunpowder);
|
||||
}
|
||||
|
||||
|
||||
@@ -103,6 +106,7 @@ public class Divine_Content {
|
||||
Item TaintedSigil;{
|
||||
TaintedSigil = new items.tainted.TaintedSigil(2559).setUnlocalizedName("Tainted_Sigil").setTextureName("divine_equipment:Tainted_Sigil");
|
||||
LanguageRegistry.addName(TaintedSigil, "Tainted Sigil");
|
||||
GameRegistry.addRecipe(new ItemStack(TaintedSigil), "rrr", "rbr", "rrr", 'b', BlankSigil , 'r', Item.blazeRod);
|
||||
}
|
||||
|
||||
// Tainted Swords
|
||||
@@ -152,6 +156,8 @@ public class Divine_Content {
|
||||
Item BlessedSigil;{
|
||||
BlessedSigil = new items.blessed.BlessedSigil(2579).setUnlocalizedName("Blessed_Sigil").setTextureName("divine_equipment:Blessed_Sigil");
|
||||
LanguageRegistry.addName(BlessedSigil, "Blessed Sigil");
|
||||
GameRegistry.addRecipe(new ItemStack(BlessedSigil), "ggg", "gbg", "ggg", 'b', BlankSigil , 'g', Item.ingotGold);
|
||||
|
||||
}
|
||||
// Blessed Swords
|
||||
Item BlessedDiamondSword;{
|
||||
@@ -201,6 +207,8 @@ public class Divine_Content {
|
||||
Item EnderSigil;{
|
||||
EnderSigil = new items.ender.EnderSigil(2600).setUnlocalizedName("Ender_Sigil").setTextureName("divine_equipment:Ender_Sigil");
|
||||
LanguageRegistry.addName(EnderSigil, "Ender Sigil");
|
||||
GameRegistry.addRecipe(new ItemStack(EnderSigil), "eee", "ebe", "eee", 'b', BlankSigil , 'e', Item.eyeOfEnder);
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -9,7 +9,9 @@ import cpw.mods.fml.common.Mod;
|
||||
import cpw.mods.fml.common.Mod.Instance;
|
||||
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
|
||||
import cpw.mods.fml.common.network.NetworkMod;
|
||||
import items.BlankSigil;
|
||||
import net.minecraft.item.EnumToolMaterial;
|
||||
import net.minecraft.item.ItemStack;
|
||||
|
||||
@SuppressWarnings("ALL")
|
||||
@Mod(modid = "divine_equipment", name = "Divine Equipment",version = "V0.5")
|
||||
|
||||
Reference in New Issue
Block a user