Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,22 @@
# small-apps
small apps for various use cases

## Apps Available

### 🎮 Pokémon Identification Game
A fun, kid-friendly browser game where players identify Pokémon from images and earn coins and medals!

**Features:**
- 151 Generation 1 Pokémon to identify
- Earn coins for correct answers
- Unlock achievements and medals
- Track your streak and progress
- Dark mode with high contrast accessibility
- Fully keyboard accessible
- Mobile-friendly design
- Progress saved locally (no sign-up required)

**Play:** [pokemon-game.html](pokemon-game.html)

### ➕➖ Math Trainer Apps
Simple math practice games for addition and subtraction.
153 changes: 153 additions & 0 deletions data/pokemon.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,153 @@
[
{"id": 1, "name": "Bulbasaur", "imageUrl": "https://img.pokemondb.net/artwork/large/bulbasaur.jpg"},
{"id": 2, "name": "Ivysaur", "imageUrl": "https://img.pokemondb.net/artwork/large/ivysaur.jpg"},
{"id": 3, "name": "Venusaur", "imageUrl": "https://img.pokemondb.net/artwork/large/venusaur.jpg"},
{"id": 4, "name": "Charmander", "imageUrl": "https://img.pokemondb.net/artwork/large/charmander.jpg"},
{"id": 5, "name": "Charmeleon", "imageUrl": "https://img.pokemondb.net/artwork/large/charmeleon.jpg"},
{"id": 6, "name": "Charizard", "imageUrl": "https://img.pokemondb.net/artwork/large/charizard.jpg"},
{"id": 7, "name": "Squirtle", "imageUrl": "https://img.pokemondb.net/artwork/large/squirtle.jpg"},
{"id": 8, "name": "Wartortle", "imageUrl": "https://img.pokemondb.net/artwork/large/wartortle.jpg"},
{"id": 9, "name": "Blastoise", "imageUrl": "https://img.pokemondb.net/artwork/large/blastoise.jpg"},
{"id": 10, "name": "Caterpie", "imageUrl": "https://img.pokemondb.net/artwork/large/caterpie.jpg"},
{"id": 11, "name": "Metapod", "imageUrl": "https://img.pokemondb.net/artwork/large/metapod.jpg"},
{"id": 12, "name": "Butterfree", "imageUrl": "https://img.pokemondb.net/artwork/large/butterfree.jpg"},
{"id": 13, "name": "Weedle", "imageUrl": "https://img.pokemondb.net/artwork/large/weedle.jpg"},
{"id": 14, "name": "Kakuna", "imageUrl": "https://img.pokemondb.net/artwork/large/kakuna.jpg"},
{"id": 15, "name": "Beedrill", "imageUrl": "https://img.pokemondb.net/artwork/large/beedrill.jpg"},
{"id": 16, "name": "Pidgey", "imageUrl": "https://img.pokemondb.net/artwork/large/pidgey.jpg"},
{"id": 17, "name": "Pidgeotto", "imageUrl": "https://img.pokemondb.net/artwork/large/pidgeotto.jpg"},
{"id": 18, "name": "Pidgeot", "imageUrl": "https://img.pokemondb.net/artwork/large/pidgeot.jpg"},
{"id": 19, "name": "Rattata", "imageUrl": "https://img.pokemondb.net/artwork/large/rattata.jpg"},
{"id": 20, "name": "Raticate", "imageUrl": "https://img.pokemondb.net/artwork/large/raticate.jpg"},
{"id": 21, "name": "Spearow", "imageUrl": "https://img.pokemondb.net/artwork/large/spearow.jpg"},
{"id": 22, "name": "Fearow", "imageUrl": "https://img.pokemondb.net/artwork/large/fearow.jpg"},
{"id": 23, "name": "Ekans", "imageUrl": "https://img.pokemondb.net/artwork/large/ekans.jpg"},
{"id": 24, "name": "Arbok", "imageUrl": "https://img.pokemondb.net/artwork/large/arbok.jpg"},
{"id": 25, "name": "Pikachu", "imageUrl": "https://img.pokemondb.net/artwork/large/pikachu.jpg"},
{"id": 26, "name": "Raichu", "imageUrl": "https://img.pokemondb.net/artwork/large/raichu.jpg"},
{"id": 27, "name": "Sandshrew", "imageUrl": "https://img.pokemondb.net/artwork/large/sandshrew.jpg"},
{"id": 28, "name": "Sandslash", "imageUrl": "https://img.pokemondb.net/artwork/large/sandslash.jpg"},
{"id": 29, "name": "Nidoran-f", "imageUrl": "https://img.pokemondb.net/artwork/large/nidoran-f.jpg"},
{"id": 30, "name": "Nidorina", "imageUrl": "https://img.pokemondb.net/artwork/large/nidorina.jpg"},
{"id": 31, "name": "Nidoqueen", "imageUrl": "https://img.pokemondb.net/artwork/large/nidoqueen.jpg"},
{"id": 32, "name": "Nidoran-m", "imageUrl": "https://img.pokemondb.net/artwork/large/nidoran-m.jpg"},
{"id": 33, "name": "Nidorino", "imageUrl": "https://img.pokemondb.net/artwork/large/nidorino.jpg"},
{"id": 34, "name": "Nidoking", "imageUrl": "https://img.pokemondb.net/artwork/large/nidoking.jpg"},
{"id": 35, "name": "Clefairy", "imageUrl": "https://img.pokemondb.net/artwork/large/clefairy.jpg"},
{"id": 36, "name": "Clefable", "imageUrl": "https://img.pokemondb.net/artwork/large/clefable.jpg"},
{"id": 37, "name": "Vulpix", "imageUrl": "https://img.pokemondb.net/artwork/large/vulpix.jpg"},
{"id": 38, "name": "Ninetales", "imageUrl": "https://img.pokemondb.net/artwork/large/ninetales.jpg"},
{"id": 39, "name": "Jigglypuff", "imageUrl": "https://img.pokemondb.net/artwork/large/jigglypuff.jpg"},
{"id": 40, "name": "Wigglytuff", "imageUrl": "https://img.pokemondb.net/artwork/large/wigglytuff.jpg"},
{"id": 41, "name": "Zubat", "imageUrl": "https://img.pokemondb.net/artwork/large/zubat.jpg"},
{"id": 42, "name": "Golbat", "imageUrl": "https://img.pokemondb.net/artwork/large/golbat.jpg"},
{"id": 43, "name": "Oddish", "imageUrl": "https://img.pokemondb.net/artwork/large/oddish.jpg"},
{"id": 44, "name": "Gloom", "imageUrl": "https://img.pokemondb.net/artwork/large/gloom.jpg"},
{"id": 45, "name": "Vileplume", "imageUrl": "https://img.pokemondb.net/artwork/large/vileplume.jpg"},
{"id": 46, "name": "Paras", "imageUrl": "https://img.pokemondb.net/artwork/large/paras.jpg"},
{"id": 47, "name": "Parasect", "imageUrl": "https://img.pokemondb.net/artwork/large/parasect.jpg"},
{"id": 48, "name": "Venonat", "imageUrl": "https://img.pokemondb.net/artwork/large/venonat.jpg"},
{"id": 49, "name": "Venomoth", "imageUrl": "https://img.pokemondb.net/artwork/large/venomoth.jpg"},
{"id": 50, "name": "Diglett", "imageUrl": "https://img.pokemondb.net/artwork/large/diglett.jpg"},
{"id": 51, "name": "Dugtrio", "imageUrl": "https://img.pokemondb.net/artwork/large/dugtrio.jpg"},
{"id": 52, "name": "Meowth", "imageUrl": "https://img.pokemondb.net/artwork/large/meowth.jpg"},
{"id": 53, "name": "Persian", "imageUrl": "https://img.pokemondb.net/artwork/large/persian.jpg"},
{"id": 54, "name": "Psyduck", "imageUrl": "https://img.pokemondb.net/artwork/large/psyduck.jpg"},
{"id": 55, "name": "Golduck", "imageUrl": "https://img.pokemondb.net/artwork/large/golduck.jpg"},
{"id": 56, "name": "Mankey", "imageUrl": "https://img.pokemondb.net/artwork/large/mankey.jpg"},
{"id": 57, "name": "Primeape", "imageUrl": "https://img.pokemondb.net/artwork/large/primeape.jpg"},
{"id": 58, "name": "Growlithe", "imageUrl": "https://img.pokemondb.net/artwork/large/growlithe.jpg"},
{"id": 59, "name": "Arcanine", "imageUrl": "https://img.pokemondb.net/artwork/large/arcanine.jpg"},
{"id": 60, "name": "Poliwag", "imageUrl": "https://img.pokemondb.net/artwork/large/poliwag.jpg"},
{"id": 61, "name": "Poliwhirl", "imageUrl": "https://img.pokemondb.net/artwork/large/poliwhirl.jpg"},
{"id": 62, "name": "Poliwrath", "imageUrl": "https://img.pokemondb.net/artwork/large/poliwrath.jpg"},
{"id": 63, "name": "Abra", "imageUrl": "https://img.pokemondb.net/artwork/large/abra.jpg"},
{"id": 64, "name": "Kadabra", "imageUrl": "https://img.pokemondb.net/artwork/large/kadabra.jpg"},
{"id": 65, "name": "Alakazam", "imageUrl": "https://img.pokemondb.net/artwork/large/alakazam.jpg"},
{"id": 66, "name": "Machop", "imageUrl": "https://img.pokemondb.net/artwork/large/machop.jpg"},
{"id": 67, "name": "Machoke", "imageUrl": "https://img.pokemondb.net/artwork/large/machoke.jpg"},
{"id": 68, "name": "Machamp", "imageUrl": "https://img.pokemondb.net/artwork/large/machamp.jpg"},
{"id": 69, "name": "Bellsprout", "imageUrl": "https://img.pokemondb.net/artwork/large/bellsprout.jpg"},
{"id": 70, "name": "Weepinbell", "imageUrl": "https://img.pokemondb.net/artwork/large/weepinbell.jpg"},
{"id": 71, "name": "Victreebel", "imageUrl": "https://img.pokemondb.net/artwork/large/victreebel.jpg"},
{"id": 72, "name": "Tentacool", "imageUrl": "https://img.pokemondb.net/artwork/large/tentacool.jpg"},
{"id": 73, "name": "Tentacruel", "imageUrl": "https://img.pokemondb.net/artwork/large/tentacruel.jpg"},
{"id": 74, "name": "Geodude", "imageUrl": "https://img.pokemondb.net/artwork/large/geodude.jpg"},
{"id": 75, "name": "Graveler", "imageUrl": "https://img.pokemondb.net/artwork/large/graveler.jpg"},
{"id": 76, "name": "Golem", "imageUrl": "https://img.pokemondb.net/artwork/large/golem.jpg"},
{"id": 77, "name": "Ponyta", "imageUrl": "https://img.pokemondb.net/artwork/large/ponyta.jpg"},
{"id": 78, "name": "Rapidash", "imageUrl": "https://img.pokemondb.net/artwork/large/rapidash.jpg"},
{"id": 79, "name": "Slowpoke", "imageUrl": "https://img.pokemondb.net/artwork/large/slowpoke.jpg"},
{"id": 80, "name": "Slowbro", "imageUrl": "https://img.pokemondb.net/artwork/large/slowbro.jpg"},
{"id": 81, "name": "Magnemite", "imageUrl": "https://img.pokemondb.net/artwork/large/magnemite.jpg"},
{"id": 82, "name": "Magneton", "imageUrl": "https://img.pokemondb.net/artwork/large/magneton.jpg"},
{"id": 83, "name": "Farfetchd", "imageUrl": "https://img.pokemondb.net/artwork/large/farfetchd.jpg"},
{"id": 84, "name": "Doduo", "imageUrl": "https://img.pokemondb.net/artwork/large/doduo.jpg"},
{"id": 85, "name": "Dodrio", "imageUrl": "https://img.pokemondb.net/artwork/large/dodrio.jpg"},
{"id": 86, "name": "Seel", "imageUrl": "https://img.pokemondb.net/artwork/large/seel.jpg"},
{"id": 87, "name": "Dewgong", "imageUrl": "https://img.pokemondb.net/artwork/large/dewgong.jpg"},
{"id": 88, "name": "Grimer", "imageUrl": "https://img.pokemondb.net/artwork/large/grimer.jpg"},
{"id": 89, "name": "Muk", "imageUrl": "https://img.pokemondb.net/artwork/large/muk.jpg"},
{"id": 90, "name": "Shellder", "imageUrl": "https://img.pokemondb.net/artwork/large/shellder.jpg"},
{"id": 91, "name": "Cloyster", "imageUrl": "https://img.pokemondb.net/artwork/large/cloyster.jpg"},
{"id": 92, "name": "Gastly", "imageUrl": "https://img.pokemondb.net/artwork/large/gastly.jpg"},
{"id": 93, "name": "Haunter", "imageUrl": "https://img.pokemondb.net/artwork/large/haunter.jpg"},
{"id": 94, "name": "Gengar", "imageUrl": "https://img.pokemondb.net/artwork/large/gengar.jpg"},
{"id": 95, "name": "Onix", "imageUrl": "https://img.pokemondb.net/artwork/large/onix.jpg"},
{"id": 96, "name": "Drowzee", "imageUrl": "https://img.pokemondb.net/artwork/large/drowzee.jpg"},
{"id": 97, "name": "Hypno", "imageUrl": "https://img.pokemondb.net/artwork/large/hypno.jpg"},
{"id": 98, "name": "Krabby", "imageUrl": "https://img.pokemondb.net/artwork/large/krabby.jpg"},
{"id": 99, "name": "Kingler", "imageUrl": "https://img.pokemondb.net/artwork/large/kingler.jpg"},
{"id": 100, "name": "Voltorb", "imageUrl": "https://img.pokemondb.net/artwork/large/voltorb.jpg"},
{"id": 101, "name": "Electrode", "imageUrl": "https://img.pokemondb.net/artwork/large/electrode.jpg"},
{"id": 102, "name": "Exeggcute", "imageUrl": "https://img.pokemondb.net/artwork/large/exeggcute.jpg"},
{"id": 103, "name": "Exeggutor", "imageUrl": "https://img.pokemondb.net/artwork/large/exeggutor.jpg"},
{"id": 104, "name": "Cubone", "imageUrl": "https://img.pokemondb.net/artwork/large/cubone.jpg"},
{"id": 105, "name": "Marowak", "imageUrl": "https://img.pokemondb.net/artwork/large/marowak.jpg"},
{"id": 106, "name": "Hitmonlee", "imageUrl": "https://img.pokemondb.net/artwork/large/hitmonlee.jpg"},
{"id": 107, "name": "Hitmonchan", "imageUrl": "https://img.pokemondb.net/artwork/large/hitmonchan.jpg"},
{"id": 108, "name": "Lickitung", "imageUrl": "https://img.pokemondb.net/artwork/large/lickitung.jpg"},
{"id": 109, "name": "Koffing", "imageUrl": "https://img.pokemondb.net/artwork/large/koffing.jpg"},
{"id": 110, "name": "Weezing", "imageUrl": "https://img.pokemondb.net/artwork/large/weezing.jpg"},
{"id": 111, "name": "Rhyhorn", "imageUrl": "https://img.pokemondb.net/artwork/large/rhyhorn.jpg"},
{"id": 112, "name": "Rhydon", "imageUrl": "https://img.pokemondb.net/artwork/large/rhydon.jpg"},
{"id": 113, "name": "Chansey", "imageUrl": "https://img.pokemondb.net/artwork/large/chansey.jpg"},
{"id": 114, "name": "Tangela", "imageUrl": "https://img.pokemondb.net/artwork/large/tangela.jpg"},
{"id": 115, "name": "Kangaskhan", "imageUrl": "https://img.pokemondb.net/artwork/large/kangaskhan.jpg"},
{"id": 116, "name": "Horsea", "imageUrl": "https://img.pokemondb.net/artwork/large/horsea.jpg"},
{"id": 117, "name": "Seadra", "imageUrl": "https://img.pokemondb.net/artwork/large/seadra.jpg"},
{"id": 118, "name": "Goldeen", "imageUrl": "https://img.pokemondb.net/artwork/large/goldeen.jpg"},
{"id": 119, "name": "Seaking", "imageUrl": "https://img.pokemondb.net/artwork/large/seaking.jpg"},
{"id": 120, "name": "Staryu", "imageUrl": "https://img.pokemondb.net/artwork/large/staryu.jpg"},
{"id": 121, "name": "Starmie", "imageUrl": "https://img.pokemondb.net/artwork/large/starmie.jpg"},
{"id": 122, "name": "Mr-mime", "imageUrl": "https://img.pokemondb.net/artwork/large/mr-mime.jpg"},
{"id": 123, "name": "Scyther", "imageUrl": "https://img.pokemondb.net/artwork/large/scyther.jpg"},
{"id": 124, "name": "Jynx", "imageUrl": "https://img.pokemondb.net/artwork/large/jynx.jpg"},
{"id": 125, "name": "Electabuzz", "imageUrl": "https://img.pokemondb.net/artwork/large/electabuzz.jpg"},
{"id": 126, "name": "Magmar", "imageUrl": "https://img.pokemondb.net/artwork/large/magmar.jpg"},
{"id": 127, "name": "Pinsir", "imageUrl": "https://img.pokemondb.net/artwork/large/pinsir.jpg"},
{"id": 128, "name": "Tauros", "imageUrl": "https://img.pokemondb.net/artwork/large/tauros.jpg"},
{"id": 129, "name": "Magikarp", "imageUrl": "https://img.pokemondb.net/artwork/large/magikarp.jpg"},
{"id": 130, "name": "Gyarados", "imageUrl": "https://img.pokemondb.net/artwork/large/gyarados.jpg"},
{"id": 131, "name": "Lapras", "imageUrl": "https://img.pokemondb.net/artwork/large/lapras.jpg"},
{"id": 132, "name": "Ditto", "imageUrl": "https://img.pokemondb.net/artwork/large/ditto.jpg"},
{"id": 133, "name": "Eevee", "imageUrl": "https://img.pokemondb.net/artwork/large/eevee.jpg"},
{"id": 134, "name": "Vaporeon", "imageUrl": "https://img.pokemondb.net/artwork/large/vaporeon.jpg"},
{"id": 135, "name": "Jolteon", "imageUrl": "https://img.pokemondb.net/artwork/large/jolteon.jpg"},
{"id": 136, "name": "Flareon", "imageUrl": "https://img.pokemondb.net/artwork/large/flareon.jpg"},
{"id": 137, "name": "Porygon", "imageUrl": "https://img.pokemondb.net/artwork/large/porygon.jpg"},
{"id": 138, "name": "Omanyte", "imageUrl": "https://img.pokemondb.net/artwork/large/omanyte.jpg"},
{"id": 139, "name": "Omastar", "imageUrl": "https://img.pokemondb.net/artwork/large/omastar.jpg"},
{"id": 140, "name": "Kabuto", "imageUrl": "https://img.pokemondb.net/artwork/large/kabuto.jpg"},
{"id": 141, "name": "Kabutops", "imageUrl": "https://img.pokemondb.net/artwork/large/kabutops.jpg"},
{"id": 142, "name": "Aerodactyl", "imageUrl": "https://img.pokemondb.net/artwork/large/aerodactyl.jpg"},
{"id": 143, "name": "Snorlax", "imageUrl": "https://img.pokemondb.net/artwork/large/snorlax.jpg"},
{"id": 144, "name": "Articuno", "imageUrl": "https://img.pokemondb.net/artwork/large/articuno.jpg"},
{"id": 145, "name": "Zapdos", "imageUrl": "https://img.pokemondb.net/artwork/large/zapdos.jpg"},
{"id": 146, "name": "Moltres", "imageUrl": "https://img.pokemondb.net/artwork/large/moltres.jpg"},
{"id": 147, "name": "Dratini", "imageUrl": "https://img.pokemondb.net/artwork/large/dratini.jpg"},
{"id": 148, "name": "Dragonair", "imageUrl": "https://img.pokemondb.net/artwork/large/dragonair.jpg"},
{"id": 149, "name": "Dragonite", "imageUrl": "https://img.pokemondb.net/artwork/large/dragonite.jpg"},
{"id": 150, "name": "Mewtwo", "imageUrl": "https://img.pokemondb.net/artwork/large/mewtwo.jpg"},
{"id": 151, "name": "Mew", "imageUrl": "https://img.pokemondb.net/artwork/large/mew.jpg"}
]
Loading