]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - hack/hack.potion.c
147f0a9856f47c947a8657e88a339e0809b83239
1 /* $NetBSD: hack.potion.c,v 1.7 2009/06/07 18:30:39 dholland Exp $ */
4 * Copyright (c) 1985, Stichting Centrum voor Wiskunde en Informatica,
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
12 * - Redistributions of source code must retain the above copyright notice,
13 * this list of conditions and the following disclaimer.
15 * - Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * - Neither the name of the Stichting Centrum voor Wiskunde en
20 * Informatica, nor the names of its contributors may be used to endorse or
21 * promote products derived from this software without specific prior
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
25 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
26 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
27 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
28 * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
30 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
31 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
32 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
33 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
34 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 * Copyright (c) 1982 Jay Fenlason <hack@gnu.org>
39 * All rights reserved.
41 * Redistribution and use in source and binary forms, with or without
42 * modification, are permitted provided that the following conditions
44 * 1. Redistributions of source code must retain the above copyright
45 * notice, this list of conditions and the following disclaimer.
46 * 2. Redistributions in binary form must reproduce the above copyright
47 * notice, this list of conditions and the following disclaimer in the
48 * documentation and/or other materials provided with the distribution.
49 * 3. The name of the author may not be used to endorse or promote products
50 * derived from this software without specific prior written permission.
52 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
53 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
54 * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
55 * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
56 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
57 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
58 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
59 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
60 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
61 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
64 #include <sys/cdefs.h>
66 __RCSID("$NetBSD: hack.potion.c,v 1.7 2009/06/07 18:30:39 dholland Exp $");
75 struct obj
*otmp
, *objs
;
77 int unkn
= 0, nothing
= 0;
79 otmp
= getobj("!", "drink");
82 if (!strcmp(objects
[otmp
->otyp
].oc_descr
, "smoky") && !rn2(13)) {
87 case POT_RESTORE_STRENGTH
:
89 pline("Wow! This makes you feel great!");
90 if (u
.ustr
< u
.ustrmax
) {
97 pline("Ooph! This tastes like liquid fire!");
99 /* the whiskey makes us feel better */
100 if (u
.uhp
< u
.uhpmax
)
101 losehp(-1, "bottle of whiskey");
103 pline("You pass out.");
105 nomovemsg
= "You awake with a headache.";
108 case POT_INVISIBILITY
:
109 if (Invis
|| See_invisible
)
113 pline("Gee! All of a sudden, you can't see yourself.");
115 pline("You feel rather airy."), unkn
++;
118 Invis
+= rn1(15, 31);
120 case POT_FRUIT_JUICE
:
121 pline("This tastes like fruit juice.");
125 pline("You begin to feel better.");
128 if (u
.uhp
> u
.uhpmax
)
131 Blind
= 1; /* see on next move */
137 pline("You are motionlessly suspended.");
139 pline("Your feet are frozen to the floor!");
140 nomul(-(rn1(10, 25)));
142 case POT_MONSTER_DETECTION
:
144 strange_feeling(otmp
, "You feel threatened.");
148 for (mtmp
= fmon
; mtmp
; mtmp
= mtmp
->nmon
)
150 at(mtmp
->mx
, mtmp
->my
, mtmp
->data
->mlet
);
152 pline("You sense the presence of monsters.");
157 case POT_OBJECT_DETECTION
:
159 strange_feeling(otmp
, "You feel a pull downward.");
162 for (objs
= fobj
; objs
; objs
= objs
->nobj
)
163 if (objs
->ox
!= u
.ux
|| objs
->oy
!= u
.uy
)
165 pline("You sense the presence of objects close nearby.");
169 for (objs
= fobj
; objs
; objs
= objs
->nobj
)
170 at(objs
->ox
, objs
->oy
, objs
->olet
);
172 pline("You sense the presence of objects.");
178 pline("Yech! This stuff tastes like poison.");
179 if (Poison_resistance
)
180 pline("(But in fact it was biologically contaminated orange juice.)");
182 losehp(rnd(10), "contaminated potion");
186 pline("Huh, What? Where am I?");
189 Confusion
+= rn1(7, 16);
191 case POT_GAIN_STRENGTH
:
192 pline("Wow do you feel strong!");
194 break; /* > 118 is impossible */
196 u
.ustr
+= rnd(118 - u
.ustr
);
199 if (u
.ustr
> u
.ustrmax
)
209 if (!(Fast
& ~INTRINSIC
))
210 pline("You are suddenly moving much faster.");
212 pline("Your legs get new energy."), unkn
++;
213 Fast
+= rn1(10, 100);
217 pline("A cloud of darkness falls upon you.");
220 Blind
+= rn1(100, 250);
226 case POT_EXTRA_HEALING
:
227 pline("You feel much better.");
229 u
.uhp
+= d(2, 20) + 1;
230 if (u
.uhp
> u
.uhpmax
)
231 u
.uhp
= (u
.uhpmax
+= 2);
242 Levitation
+= rnd(100);
243 u
.uprops
[PROP(RIN_LEVITATION
)].p_tofn
= float_down
;
246 impossible("What a funny potion! (%u)", otmp
->otyp
);
251 pline("You have a peculiar feeling for a moment, then it passes.");
253 if (otmp
->dknown
&& !objects
[otmp
->otyp
].oc_name_known
) {
255 objects
[otmp
->otyp
].oc_name_known
= 1;
256 more_experienced(0, 10);
257 } else if (!objects
[otmp
->otyp
].oc_uname
)
270 pline("You feel more experienced.");
275 u
.uexp
= newuexp() + 1;
276 pline("Welcome to experience level %u.", ++u
.ulevel
);
282 strange_feeling(struct obj
*obj
, const char *txt
)
285 pline("You have a strange feeling for a moment, then it passes.");
288 if (!objects
[obj
->otyp
].oc_name_known
&& !objects
[obj
->otyp
].oc_uname
)
293 const char *const bottlenames
[] = {
294 "bottle", "phial", "flagon", "carafe", "flask", "jar", "vial"
298 potionhit(struct monst
*mon
, struct obj
*obj
)
300 const char *botlnam
= bottlenames
[rn2(SIZE(bottlenames
))];
301 boolean uclose
, isyou
= (mon
== &youmonst
);
305 pline("The %s crashes on your head and breaks into shivers.",
307 losehp(rnd(2), "thrown potion");
309 uclose
= (dist(mon
->mx
, mon
->my
) < 3);
310 /* perhaps 'E' and 'a' have no head? */
311 pline("The %s crashes on %s's head and breaks into shivers.",
312 botlnam
, monnam(mon
));
313 if (rn2(5) && mon
->mhp
> 1)
316 pline("The %s evaporates.", xname(obj
));
318 if (!isyou
&& !rn2(3))
321 case POT_RESTORE_STRENGTH
:
322 case POT_GAIN_STRENGTH
:
324 case POT_EXTRA_HEALING
:
325 if (mon
->mhp
< mon
->mhpmax
) {
326 mon
->mhp
= mon
->mhpmax
;
327 pline("%s looks sound and hale again!", Monnam(mon
));
340 case POT_INVISIBILITY
:
352 mon
->mblinded
|= 64 + rn2(64);
355 * case POT_GAIN_LEVEL: case POT_LEVITATION: case
356 * POT_FRUIT_JUICE: case POT_MONSTER_DETECTION: case
357 * POT_OBJECT_DETECTION: break;
360 if (uclose
&& rn2(5))
362 obfree(obj
, Null(obj
));
366 potionbreathe(struct obj
*obj
)
369 case POT_RESTORE_STRENGTH
:
370 case POT_GAIN_STRENGTH
:
371 if (u
.ustr
< u
.ustrmax
)
372 u
.ustr
++, flags
.botl
= 1;
375 case POT_EXTRA_HEALING
:
376 if (u
.uhp
< u
.uhpmax
)
377 u
.uhp
++, flags
.botl
= 1;
389 pline("You feel somewhat dizzy.");
392 case POT_INVISIBILITY
:
393 pline("For an instant you couldn't see your right hand.");
396 pline("Something seems to be holding you.");
401 pline("Your knees seem more flexible now.");
405 pline("It suddenly gets dark.");
410 * case POT_GAIN_LEVEL: case POT_LEVITATION: case
411 * POT_FRUIT_JUICE: case POT_MONSTER_DETECTION: case
412 * POT_OBJECT_DETECTION: break;
415 /* note: no obfree() */
419 * -- rudimentary -- to do this correctly requires much more work
420 * -- all sharp weapons get one or more qualities derived from the potions
421 * -- texts on scrolls may be (partially) wiped out; do they become blank?
422 * -- or does their effect change, like under Confusion?
423 * -- all objects may be made invisible by POT_INVISIBILITY
424 * -- If the flask is small, can one dip a large object? Does it magically
425 * -- become a jug? Etc.
430 struct obj
*potion
, *obj
;
432 if (!(obj
= getobj("#", "dip")))
434 if (!(potion
= getobj("!", "dip into")))
436 pline("Interesting...");
437 if (obj
->otyp
== ARROW
|| obj
->otyp
== DART
||
438 obj
->otyp
== CROSSBOW_BOLT
) {
439 if (potion
->otyp
== POT_SICKNESS
) {
449 ghost_from_bottle(void)
453 if (!(mtmp
= makemon(PM_GHOST
, u
.ux
, u
.uy
))) {
454 pline("This bottle turns out to be empty.");
458 pline("As you open the bottle, an enormous ghost emerges!");
459 pline("You are frightened to death, and unable to move.");