diff options
author | David Thompson <dthompson@vistahigherlearning.com> | 2021-10-21 08:28:40 -0400 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2021-10-21 08:28:40 -0400 |
commit | 0ef4a323549ea72f4c5c3df17ac78ceda069ed03 (patch) | |
tree | 3831dd2459b626922e897d85499e359feb1f8782 /bonnie-bee/player.scm | |
parent | ba887d36cd96e188771eda44ddfb7c31c9811fc0 (diff) |
Add real boss fight.
Diffstat (limited to 'bonnie-bee/player.scm')
-rw-r--r-- | bonnie-bee/player.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bonnie-bee/player.scm b/bonnie-bee/player.scm index 6f6cd91..78eafc0 100644 --- a/bonnie-bee/player.scm +++ b/bonnie-bee/player.scm @@ -20,6 +20,7 @@ move-down? move-up? shoot? + invincible? speed lives pollen @@ -38,7 +39,7 @@ (shoot? #:accessor shoot? #:init-value #f #:watch? #t) (last-shot #:accessor last-shot #:init-value 0) (shot-interval #:getter shot-interval #:init-value (steps 2)) - (speed #:accessor speed #:init-value 2.5) + (speed #:accessor speed #:init-value 1.8) (lives #:accessor lives #:init-value 3) (invincible? #:accessor invincible? #:init-value #f) (pollen #:accessor pollen #:init-value 0) |