age; } public function readStateFromData(int $id, int $stateMeta) : void{ $this->age = BlockDataSerializer::readBoundedInt("age", $stateMeta, 0, 7); } public function getStateBitmask() : int{ return 0b111; } public function place(BlockTransaction $tx, Item $item, Block $blockReplace, Block $blockClicked, int $face, Vector3 $clickVector, ?Player $player = null) : bool{ if($blockReplace->getSide(Facing::DOWN)->getId() === BlockLegacyIds::FARMLAND){ return parent::place($tx, $item, $blockReplace, $blockClicked, $face, $clickVector, $player); } return false; } public function onInteract(Item $item, int $face, Vector3 $clickVector, ?Player $player = null) : bool{ if($this->age < 7 and $item instanceof Fertilizer){ $block = clone $this; $block->age += mt_rand(2, 5); if($block->age > 7){ $block->age = 7; } $ev = new BlockGrowEvent($this, $block); $ev->call(); if(!$ev->isCancelled()){ $this->pos->getWorldNonNull()->setBlock($this->pos, $ev->getNewState()); } $item->pop(); return true; } return false; } public function onNearbyBlockChange() : void{ if($this->getSide(Facing::DOWN)->getId() !== BlockLegacyIds::FARMLAND){ $this->pos->getWorldNonNull()->useBreakOn($this->pos); } } public function ticksRandomly() : bool{ return true; } public function onRandomTick() : void{ if($this->age < 7 and mt_rand(0, 2) === 1){ $block = clone $this; ++$block->age; $ev = new BlockGrowEvent($this, $block); $ev->call(); if(!$ev->isCancelled()){ $this->pos->getWorldNonNull()->setBlock($this->pos, $ev->getNewState()); } } } public function isAffectedBySilkTouch() : bool{ return false; } }