summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/it_use3.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-09 07:47:23 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-09 07:47:23 +0000
commitd16c36c47ff9608c427a46ad4c1dac6baa85b5d3 (patch)
tree14c607a6bf9479bae91d5e3c83fcb663a7781c46 /crawl-ref/source/it_use3.cc
parentf5324e880d260ed7a9e4a565efb21002a90c3741 (diff)
downloadcrawl-ref-d16c36c47ff9608c427a46ad4c1dac6baa85b5d3.tar.gz
crawl-ref-d16c36c47ff9608c427a46ad4c1dac6baa85b5d3.zip
Add more miscellaneous minor fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5648 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/it_use3.cc')
-rw-r--r--crawl-ref/source/it_use3.cc36
1 files changed, 18 insertions, 18 deletions
diff --git a/crawl-ref/source/it_use3.cc b/crawl-ref/source/it_use3.cc
index 1974eb9ce9..bad3519fc9 100644
--- a/crawl-ref/source/it_use3.cc
+++ b/crawl-ref/source/it_use3.cc
@@ -698,25 +698,25 @@ bool evoke_wielded()
static bool efreet_flask(void)
{
- monster_type mon = MONS_EFREET;
-
- const bool friendly =
- (!player_will_anger_monster(mon)
- && you.skills[SK_EVOCATIONS] / 3 + 10 > random2(20));
+ bool friendly = (you.skills[SK_EVOCATIONS] / 3 + 10 > random2(20));
mpr("You open the flask...");
- const int efreet =
+ const int monster =
create_monster(
- mgen_data(mon,
+ mgen_data(MONS_EFREET,
friendly ? BEH_FRIENDLY : BEH_HOSTILE,
0, you.pos(),
- friendly ? you.pet_target : MHITYOU));
+ friendly ? you.pet_target : MHITYOU,
+ MG_FORCE_BEH));
- if (efreet != -1)
+ if (monster != -1)
{
mpr("...and a huge efreet comes out.");
+ if (player_angers_monster(&menv[monster]))
+ friendly = false;
+
mpr(friendly ? "\"Thank you for releasing me!\""
: "It howls insanely!");
}
@@ -726,7 +726,7 @@ static bool efreet_flask(void)
dec_inv_item_quantity(you.equip[EQ_WEAPON], 1);
return (true);
-} // end efreet_flask()
+}
static bool ball_of_seeing(void)
{
@@ -959,20 +959,19 @@ void skill_manual(int slot)
static bool box_of_beasts()
{
- monster_type beasty = MONS_PROGRAM_BUG;
- int temp_rand = 0; // probability determination {dlb}
-
- int ret = false;
+ bool success = false;
mpr("You open the lid...");
if (random2(100) < 60 + you.skills[SK_EVOCATIONS])
{
+ monster_type beasty = MONS_PROGRAM_BUG;
+
// If you worship a good god, don't summon an evil beast (in
// this case, the hell hound).
do
{
- temp_rand = random2(11);
+ int temp_rand = random2(11);
beasty = ((temp_rand == 0) ? MONS_GIANT_BAT :
(temp_rand == 1) ? MONS_HOUND :
@@ -1001,9 +1000,10 @@ static bool box_of_beasts()
mgen_data(beasty, beha, 2 + random2(4),
you.pos(), hitting)) != -1)
{
+ success = true;
+
mpr("...and something leaps out!");
xom_is_stimulated(14);
- ret = true;
}
}
else
@@ -1017,8 +1017,8 @@ static bool box_of_beasts()
}
}
- return (ret);
-} // end box_of_beasts()
+ return (success);
+}
static bool ball_of_energy(void)
{