Added Tainted and Blessed Wooden Planks.

This commit is contained in:
Zachary Daltorio
2013-10-02 18:49:39 -04:00
parent f237f18306
commit d8f3b5cdd0
26 changed files with 70 additions and 25 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 446 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 513 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 469 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 395 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 395 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 395 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 395 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 395 B

View File

Before

Width:  |  Height:  |  Size: 504 B

After

Width:  |  Height:  |  Size: 504 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 503 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 467 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 460 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 395 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 395 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 395 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 395 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 395 B

View File

Before

Width:  |  Height:  |  Size: 474 B

After

Width:  |  Height:  |  Size: 474 B

View File

@@ -25,7 +25,8 @@ public class Divine_Equipment
public static final String modid = "divine_equipment"; public static final String modid = "divine_equipment";
public static Block taintedstone; public static Block taintedstone;
public static Block blessedstone; public static Block blessedstone;
public static Block blessedwood;
public static Block taintedwood;
@Instance("Divine_Equipment") @Instance("Divine_Equipment")
@@ -64,6 +65,12 @@ public class Divine_Equipment
blessedstone = new BlessedRock(2551, Material.rock).setUnlocalizedName("Blessed Stone").setTextureName("divine_equipment:BlessedStone"); blessedstone = new BlessedRock(2551, Material.rock).setUnlocalizedName("Blessed Stone").setTextureName("divine_equipment:BlessedStone");
GameRegistry.registerBlock(blessedstone, modid+ blessedstone.getUnlocalizedName().substring(5)); GameRegistry.registerBlock(blessedstone, modid+ blessedstone.getUnlocalizedName().substring(5));
LanguageRegistry.addName(blessedstone, "Blessed Stone"); LanguageRegistry.addName(blessedstone, "Blessed Stone");
blessedwood = new BlessedWood(2552, Material.wood).setUnlocalizedName("Blessed Wood").setTextureName("divine_equipment:BlessedWood");
GameRegistry.registerBlock(blessedwood, modid+ blessedwood.getUnlocalizedName().substring(5));
LanguageRegistry.addName(blessedwood, "Blessed Wood");
taintedwood = new TaintedWood(2553, Material.wood).setUnlocalizedName("Tainted Wood").setTextureName("divine_equipment:TaintedWood");
GameRegistry.registerBlock(taintedwood, modid+ taintedwood.getUnlocalizedName().substring(5));
LanguageRegistry.addName(taintedwood, "Tainted Wood");
// Tainted Tool Material Properties (Subject to Change) // Tainted Tool Material Properties (Subject to Change)
// Name, Harvest Level, Uses, Dig Speed, Damage, Enchantablity // Name, Harvest Level, Uses, Dig Speed, Damage, Enchantablity
/* /*
@@ -109,7 +116,7 @@ public class Divine_Equipment
TaintedWoodSword = new TaintedWoodSword(2564, TaintedWood).setUnlocalizedName("Tainted_Sword_Wood").setTextureName("divine_equipment:Tainted_Sword_Wood"); TaintedWoodSword = new TaintedWoodSword(2564, TaintedWood).setUnlocalizedName("Tainted_Sword_Wood").setTextureName("divine_equipment:Tainted_Sword_Wood");
LanguageRegistry.addName(TaintedWoodSword, "Tainted Wood Sword"); LanguageRegistry.addName(TaintedWoodSword, "Tainted Wood Sword");
} }
// Pickaxes
Item TaintedDiamondPickaxe;{ Item TaintedDiamondPickaxe;{
TaintedDiamondPickaxe = new TaintedDiamondPickaxe(565, TaintedDiamond).setUnlocalizedName("Tainted_Pickaxe_Diamond").setTextureName("divine_equipment:Tainted_Pickaxe_Diamond"); TaintedDiamondPickaxe = new TaintedDiamondPickaxe(565, TaintedDiamond).setUnlocalizedName("Tainted_Pickaxe_Diamond").setTextureName("divine_equipment:Tainted_Pickaxe_Diamond");
LanguageRegistry.addName(TaintedDiamondPickaxe, "Tainted Diamond Pickaxe"); LanguageRegistry.addName(TaintedDiamondPickaxe, "Tainted Diamond Pickaxe");
@@ -152,6 +159,8 @@ public class Divine_Equipment
BlessedWoodSword = new BlessedWoodSword(2584, BlessedWood).setUnlocalizedName("Blessed_Sword_Wood").setTextureName("divine_equipment:Blessed_Sword_Wood"); BlessedWoodSword = new BlessedWoodSword(2584, BlessedWood).setUnlocalizedName("Blessed_Sword_Wood").setTextureName("divine_equipment:Blessed_Sword_Wood");
LanguageRegistry.addName(BlessedWoodSword, "Blessed Wood Sword"); LanguageRegistry.addName(BlessedWoodSword, "Blessed Wood Sword");
} }
// Pickaxes
Item BlessedDiamondPickaxe;{ Item BlessedDiamondPickaxe;{
BlessedDiamondPickaxe = new BlessedDiamondPickaxe(585, BlessedDiamond).setUnlocalizedName("Blessed_Pickaxe_Diamond").setTextureName("divine_equipment:Blessed_Pickaxe_Diamond"); BlessedDiamondPickaxe = new BlessedDiamondPickaxe(585, BlessedDiamond).setUnlocalizedName("Blessed_Pickaxe_Diamond").setTextureName("divine_equipment:Blessed_Pickaxe_Diamond");
LanguageRegistry.addName(BlessedDiamondPickaxe, "Blessed Diamond Pickaxe"); LanguageRegistry.addName(BlessedDiamondPickaxe, "Blessed Diamond Pickaxe");

View File

@@ -13,9 +13,9 @@ import net.minecraft.creativetab.CreativeTabs;
*/ */
public class BlessedRock extends Block { public class BlessedRock extends Block {
public BlessedRock (int par1, Material BlessedRock) public BlessedRock (int id, Material maeterial)
{ {
super(par1, BlessedRock); super(id, maeterial);
setHardness(1.0F); setHardness(1.0F);
setStepSound(Block.soundStoneFootstep); setStepSound(Block.soundStoneFootstep);
setUnlocalizedName("Blessed Stone"); setUnlocalizedName("Blessed Stone");

View File

@@ -0,0 +1,26 @@
package blocks;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.creativetab.CreativeTabs;
/**
* User: Orthus
* Date: 10/1/13
*/
public class BlessedWood extends Block {
public BlessedWood (int id, Material maeterial)
{
super(id, maeterial);
setHardness(1.0F);
setStepSound(Block.soundWoodFootstep);
setUnlocalizedName("Blessed Wood");
setCreativeTab(CreativeTabs.tabBlock);
setTextureName("divine_equipment:Blessed_Wood");
}
}

View File

@@ -13,9 +13,9 @@ import net.minecraft.creativetab.CreativeTabs;
*/ */
public class TaintedRock extends Block { public class TaintedRock extends Block {
public TaintedRock (int par1, Material TaintedRock) public TaintedRock (int id, Material maeterial)
{ {
super(par1, TaintedRock); super(id, maeterial);
setHardness(1.0F); setHardness(1.0F);
setStepSound(Block.soundStoneFootstep); setStepSound(Block.soundStoneFootstep);
setUnlocalizedName("Tainted Stone"); setUnlocalizedName("Tainted Stone");

View File

@@ -0,0 +1,26 @@
package blocks;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.creativetab.CreativeTabs;
/**
* User: Orthus
* Date: 10/1/13
*/
public class TaintedWood extends Block {
public TaintedWood (int id, Material material)
{
super(id, material);
setHardness(1.0F);
setStepSound(Block.soundWoodFootstep);
setUnlocalizedName("Tainted Wood");
setCreativeTab(CreativeTabs.tabBlock);
setTextureName("divine_equipment:Tainted_Wood");
}
}

View File

@@ -1,8 +0,0 @@
package items;
/**
* User: Orthus
* Date: 9/30/13
*/
public class BlessedWood {
}

View File

@@ -1,8 +0,0 @@
package items;
/**
* User: Orthus
* Date: 9/30/13
*/
public class TaintedWood {
}

View File

@@ -8,8 +8,8 @@
"logoFile": "", "logoFile": "",
"url": "https://bitbucket.org/0rthus/divine-equipment", "url": "https://bitbucket.org/0rthus/divine-equipment",
"updateUrl": "", "updateUrl": "",
"authors": ["Orthus"], "authors": ["Zackyd"],
"credits": "Made by Orthus(zackyd)", "credits": "Made by Zackyd",
"parent": "", "parent": "",
"screenshots": [], "screenshots": [],
"dependencies": [] "dependencies": []