meta = $meta; } public function getHardness() : float{ return 0.6; } public function getToolType() : int{ return Tool::TYPE_SHOVEL; } public function getName() : string{ return "Clay Block"; } public function getDrops(Item $item) : array{ return [ ItemFactory::get(Item::CLAY_BALL, 0, 4) ]; } }