summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-11-29 08:51:26 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-11-29 08:51:26 +0000
commite781bb1729979292a3e2ae6c06d9c92900d4c11f (patch)
treea401a79bfdf6df340e28946984869bf8d7d97c5e /crawl-ref
parent7eb88ac6c9a9b34224f00de24a60b3233862163e (diff)
downloadcrawl-ref-e781bb1729979292a3e2ae6c06d9c92900d4c11f.tar.gz
crawl-ref-e781bb1729979292a3e2ae6c06d9c92900d4c11f.zip
Ball lightning also resists poison and cold. [1836645] Give earth elementalists more stones to start with.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2932 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/mon-data.h2
-rw-r--r--crawl-ref/source/newgame.cc4
2 files changed, 2 insertions, 4 deletions
diff --git a/crawl-ref/source/mon-data.h b/crawl-ref/source/mon-data.h
index 19f6723d69..006eec8f3a 100644
--- a/crawl-ref/source/mon-data.h
+++ b/crawl-ref/source/mon-data.h
@@ -3560,7 +3560,7 @@
{
MONS_BALL_LIGHTNING, '*', LIGHTCYAN, "ball lightning",
M_FLIES | M_CONFUSED | M_SPELLCASTER | M_SPECIAL_ABILITY,
- MR_RES_ELEC,
+ MR_RES_ELEC | MR_RES_POISON | MR_RES_COLD,
0, 20, MONS_BALL_LIGHTNING, MONS_BALL_LIGHTNING, MH_NONLIVING, MAG_IMMUNE,
{ {AT_HIT, AF_PLAIN, 5}, AT_NO_ATK, AT_NO_ATK, AT_NO_ATK },
{ 12, 0, 0, 1 },
diff --git a/crawl-ref/source/newgame.cc b/crawl-ref/source/newgame.cc
index 4690556c06..ab29c3f30a 100644
--- a/crawl-ref/source/newgame.cc
+++ b/crawl-ref/source/newgame.cc
@@ -3825,9 +3825,7 @@ bool give_items_skills()
case JOB_EARTH_ELEMENTALIST:
newgame_make_item(2, EQ_NONE, OBJ_BOOKS, BOOK_GEOMANCY);
-
- newgame_make_item(3, EQ_NONE, OBJ_MISSILES, MI_STONE,
- random2avg(12, 2) + 6);
+ newgame_make_item(3, EQ_NONE, OBJ_MISSILES, MI_STONE, 20);
if (you.species == SP_GNOME)
{