Added Tainted and Blessed Wooden Planks.
|
Before Width: | Height: | Size: 446 B |
|
Before Width: | Height: | Size: 513 B |
|
Before Width: | Height: | Size: 469 B |
|
After Width: | Height: | Size: 395 B |
|
After Width: | Height: | Size: 395 B |
|
After Width: | Height: | Size: 395 B |
|
After Width: | Height: | Size: 395 B |
|
After Width: | Height: | Size: 395 B |
|
Before Width: | Height: | Size: 504 B After Width: | Height: | Size: 504 B |
|
Before Width: | Height: | Size: 503 B |
|
Before Width: | Height: | Size: 467 B |
|
Before Width: | Height: | Size: 460 B |
|
After Width: | Height: | Size: 395 B |
|
After Width: | Height: | Size: 395 B |
|
After Width: | Height: | Size: 395 B |
|
After Width: | Height: | Size: 395 B |
|
After Width: | Height: | Size: 395 B |
|
Before Width: | Height: | Size: 474 B After Width: | Height: | Size: 474 B |
@@ -25,7 +25,8 @@ public class Divine_Equipment
|
||||
public static final String modid = "divine_equipment";
|
||||
public static Block taintedstone;
|
||||
public static Block blessedstone;
|
||||
|
||||
public static Block blessedwood;
|
||||
public static Block taintedwood;
|
||||
|
||||
|
||||
@Instance("Divine_Equipment")
|
||||
@@ -64,6 +65,12 @@ public class Divine_Equipment
|
||||
blessedstone = new BlessedRock(2551, Material.rock).setUnlocalizedName("Blessed Stone").setTextureName("divine_equipment:BlessedStone");
|
||||
GameRegistry.registerBlock(blessedstone, modid+ blessedstone.getUnlocalizedName().substring(5));
|
||||
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)
|
||||
// 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");
|
||||
LanguageRegistry.addName(TaintedWoodSword, "Tainted Wood Sword");
|
||||
}
|
||||
|
||||
// Pickaxes
|
||||
Item TaintedDiamondPickaxe;{
|
||||
TaintedDiamondPickaxe = new TaintedDiamondPickaxe(565, TaintedDiamond).setUnlocalizedName("Tainted_Pickaxe_Diamond").setTextureName("divine_equipment:Tainted_Pickaxe_Diamond");
|
||||
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");
|
||||
LanguageRegistry.addName(BlessedWoodSword, "Blessed Wood Sword");
|
||||
}
|
||||
// Pickaxes
|
||||
|
||||
Item BlessedDiamondPickaxe;{
|
||||
BlessedDiamondPickaxe = new BlessedDiamondPickaxe(585, BlessedDiamond).setUnlocalizedName("Blessed_Pickaxe_Diamond").setTextureName("divine_equipment:Blessed_Pickaxe_Diamond");
|
||||
LanguageRegistry.addName(BlessedDiamondPickaxe, "Blessed Diamond Pickaxe");
|
||||
|
||||
@@ -13,9 +13,9 @@ import net.minecraft.creativetab.CreativeTabs;
|
||||
*/
|
||||
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);
|
||||
setStepSound(Block.soundStoneFootstep);
|
||||
setUnlocalizedName("Blessed Stone");
|
||||
|
||||
26
src/divine_equipment/blocks/BlessedWood.java
Normal 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");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -13,9 +13,9 @@ import net.minecraft.creativetab.CreativeTabs;
|
||||
*/
|
||||
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);
|
||||
setStepSound(Block.soundStoneFootstep);
|
||||
setUnlocalizedName("Tainted Stone");
|
||||
|
||||
26
src/divine_equipment/blocks/TaintedWood.java
Normal 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");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
package items;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 9/30/13
|
||||
*/
|
||||
public class BlessedWood {
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
package items;
|
||||
|
||||
/**
|
||||
* User: Orthus
|
||||
* Date: 9/30/13
|
||||
*/
|
||||
public class TaintedWood {
|
||||
}
|
||||
@@ -8,8 +8,8 @@
|
||||
"logoFile": "",
|
||||
"url": "https://bitbucket.org/0rthus/divine-equipment",
|
||||
"updateUrl": "",
|
||||
"authors": ["Orthus"],
|
||||
"credits": "Made by Orthus(zackyd)",
|
||||
"authors": ["Zackyd"],
|
||||
"credits": "Made by Zackyd",
|
||||
"parent": "",
|
||||
"screenshots": [],
|
||||
"dependencies": []
|
||||
|
||||