Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
ericjung committed Oct 27, 2024
1 parent bc4446b commit 7bac941
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions game.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class Game {
this.timers = [];
this.kaboom = kaboom;
this.levelNum = 1; // levels are 1-indexed
this.sardinesNeededForNextLevel = 5;
this.sardinesNeededForNextLevel = 50;
this.bonusLevelEvery = 3;
this.gameOverOverlaySprites = [];
this.bonusLevelStatus = BONUS_LEVEL_NOT_IN_PROGRESS;
Expand All @@ -62,7 +62,7 @@ class Game {

this.krackens = new FriendOrEnemy({name: "kracken", points: 50, speed: this.kaboom.rand(ENEMY_SPEED_MIN, ENEMY_SPEED_MAX), spawnInterval: 1000,
scale: this.kaboom.vec2(1.0), yDeltaRange: {min: 0, max: 0}, /* horizontal only */ infoSpacing: {x: -10, y: 30},
max: 13,
max: 10000,
initalDelayBeforeRender: 5000});

this.sardines = new FriendOrEnemy({name: "sardine", points: 100, speed: this.kaboom.rand(30, 80), spawnInterval: 500,
Expand Down

0 comments on commit 7bac941

Please sign in to comment.