pocketmine\entity\Chicken::getDrops PHP Метод

getDrops() публичный Метод

public getDrops ( )
    public function getDrops()
    {
        $drops = [];
        if ($this->lastDamageCause instanceof EntityDamageByEntityEvent and $this->lastDamageCause->getEntity() instanceof Player) {
            switch (\mt_rand(0, 2)) {
                case 0:
                    $drops[] = ItemItem::get(ItemItem::RAW_CHICKEN, 0, 1);
                    break;
                case 1:
                    $drops[] = ItemItem::get(ItemItem::FEATHER, 0, 1);
                    break;
                case 2:
                    $drops[] = ItemItem::get(ItemItem::FEATHER, 0, 2);
                    break;
            }
        }
        return $drops;
    }