Private
Public Access
1
0

feat: Adding economic system to do scoring

This commit is contained in:
gauvainboiche
2026-03-30 11:28:47 +02:00
parent b19fb262a4
commit c0f66d8cc0
16 changed files with 1303 additions and 145 deletions

View File

@@ -1,6 +1,44 @@
{
"clickCooldownSeconds": 5,
"clickCooldownSeconds": 2,
"databaseWipeoutIntervalSeconds": 21600,
"debugModeForTeams": true,
"configReloadIntervalSeconds": 30
}
"configReloadIntervalSeconds": 30,
"resourceWorth": {
"common": {
"rock": 1,
"wood": 1,
"mineral": 2,
"stones": 2,
"liquid": 1,
"oil": 4,
"gas": 3,
"grain": 1,
"livestock": 2,
"fish": 1,
"plant": 1,
"goods": 4,
"animals": 2,
"science": 6,
"factory": 5,
"acid": 1
},
"rare": {
"rock": 3,
"wood": 3,
"mineral": 4,
"stones": 5,
"liquid": 2,
"oil": 7,
"gas": 6,
"grain": 3,
"livestock": 3,
"fish": 5,
"plant": 3,
"goods": 8,
"animals": 5,
"science": 15,
"factory": 12,
"acid": 3
}
}
}