added MaterialData classes and associated Enums for COAL, CROPS, LOG, LEAVES, STEP, and DOUBLE_STEP
By: sunkid <sunkid@iminurnetz.com>
This commit is contained in:
parent
e36fc0c867
commit
f240cdf831
9 changed files with 427 additions and 6 deletions
|
@ -29,8 +29,8 @@ public enum Material {
|
|||
GOLD_ORE(14),
|
||||
IRON_ORE(15),
|
||||
COAL_ORE(16),
|
||||
LOG(17),
|
||||
LEAVES(18),
|
||||
LOG(17, Tree.class),
|
||||
LEAVES(18, Tree.class),
|
||||
SPONGE(19),
|
||||
GLASS(20),
|
||||
LAPIS_ORE(21),
|
||||
|
@ -46,8 +46,8 @@ public enum Material {
|
|||
RED_MUSHROOM(40),
|
||||
GOLD_BLOCK(41),
|
||||
IRON_BLOCK(42),
|
||||
DOUBLE_STEP(43),
|
||||
STEP(44),
|
||||
DOUBLE_STEP(43, Step.class),
|
||||
STEP(44, Step.class),
|
||||
BRICK(45),
|
||||
TNT(46),
|
||||
BOOKSHELF(47),
|
||||
|
@ -62,7 +62,7 @@ public enum Material {
|
|||
DIAMOND_ORE(56),
|
||||
DIAMOND_BLOCK(57),
|
||||
WORKBENCH(58),
|
||||
CROPS(59),
|
||||
CROPS(59, Crops.class),
|
||||
SOIL(60),
|
||||
FURNACE(61),
|
||||
BURNING_FURNACE(62),
|
||||
|
@ -106,7 +106,7 @@ public enum Material {
|
|||
APPLE(260, 1),
|
||||
BOW(261, 1),
|
||||
ARROW(262),
|
||||
COAL(263),
|
||||
COAL(263, Coal.class),
|
||||
DIAMOND(264),
|
||||
IRON_INGOT(265),
|
||||
GOLD_INGOT(266),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue