mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 03:52:45 +01:00
Added new Materials (need to add individual api later)
By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
parent
427bd6ecbe
commit
0f9396499a
1 changed files with 22 additions and 0 deletions
|
@ -109,6 +109,19 @@ public enum Material {
|
||||||
DIODE_BLOCK_ON(94, Diode.class),
|
DIODE_BLOCK_ON(94, Diode.class),
|
||||||
LOCKED_CHEST(95),
|
LOCKED_CHEST(95),
|
||||||
TRAP_DOOR(96, TrapDoor.class),
|
TRAP_DOOR(96, TrapDoor.class),
|
||||||
|
MONSTER_EGGS(97),
|
||||||
|
SMOOTH_BRICK(98),
|
||||||
|
HUGE_MUSHROOM_1(99),
|
||||||
|
HUGE_MUSHROOM_2(100),
|
||||||
|
IRON_FENCE(101),
|
||||||
|
THIN_GLASS(102),
|
||||||
|
MELON_BLOCK(103),
|
||||||
|
PUMPKIN_STEM(104),
|
||||||
|
MELON_STEM(105),
|
||||||
|
VINE(106),
|
||||||
|
FENCE_GATE(107),
|
||||||
|
BRICK_STAIRS(108),
|
||||||
|
SMOOTH_STAIRS(109),
|
||||||
// ----- Item Separator -----
|
// ----- Item Separator -----
|
||||||
IRON_SPADE(256, 1, 250),
|
IRON_SPADE(256, 1, 250),
|
||||||
IRON_PICKAXE(257, 1, 250),
|
IRON_PICKAXE(257, 1, 250),
|
||||||
|
@ -214,6 +227,15 @@ public enum Material {
|
||||||
COOKIE(357, 8),
|
COOKIE(357, 8),
|
||||||
MAP(358, 1, MaterialData.class),
|
MAP(358, 1, MaterialData.class),
|
||||||
SHEARS(359, 1, 238),
|
SHEARS(359, 1, 238),
|
||||||
|
MELON(360),
|
||||||
|
PUMPKIN_SEEDS(361),
|
||||||
|
MELON_SEEDS(362),
|
||||||
|
RAW_BEEF(363),
|
||||||
|
COOKED_BEEF(364),
|
||||||
|
RAW_CHICKEN(365),
|
||||||
|
COOKED_CHICKEN(366),
|
||||||
|
ROTTEN_FLESH(367),
|
||||||
|
ENDER_PEARL(368),
|
||||||
GOLD_RECORD(2256, 1),
|
GOLD_RECORD(2256, 1),
|
||||||
GREEN_RECORD(2257, 1);
|
GREEN_RECORD(2257, 1);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue