Skip to content

Commit

Permalink
reduce the startup difficulty
Browse files Browse the repository at this point in the history
  • Loading branch information
VitoVan committed Mar 27, 2023
1 parent 987977b commit 9850495
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions canvas.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
(defparameter *level* 0)
(defparameter *ball-x* 100)
(defparameter *ball-y* 570)
(defparameter *enemy-list* (list (list 1 400) (list 2 300) (list 3 200) (list 4 100) (list 5 0)))
(defparameter *enemy-list* (list (list 1 200) (list 2 100) (list 3 0) (list 4 -100) (list 5 -200)))

(defparameter *enemy-move-per-ms* 0.2)
(defparameter *enemy-move-tick* nil)
Expand Down Expand Up @@ -136,7 +136,7 @@

(defun reset-game ()
(setf
*enemy-list* (list (list 1 400) (list 2 300) (list 3 200) (list 4 100) (list 5 0))
*enemy-list* (list (list 1 200) (list 2 100) (list 3 0) (list 4 -100) (list 5 -200))
*enemy-move-per-ms* 0.2
*enemy-move-tick* nil
*ball-x* 100
Expand Down

0 comments on commit 9850495

Please sign in to comment.