Improve test coverage, simplify code.
This commit is contained in:
parent
b3057f038b
commit
ff7db8b0c8
6 changed files with 21 additions and 17 deletions
20
actions.c
20
actions.c
|
@ -925,19 +925,13 @@ static int throw (FILE *cmdin, long verb, token_t obj)
|
|||
return (discard(verb, obj, false));
|
||||
int i = ATDWRF(game.loc);
|
||||
if (i <= 0) {
|
||||
if (AT(DRAGON) && game.prop[DRAGON] == 0) {
|
||||
spk = DRAGON_SCALES;
|
||||
return throw_support(spk);
|
||||
}
|
||||
if (AT(TROLL)) {
|
||||
spk = TROLL_RETURNS;
|
||||
return throw_support(spk);
|
||||
}
|
||||
if (AT(OGRE)) {
|
||||
spk = OGRE_DODGE;
|
||||
return throw_support(spk);
|
||||
}
|
||||
if (HERE(BEAR) && game.prop[BEAR] == 0) {
|
||||
if (AT(DRAGON) && game.prop[DRAGON] == 0)
|
||||
return throw_support(DRAGON_SCALES);
|
||||
if (AT(TROLL))
|
||||
return throw_support(TROLL_RETURNS);
|
||||
else if (AT(OGRE))
|
||||
return throw_support(OGRE_DODGE);
|
||||
else if (HERE(BEAR) && game.prop[BEAR] == 0) {
|
||||
/* This'll teach him to throw the axe at the bear! */
|
||||
DROP(AXE, game.loc);
|
||||
game.fixed[AXE] = -1;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## Speak a magic word artan inopportune time and drown.
|
||||
## Speak a magic word at an inopportune time and drown.
|
||||
# Based on walkthrough at http://www.ecsoftwareconsulting.com/node/56
|
||||
n
|
||||
seed 1838473132
|
||||
|
|
|
@ -61,6 +61,10 @@ Eat what?
|
|||
You have taken a drink from the stream. The water tastes strongly of
|
||||
minerals, but is not unpleasant. It is extremely cold.
|
||||
|
||||
> throw keys
|
||||
|
||||
I see no keys here.
|
||||
|
||||
> find keys
|
||||
|
||||
I can only tell you what you see as you move about and manipulate
|
||||
|
@ -308,7 +312,7 @@ Okay, "BOO".
|
|||
|
||||
> score
|
||||
|
||||
You have garnered 27 out of a possible 430 points, using 58 turns.
|
||||
You have garnered 27 out of a possible 430 points, using 59 turns.
|
||||
|
||||
> quit bottle
|
||||
|
||||
|
@ -322,7 +326,7 @@ Do you really want to quit now?
|
|||
|
||||
OK
|
||||
|
||||
You scored 27 out of a possible 430, using 60 turns.
|
||||
You scored 27 out of a possible 430, using 61 turns.
|
||||
|
||||
You are obviously a rank amateur. Better luck next time.
|
||||
|
||||
|
|
|
@ -8,6 +8,7 @@ listen
|
|||
forward
|
||||
eat
|
||||
drink
|
||||
throw keys
|
||||
find keys
|
||||
inven keys
|
||||
nothing
|
||||
|
|
|
@ -280,8 +280,12 @@ There are fresh batteries here.
|
|||
|
||||
OK
|
||||
|
||||
> throw batteries
|
||||
|
||||
You scored 75 out of a possible 430, using 49 turns.
|
||||
OK
|
||||
|
||||
|
||||
You scored 75 out of a possible 430, using 50 turns.
|
||||
|
||||
Your score qualifies you as a novice class adventurer.
|
||||
|
||||
|
|
|
@ -51,3 +51,4 @@ se
|
|||
s
|
||||
drop coins
|
||||
take batteries
|
||||
throw batteries
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue