summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/species.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-02-23 12:28:35 +0000
committerChris Campbell <chriscampbell89@gmail.com>2014-02-23 12:29:21 +0000
commitfc6d5a5dec65f01f1e3bfbe51bda4e11f6b8dbc2 (patch)
tree24c516c8cdb90deb65fa4d0e439ed3e61850280b /crawl-ref/source/species.cc
parent0facf784ee4b832d74c53a9d3af1c36b4ec7ff12 (diff)
downloadcrawl-ref-fc6d5a5dec65f01f1e3bfbe51bda4e11f6b8dbc2.tar.gz
crawl-ref-fc6d5a5dec65f01f1e3bfbe51bda4e11f6b8dbc2.zip
Give Formicids 0 HP, 1 XP apt and remove poison vulnerability
The poison vulnerability did sometimes encourage unusual equipment choices but wasn't very interesting otherwise and was often problematic early on. The stasis is their central feature, and giving them more standard HP and XP apts lets them be more focused on that.
Diffstat (limited to 'crawl-ref/source/species.cc')
-rw-r--r--crawl-ref/source/species.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/crawl-ref/source/species.cc b/crawl-ref/source/species.cc
index 3d347c58cb..86601aa77d 100644
--- a/crawl-ref/source/species.cc
+++ b/crawl-ref/source/species.cc
@@ -432,11 +432,10 @@ int species_exp_modifier(species_type species)
{
switch (species) // table: Experience
{
- case SP_FORMICID:
- return 2;
case SP_HUMAN:
case SP_HALFLING:
case SP_KOBOLD:
+ case SP_FORMICID:
return 1;
case SP_HILL_ORC:
case SP_OGRE:
@@ -499,7 +498,6 @@ int species_hp_modifier(species_type species)
case SP_HALFLING:
case SP_OCTOPODE:
case SP_DJINNI:
- case SP_FORMICID:
return -1;
default:
return 0;