mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-07 10:22:56 +00:00
Implemented Sculk (#5489)
This commit is contained in:
@ -629,6 +629,7 @@ use function mb_strtolower;
|
||||
* @method static Slab SANDSTONE_SLAB()
|
||||
* @method static Stair SANDSTONE_STAIRS()
|
||||
* @method static Wall SANDSTONE_WALL()
|
||||
* @method static Sculk SCULK()
|
||||
* @method static SeaLantern SEA_LANTERN()
|
||||
* @method static SeaPickle SEA_PICKLE()
|
||||
* @method static Opaque SHROOMLIGHT()
|
||||
@ -1186,6 +1187,7 @@ final class VanillaBlocks{
|
||||
self::register("mangrove_roots", new MangroveRoots(new BID(Ids::MANGROVE_ROOTS), "Mangrove Roots", new Info(BreakInfo::axe(0.7))));
|
||||
self::register("muddy_mangrove_roots", new SimplePillar(new BID(Ids::MUDDY_MANGROVE_ROOTS), "Muddy Mangrove Roots", new Info(BreakInfo::shovel(0.7), [Tags::MUD])));
|
||||
self::register("froglight", new Froglight(new BID(Ids::FROGLIGHT), "Froglight", new Info(new BreakInfo(0.3))));
|
||||
self::register("sculk", new Sculk(new BID(Ids::SCULK), "Sculk", new Info(new BreakInfo(0.6, ToolType::HOE))));
|
||||
|
||||
self::registerBlocksR13();
|
||||
self::registerBlocksR14();
|
||||
|
Reference in New Issue
Block a user