refactor: rename game.json to config.json and update file path references

This commit is contained in:
syntaxbullet
2025-12-15 22:02:35 +01:00
parent 3984d6112b
commit 3c81fd8396
3 changed files with 2 additions and 2 deletions

33
src/config/config.json Normal file
View File

@@ -0,0 +1,33 @@
{
"leveling": {
"base": 100,
"exponent": 2.5,
"chat": {
"cooldownMs": 60000,
"minXp": 15,
"maxXp": 25
}
},
"economy": {
"daily": {
"amount": "100",
"streakBonus": "10",
"cooldownMs": 86400000
},
"transfers": {
"allowSelfTransfer": false,
"minAmount": "1"
}
},
"inventory": {
"maxStackSize": "999",
"maxSlots": 50
},
"commands": {
"daily": true,
"quests": false,
"inventory": false,
"trade": false,
"balance": false
}
}