Implemented reinforced deepslate (#5553)

This commit is contained in:
ipad54
2023-02-15 18:15:04 +03:00
committed by GitHub
parent 7611155ff9
commit 75f74454c6
6 changed files with 12 additions and 2 deletions

View File

@ -628,6 +628,7 @@ use function mb_strtolower;
* @method static Wall RED_SANDSTONE_WALL()
* @method static Torch RED_TORCH()
* @method static Flower RED_TULIP()
* @method static Opaque REINFORCED_DEEPSLATE()
* @method static Reserved6 RESERVED6()
* @method static DoublePlant ROSE_BUSH()
* @method static Sand SAND()
@ -1201,6 +1202,11 @@ final class VanillaBlocks{
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::register("reinforced_deepslate", new class(new BID(Ids::REINFORCED_DEEPSLATE), "Reinforced Deepslate", new Info(new BreakInfo(55.0, ToolType::NONE, 0, 3600.0))) extends Opaque{
public function getDropsForCompatibleTool(Item $item) : array{
return [];
}
});
self::registerBlocksR13();
self::registerBlocksR14();