Skip to content

Commit

Permalink
Update main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
PHOX-9 authored Feb 7, 2025
1 parent 7baf56c commit 657e49d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys
import random
from player import Player
from enemy import FlyingEye, Goblin, Mushroom, Skeleton, EvilWizard, BigFlyingEye, DashingGoblin
from enemy import FlyingEye, Goblin, Mushroom, Skeleton, EvilWizard, BigFlyingEye, DashingGoblin, TeleportingMushroom
from weapon import WeaponManager

# Initialize Pygame
Expand Down Expand Up @@ -47,23 +47,23 @@
'message': "Wave 2: Mini-Boss!"
},
{
'enemies': [(FlyingEye, 8, 1.5), (Goblin, 5, 2)],
'enemies': [(FlyingEye, 8, 1.5), (Goblin, 5, 2), (TeleportingMushroom, 3, 1)],
'message': "Wave 3: Combined Forces!"
},

# Mid-game challenge
{
'enemies': [(Skeleton, 10, 1.5), (FlyingEye, 15, 1)],
'enemies': [(Skeleton, 10, 1.5), (FlyingEye, 15, 1), (TeleportingMushroom, 4, 1)],
'message': "Wave 4: Skeletons Join the Fray!"
},
{
'enemies': [(Mushroom, 5, 2), (Goblin, 12, 1), (FlyingEye, 10, 1.2)],
'enemies': [(Mushroom, 5, 2), (Goblin, 12, 1), (FlyingEye, 10, 1.2), (TeleportingMushroom, 6, 1)],
'message': "Wave 5: Unrelenting Onslaught!"
},

# Final wave
{
'enemies': [(EvilWizard, 2, 3), (Mushroom, 10, 1), (Goblin, 10, 1.5), (Skeleton, 20, 0.8)],
'enemies': [(EvilWizard, 2, 3), (Mushroom, 10, 1), (Goblin, 10, 1.5), (Skeleton, 20, 0.8), (TeleportingMushroom, 8, 1)],
'message': "Wave 6: FINAL WAVE: Ultimate Challenge!"
}
]
Expand Down

0 comments on commit 657e49d

Please sign in to comment.