Added various new 1.9 entities, blocks and items
By: Nathan Adams <dinnerbone@dinnerbone.com>
This commit is contained in:
parent
41fba5743b
commit
bdc3ffafbe
15 changed files with 157 additions and 2 deletions
|
@ -122,6 +122,18 @@ public enum Material {
|
|||
FENCE_GATE(107),
|
||||
BRICK_STAIRS(108),
|
||||
SMOOTH_STAIRS(109),
|
||||
MYCEL(110),
|
||||
WATER_LILY(111),
|
||||
NETHER_BRICK(112),
|
||||
NETHER_FENCE(113),
|
||||
NETHER_BRICK_STAIRS(114),
|
||||
NETHER_WATER(115),
|
||||
ENCHANTMENT_TABLE(116),
|
||||
BREWING_STAND(117),
|
||||
CAULDRON(118),
|
||||
ENDER_PORTAL(119),
|
||||
ENTER_PORTAL_FRAME(120),
|
||||
WHITESTONE(121),
|
||||
// ----- Item Separator -----
|
||||
IRON_SPADE(256, 1, 250),
|
||||
IRON_PICKAXE(257, 1, 250),
|
||||
|
@ -236,8 +248,31 @@ public enum Material {
|
|||
COOKED_CHICKEN(366),
|
||||
ROTTEN_FLESH(367),
|
||||
ENDER_PEARL(368),
|
||||
BLAZE_ROD(369),
|
||||
GHAST_TEAR(370),
|
||||
GOLD_NUGGET(371),
|
||||
NETHER_STALK(372),
|
||||
POTION(373),
|
||||
GLASS_BOTTLE(374),
|
||||
SPIDER_EYE(375),
|
||||
FERMENTED_SPIDER_EYE(376),
|
||||
BLAZE_POWDER(377),
|
||||
MAGMA_CREAM(378),
|
||||
BREWING_STAND_ITEM(379),
|
||||
CAULDRON_ITEM(380),
|
||||
EYE_OF_ENDER(381),
|
||||
SPECKLED_MELON(382),
|
||||
GOLD_RECORD(2256, 1),
|
||||
GREEN_RECORD(2257, 1);
|
||||
GREEN_RECORD(2257, 1),
|
||||
RECORD_3(2258, 1),
|
||||
RECORD_4(2259, 1),
|
||||
RECORD_5(2260, 1),
|
||||
RECORD_6(2261, 1),
|
||||
RECORD_7(2262, 1),
|
||||
RECORD_8(2263, 1),
|
||||
RECORD_9(2264, 1),
|
||||
RECORD_10(2265, 1),
|
||||
RECORD_11(2266, 1);
|
||||
|
||||
private final int id;
|
||||
private final Class<? extends MaterialData> data;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue