summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authorStefan O'Rear <stefanor@cox.net>2010-01-02 19:10:27 -0800
committerStefan O'Rear <stefanor@cox.net>2010-01-02 19:12:50 -0800
commit2b9aeac74ca6a5526074df933c71c85daf970474 (patch)
tree5a390b353ad5365fd118f88711a7804f13583ee9 /crawl-ref/source
parent6ab8afedb152e4f158c702025c03798e74a463a4 (diff)
downloadcrawl-ref-2b9aeac74ca6a5526074df933c71c85daf970474.tar.gz
crawl-ref-2b9aeac74ca6a5526074df933c71c85daf970474.zip
Give ugly things fixed speed (Eronarn)
18:58 < Eronarn> All of these are "weird creature with random described attacks" 18:58 < Eronarn> Chaos spawn get a random brand, abominations get random speed, ugly things get the color thing. This is good differentiation 18:58 < Eronarn> Making ugly things able to have random speed too just blurs them together I agree with this line of reasoning. Also, it prevents using speed differences to separate packs.
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/ghost.cc4
-rw-r--r--crawl-ref/source/mon-data.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/ghost.cc b/crawl-ref/source/ghost.cc
index 55ae7ffc26..d98fbe29ac 100644
--- a/crawl-ref/source/ghost.cc
+++ b/crawl-ref/source/ghost.cc
@@ -487,8 +487,8 @@ static mon_attack_flavour _very_ugly_thing_flavour_upgrade(mon_attack_flavour u_
void ghost_demon::init_ugly_thing(bool very_ugly, bool only_mutate,
unsigned char force_colour)
{
- // Midpoint: 10, as in mon-data.h.
- speed = 9 + random2(3);
+ // Attack speed 10 per mon-datah.
+ speed = 11;
// Midpoint: 10, as in mon-data.h.
ev = 9 + random2(3);
diff --git a/crawl-ref/source/mon-data.h b/crawl-ref/source/mon-data.h
index 89c84f1b42..8e81bf6252 100644
--- a/crawl-ref/source/mon-data.h
+++ b/crawl-ref/source/mon-data.h
@@ -1536,7 +1536,7 @@ static monsterentry mondata[] = {
{ {AT_HIT, AF_PLAIN, 12}, AT_NO_ATK, AT_NO_ATK, AT_NO_ATK },
{ 8, 3, 5, 0 },
3, 10, MST_NO_SPELLS, CE_MUTAGEN_RANDOM, Z_NOZOMBIE, S_GURGLE,
- I_ANIMAL, HT_AMPHIBIOUS_LAND, FL_NONE, 10, DEFAULT_ENERGY,
+ I_ANIMAL, HT_AMPHIBIOUS_LAND, FL_NONE, 11, MOVE_ENERGY(11),
MONUSE_OPEN_DOORS, MONEAT_NOTHING, SIZE_MEDIUM
},
@@ -1548,7 +1548,7 @@ static monsterentry mondata[] = {
{ {AT_HIT, AF_PLAIN, 17}, AT_NO_ATK, AT_NO_ATK, AT_NO_ATK },
{ 12, 3, 5, 0 },
4, 10, MST_NO_SPELLS, CE_MUTAGEN_RANDOM, Z_NOZOMBIE, S_GURGLE,
- I_ANIMAL, HT_AMPHIBIOUS_LAND, FL_NONE, 10, DEFAULT_ENERGY,
+ I_ANIMAL, HT_AMPHIBIOUS_LAND, FL_NONE, 11, MOVE_ENERGY(11),
MONUSE_OPEN_DOORS, MONEAT_NOTHING, SIZE_LARGE
},