Skip to content

Commit

Permalink
feat(helpers): balance levels
Browse files Browse the repository at this point in the history
  • Loading branch information
remarkablemark committed Jan 29, 2025
1 parent d5e8f44 commit 10cee79
Showing 1 changed file with 28 additions and 6 deletions.
34 changes: 28 additions & 6 deletions src/helpers/levels.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const levels = [
start: 3 * MINUTE,
end: 4 * MINUTE,
loop: {
enemy: 3,
enemy: 4,
drain: 15,
},
enemies: [Sprite.Pokey],
Expand All @@ -88,8 +88,8 @@ export const levels = [
start: 4 * MINUTE,
end: 5 * MINUTE,
loop: {
enemy: 3,
drain: 20,
enemy: 4,
drain: 15,
},
enemies: [Sprite.Gooba, Sprite.Bubbie, Sprite.Pokey],
multiplier: {
Expand All @@ -99,13 +99,13 @@ export const levels = [
},
},

// 5 -
// 5 - 6
{
start: 5 * MINUTE,
end: undefined,
end: 6 * MINUTE,
loop: {
enemy: 1,
drain: 30,
drain: 20,
},
enemies: [
Sprite.Bubbie,
Expand All @@ -120,4 +120,26 @@ export const levels = [
speed: 2,
},
},

// 6 - ∞
{
start: 6 * MINUTE,
end: undefined,
loop: {
enemy: 0.5,
drain: 30,
},
enemies: [
Sprite.Bubbie,
Sprite.Gooba,
Sprite.Shellie,
Sprite.Spiny,
Sprite.Pokey,
],
multiplier: {
damage: 2.5,
health: 2.5,
speed: 2.5,
},
},
]

0 comments on commit 10cee79

Please sign in to comment.