Files
duckhunt/shop.json
ComputerTech312 0c8b4f9543 Implement magazine system and inventory management
- Add level-based magazine system (3 mags at L1, 2 at L3-5, 1 at L6-8)
- Replace ammo/chargers with current_ammo/magazines/bullets_per_magazine
- Add inventory system for storing and using shop items
- Add Magazine item to shop (15 XP, adds 1 magazine)
- Auto-migrate existing players from old ammo system
- Auto-update magazines when players level up
- Fix method name bugs (get_player_level -> calculate_player_level)
2025-09-23 20:13:01 +01:00

18 lines
313 B
JSON

{
"items": {
"1": {
"name": "Single Bullet",
"price": 5,
"description": "1 extra bullet",
"type": "ammo",
"amount": 1
},
"2": {
"name": "Magazine",
"price": 15,
"description": "1 extra magazine",
"type": "magazine",
"amount": 1
}
}
}