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

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

public getDrops ( )
    public function getDrops()
    {
        $drops = array(ItemItem::get(ItemItem::STRING, 0, 1));
        if ($this->lastDamageCause instanceof EntityDamageByEntityEvent and $this->lastDamageCause->getEntity() instanceof Player) {
            if (mt_rand(0, 199) < 5) {
                switch (mt_rand(0, 2)) {
                    case 0:
                        $drops[] = ItemItem::get(ItemItem::IRON_INGOT, 0, 1);
                        break;
                    case 1:
                        $drops[] = ItemItem::get(ItemItem::CARROT, 0, 1);
                        break;
                    case 2:
                        $drops[] = ItemItem::get(ItemItem::POTATO, 0, 1);
                        break;
                }
            }
        }
        return $drops;
    }