-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDecoBlockObsidian.java
92 lines (79 loc) · 2.54 KB
/
DecoBlockObsidian.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
package net.minecraft.src;
import java.util.List;
public class DecoBlockObsidian extends Block
{
public static final String[] OBSIDIAN_TYPES = new String[] {"normal", "chiseled", "smooth"};
public static final String[] OBSIDIAN_NAMES = new String[] {"", "Chiseled", "Smooth"};
private Icon m_IconChiseled;
private Icon m_IconSmooth;
public DecoBlockObsidian(int id)
{
super(id, Block.obsidian.blockMaterial);
this.setUnlocalizedName("decoBlockObsidian");
this.setHardness(Block.obsidian.blockHardness);
this.setResistance(Block.obsidian.blockResistance);
this.setStepSound(Block.soundStoneFootstep);
this.setCreativeTab(CreativeTabs.tabBlock);
DecoAddonManager.register(this, this.OBSIDIAN_TYPES, this.OBSIDIAN_NAMES, " Obsidian");
}
/**
* only called by clickMiddleMouseButton , and passed to inventory.setCurrentItem (along with isCreative)
*/
public int idPicked(World world, int x, int y, int z)
{
return world.getBlockId(x, y, z);
}
/**
* Get the block's damage value (for use with pick block).
*/
public int getDamageValue(World world, int x, int y, int z)
{
return world.getBlockMetadata(x, y, z);
}
/**
* Determines the damage on the item the block drops. Used in cloth and wood.
*/
public int damageDropped(int metadata)
{
return metadata;
}
//CLIENT ONLY
/**
* When this method is called, your block should register all the icons it needs with the given IconRegister. This
* is the only chance you get to register icons.
*/
public void registerIcons(IconRegister register)
{
super.registerIcons(register);
this.blockIcon = register.registerIcon("decoBlockObsidian");
this.m_IconChiseled = register.registerIcon("decoBlockObsidian_chiseled");
this.m_IconSmooth = register.registerIcon("decoBlockObsidian_smooth");
}
/**
* From the specified side and block metadata retrieves the blocks texture. Args: side, metadata
*/
public Icon getIcon(int side, int metadata)
{
switch (metadata)
{
case 0:
return this.blockIcon;
case 1:
return this.m_IconChiseled;
case 2:
return this.m_IconSmooth;
default:
return this.blockIcon;
}
}
/**
* returns a list of blocks with the same ID, but different meta (eg: wood returns 4 blocks)
*/
public void getSubBlocks(int var1, CreativeTabs var2, List var3)
{
for (int index = 0; index < this.OBSIDIAN_TYPES.length; index++)
{
var3.add(new ItemStack(var1, 1, index));
}
}
}