powered ? 1 : 0; } public function readStateFromMeta(int $meta) : void{ $this->powered = $meta !== 0; } public function getStateBitmask() : int{ return 0b1; } public function getName() : string{ return "Stone Pressure Plate"; } public function isSolid() : bool{ return false; } public function getHardness() : float{ return 0.5; } public function getToolType() : int{ return BlockToolType::TYPE_PICKAXE; } public function getToolHarvestLevel() : int{ return TieredTool::TIER_WOODEN; } }