Fix give coins, now actually gives rewards

This commit is contained in:
Rene Arumetsa
2026-08-17 19:29:15 +03:00
parent 5e303fe36f
commit cec5ac01a0

View File

@@ -32,7 +32,7 @@ QUESTS_DAILY: dict[str, QuestDef] = {
"fish2": {"stat": "total_fish_caught", "goal": 2, "coins": 150, "exp": 20}, "fish2": {"stat": "total_fish_caught", "goal": 2, "coins": 150, "exp": 20},
"crime1": {"stat": "crimes_succeeded", "goal": 1, "coins": 200, "exp": 25}, "crime1": {"stat": "crimes_succeeded", "goal": 1, "coins": 200, "exp": 25},
"earn1000": {"stat": "lifetime_earned", "goal": 1000, "coins": 150, "exp": 20}, "earn1000": {"stat": "lifetime_earned", "goal": 1000, "coins": 150, "exp": 20},
"give200": {"stat": "total_given", "goal": 200, "coins": 100, "exp": 15}, "give200": {"stat": "total_given", "goal": 200, "coins": 250, "exp": 20},
} }
QUESTS_WEEKLY: dict[str, QuestDef] = { QUESTS_WEEKLY: dict[str, QuestDef] = {