This commit is contained in:
2026-06-25 16:02:01 -04:00
parent c1a5361255
commit f61889195c
6 changed files with 82 additions and 3 deletions

View File

@@ -60,3 +60,7 @@ def buy(player, item, price):
player.money -= price
player.inventory[item] += 1
return True
def earn(player, amount):
player.money += amount