Files
duckhunt/duckhunt.json
ComputerTech312 7aded2ed83 Implement duck item drop system and remove all emojis
Duck Item Drop System:
- Added configurable drop rates per duck type (15%/25%/50%)
- Created weighted drop tables for different items
- Normal ducks: basic items (bullets, magazines, gun brush, sand)
- Fast ducks: useful items including bucket of water
- Golden ducks: rare items (bread, insurance, gun buyback, dry clothes)
- Items automatically added to player inventory
- Added drop notification messages for each duck type
- Integrated seamlessly with existing combat mechanics

Emoji Removal:
- Removed all emojis from source code files
- Updated logging system to use clean text prefixes
- Replaced trophy/medal emojis with #1/#2/#3 rankings
- Updated README.md to remove all emojis
- Professional clean appearance throughout codebase
2025-09-26 19:59:34 +01:00

39 lines
839 B
JSON

{
"players": {
"computertech": {
"nick": "ComputerTech",
"xp": 2,
"ducks_shot": 6,
"ducks_befriended": 2,
"shots_fired": 2,
"shots_missed": 1,
"accuracy": 63,
"gun_confiscated": false,
"current_ammo": 6,
"magazines": 7,
"bullets_per_magazine": 6,
"jam_chance": 5,
"inventory": {
"1": 1
},
"temporary_effects": []
},
"seokly": {
"nick": "seokly",
"xp": 0,
"ducks_shot": 0,
"ducks_befriended": 0,
"shots_fired": 0,
"shots_missed": 0,
"accuracy": 75,
"gun_confiscated": false,
"current_ammo": 6,
"magazines": 3,
"bullets_per_magazine": 6,
"jam_chance": 15,
"inventory": {},
"temporary_effects": []
}
},
"last_save": "1758912506.1474519"
}