Petbot/config/pets.json
megaproxy 47f160a295 Initial commit: Complete PetBot IRC Game
🎮 Features implemented:
- Pokemon-style pet collection and battles
- Multi-location exploration system
- Dynamic weather with background updates
- Achievement system with location unlocks
- Web dashboard for player stats
- Modular command system
- Async database with SQLite
- PM flood prevention
- Persistent player data

🌤️ Weather System:
- 6 weather types with spawn modifiers
- 30min-3hour dynamic durations
- Background task for automatic updates
- Location-specific weather patterns

🐛 Recent Bug Fixes:
- Database persistence on restart
- Player page SQLite row conversion
- Achievement count calculations
- Travel requirement messages
- Battle move color coding
- Locations page display

🔧 Generated with Claude Code
🤖 Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-13 23:57:39 +01:00

79 lines
No EOL
1.7 KiB
JSON

[
{
"name": "Flamey",
"type1": "Fire",
"type2": null,
"base_hp": 45,
"base_attack": 52,
"base_defense": 43,
"base_speed": 65,
"evolution_level": null,
"rarity": 1
},
{
"name": "Aqua",
"type1": "Water",
"type2": null,
"base_hp": 44,
"base_attack": 48,
"base_defense": 65,
"base_speed": 43,
"evolution_level": null,
"rarity": 1
},
{
"name": "Leafy",
"type1": "Grass",
"type2": null,
"base_hp": 45,
"base_attack": 49,
"base_defense": 49,
"base_speed": 45,
"evolution_level": null,
"rarity": 1
},
{
"name": "Sparky",
"type1": "Electric",
"type2": null,
"base_hp": 35,
"base_attack": 55,
"base_defense": 40,
"base_speed": 90,
"evolution_level": null,
"rarity": 2
},
{
"name": "Rocky",
"type1": "Rock",
"type2": null,
"base_hp": 40,
"base_attack": 80,
"base_defense": 100,
"base_speed": 25,
"evolution_level": null,
"rarity": 2
},
{
"name": "Blazeon",
"type1": "Fire",
"type2": null,
"base_hp": 65,
"base_attack": 80,
"base_defense": 60,
"base_speed": 95,
"evolution_level": null,
"rarity": 3
},
{
"name": "Hydrox",
"type1": "Water",
"type2": "Ice",
"base_hp": 70,
"base_attack": 65,
"base_defense": 90,
"base_speed": 60,
"evolution_level": null,
"rarity": 3
}
]