diff options
author | rsiddharth <s@ricketyspace.net> | 2019-01-28 20:17:55 -0500 |
---|---|---|
committer | rsiddharth <s@ricketyspace.net> | 2019-01-28 20:17:55 -0500 |
commit | 6d9e41ee1a931779d705d2e16c843d656b408a61 (patch) | |
tree | 605fbf4a16f609f445dc99214427f34bc496783d | |
parent | 835c3b8b7ed0c6bfd6722cbe3fbff54405e6e011 (diff) |
net: orc.rkt: Add masturbate action.
* net/ricketyspace/ror/eight/orc.rkt (MASTURBATE-DAMAGE): New
constant.
(INSTRUCTIONS-1): Add instruction for masturbate action.
(player-acts-on-monsters): Add handling for masturbate key "m".
(masturbate): New function.
-rw-r--r-- | net/ricketyspace/ror/eight/orc.rkt | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/net/ricketyspace/ror/eight/orc.rkt b/net/ricketyspace/ror/eight/orc.rkt index 5a7aaad..de8a1bd 100644 --- a/net/ricketyspace/ror/eight/orc.rkt +++ b/net/ricketyspace/ror/eight/orc.rkt @@ -4,6 +4,8 @@ From github.com/racket/realm + With some trivial changes. + Commit: 973041cb6a5c696b99b79a |# @@ -21,10 +23,11 @@ permission to attack a (randomly chosen number) of times. The player uses nine keys to play -- With the four arrow keys the player navigates among the twelve monsters. - -- With "s", "f", and "h", + -- With "s", "f", "h", and "m" -- the player can 's'tab a specific monster, -- the player may 'f'lail at several monsters; -- the player may 'h'eal herself. + -- the player may 'm'asturbate for a change. When the player runs out of attacks, all live monsters attack the player. After that, it is the player's turn again. @@ -101,6 +104,7 @@ (define ATTACKS# 4) (define STAB-DAMAGE 2) (define FLAIL-DAMAGE 3) +(define MASTURBATE-DAMAGE 5) (define HEALING 8) ;; monster attributes @@ -127,7 +131,8 @@ (define REMAINING "Remaining attacks ") (define INSTRUCTIONS-2 "Select a monster using the arrow keys") (define INSTRUCTIONS-1 - "Press S to stab a monster | Press F to Flail wildly | Press H to Heal") + (string-append "Press S to stab a monster | Press F to Flail wildly " + "| Press H to Heal | Press M to Masturbate")) ;; graphical constants (define HEALTH-BAR-HEIGHT 12) @@ -216,6 +221,7 @@ [(key=? "s" k) (stab w)] [(key=? "h" k) (heal w)] [(key=? "f" k) (flail w)] + [(key=? "m" k) (masturbate w)] [(key=? "right" k) (move-target w +1)] [(key=? "left" k) (move-target w -1)] @@ -358,6 +364,20 @@ (for-each (lambda (m) (damage-monster m 1)) getem)) ;; OrcWorld -> Void + +;; Effect: reduces player agility by x and 2x damages a random number +;; of live monsters +(define (masturbate w) + (decrease-attack# w) + (define alive (filter monster-alive? (orc-world-lom w))) + (define x (random-quotient (player-strength (orc-world-player w)) + MASTURBATE-DAMAGE)) + (define pick# (min x (length alive))) + (define getem (take alive pick#)) + (player-agility+ (orc-world-player w) (- x)) + (for-each (lambda (m) (damage-monster m (* 2 x))) getem)) + +;; OrcWorld -> Void ;; Effect: decrease number of remaining attacks (define (decrease-attack# w) (set-orc-world-attack#! w (sub1 (orc-world-attack# w)))) |