VOOZH about

URL: https://apify.com/trusty_coalition/pika-chu

⇱ Pokemon AI generator · Apify


Pricing

from $0.01 / 1,000 results

Go to Apify Store

Pokemon AI generator

Create custom Pokémon with the Pokémon AI Generator Actor. It uses AI to craft unique creatures with detailed stats, descriptions, and sprites, producing original designs that blend seamlessly with the authentic Pokémon world.

Pricing

from $0.01 / 1,000 results

Rating

0.0

(0)

Developer

👁 Kush Anchalia

Kush Anchalia

Maintained by Community

Actor stats

0

Bookmarked

6

Total users

0

Monthly active users

7 months ago

Last modified

Categories

Share

My-Actor: Pokemon Generator

This Apify actor demonstrates a web scraping project built with Crawlee and Cheerio, enhanced with AI-powered Pokémon generation using the Google Gemini API. It scrapes data, generates Pokémon descriptions, and prints ASCII art in the console. Data is stored in Apify datasets.


Features

  • Scrape web pages using Crawlee + Cheerio
  • Generate Pokémon details (name, types, stats, description) via Gemini AI
  • Display Pokémon names in ASCII art in the terminal
  • Save all Pokémon data to Apify Dataset
  • Fully configurable via input JSON

Requirements

  • Node.js 22+
  • Apify CLI or running on Apify platform
  • Environment variable: GEMINI_API_KEY for Google Gemini AI
  • Optional: Configure input.json to specify number of Pokémon to generate (pokemonCount)

Setup

  1. Clone the project
$cd my-actor
  1. Install dependencies
$npminstall
  1. Set environment variable
$exportGEMINI_API_KEY="your_google_gemini_api_key_here"
  1. Configure input Create an input.json file (optional, defaults provided):
{
"pokemonCount":3
}

Usage

Run Locally

$node src/main.js

Run on Apify Platform

  1. Upload actor code to Apify.
  2. Set the GEMINI_API_KEY in actor settings.
  3. Provide input JSON when running the actor.
  4. Run the actor; results will be saved to the dataset.

Output

  • Console:

    • Pokémon ASCII art
    • Types, stats, and description printed
  • Dataset:

    • JSON objects with all Pokémon data
    • Field sprite_file stores image filename

Example dataset entry:

{
"name":"Aurorix",
"types":["Electric","Ice"],
"stats":{
"HP":80,
"Attack":65,
"Defense":75,
"Speed":115,
"Special Attack":120,
"Special Defense":95
},
"description":"Aurorix is said to be born from cosmic dust...",
"sprite_file":"Aurorix.png"
}

Notes

  • Gemini AI: Needed for Pokémon generation. Without a valid GEMINI_API_KEY, the AI portion will fail.
  • ASCII art is generated using Figlet.
  • Images can optionally be generated and stored if enabled in code.

License

MIT License


This actor is ideal for experimenting with AI-generated content and web scraping combined in a single actor.

You might also like

Pokémon Catalog Scraper

parseforge/pokemon-catalog-scraper

Pull Pokémon catalog records: stats (HP, Attack, Defense), types, abilities, height, weight, base experience, sprites (front/back/shiny), generation, and more. Browse the full Pokédex of 1,300+ Pokémon or look up specific ones by name or number. Useful for fan apps, games.

2

PokeAPI Scraper — Pokémon Data

crawlerbros/pokeapi-scraper

Scrape PokeAPI.co - browse all 1025+ Pokémon by generation, filter by type, or lookup by name/ID. Returns types, abilities, stats, sprites, and optional species details.

👁 User avatar

Crawler Bros

2

Cardmarket Pokémon Trend Scraper

scrap_them_all/cardmarket-pokemon-trend-scraper

Scrape Cardmarket Pokémon Weekly Top Cards and Best Bargains. Get card name, expansion, current price, price change, rarity and product URL.

👁 User avatar

scrap_them_all

16

Pokémon Card & Sealed Box Market Intelligence

lofomachines/pokemon-card-box-market-intelligence

Pokémon card and sealed box prices, trend signals, AI investment scoring and booster box expected value — in one clean dataset.

👁 User avatar

Lofomachines

2

TCG Card Scraper — Magic, Pokémon & More with Prices

crawlergang/tcgplayer-scraper

Scrape trading card data and prices from Scryfall (MTG) and the Pokémon TCG API. Search cards by name, browse by set, or look up by ID. Returns card details, rarity, set info, market prices (USD/EUR), legalities, and TCGplayer purchase links.

👁 User avatar

Crawler Gang

2

5.0

TCG Card Scraper — Magic, Pokémon & More with Prices

crawlerbros/tcgplayer-scraper

Scrape trading card data and prices from Scryfall (MTG) and the Pokémon TCG API. Search cards by name, browse by set, or look up by ID. Returns card details, rarity, set info, market prices (USD/EUR), legalities, and TCGplayer purchase links.

👁 User avatar

Crawler Bros

1

Related articles

How to scrape Google AI Mode, Perplexity, and ChatGPT
Read more
What is generative AI?
Read more
How to build and monetize an AI agent on Apify
Read more