Stats tracking updated. Work on skull storms. Enemy death sound added for goblins. Various updates and fixes.

This commit is contained in:
Storm Dragon
2025-02-04 00:28:50 -05:00
parent 1d033e067a
commit 4f7f5504d1
12 changed files with 323 additions and 47 deletions

View File

@@ -1,5 +1,6 @@
import pygame
from libstormgames import *
from src.stat_tracker import StatTracker
from src.weapon import Weapon
@@ -21,6 +22,7 @@ class Player:
self._lives = 1
self.distanceSinceLastStep = 0
self.stepDistance = 0.5
self.stats = StatTracker()
# Inventory system
self.inventory = []