summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/newgame.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-30 12:43:29 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-30 12:43:29 +0000
commit1b3a40038c2b77f62619053afcfd4223d39f2c5f (patch)
tree6bed126142c59a9c54dc091f106ddc6b5605c1d4 /crawl-ref/source/newgame.cc
parent10210317e5e2c2f49992a374363753043e01e1f2 (diff)
downloadcrawl-ref-1b3a40038c2b77f62619053afcfd4223d39f2c5f.tar.gz
crawl-ref-1b3a40038c2b77f62619053afcfd4223d39f2c5f.zip
Gave Spriggans slow metabolism:3 and a potion of porridge to start with (for playtest.)
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@742 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/newgame.cc')
-rw-r--r--crawl-ref/source/newgame.cc14
1 files changed, 11 insertions, 3 deletions
diff --git a/crawl-ref/source/newgame.cc b/crawl-ref/source/newgame.cc
index 6605907067..759222d881 100644
--- a/crawl-ref/source/newgame.cc
+++ b/crawl-ref/source/newgame.cc
@@ -600,8 +600,16 @@ bool new_game(void)
if (!you.inv[i].quantity)
{
you.inv[i].quantity = 1;
- you.inv[i].base_type = OBJ_FOOD;
- you.inv[i].sub_type = FOOD_BREAD_RATION;
+ if (you.species == SP_SPRIGGAN)
+ {
+ you.inv[i].base_type = OBJ_POTIONS;
+ you.inv[i].sub_type = POT_PORRIDGE;
+ }
+ else
+ {
+ you.inv[i].base_type = OBJ_FOOD;
+ you.inv[i].sub_type = FOOD_BREAD_RATION;
+ }
if (you.species == SP_HILL_ORC || you.species == SP_KOBOLD
|| you.species == SP_OGRE || you.species == SP_TROLL)
@@ -1766,7 +1774,7 @@ static void give_basic_mutations(unsigned char speci)
you.mutation[MUT_ACUTE_VISION] = 1;
you.mutation[MUT_FAST] = 3;
you.mutation[MUT_HERBIVOROUS] = 3;
- you.mutation[MUT_SLOW_METABOLISM] = 2;
+ you.mutation[MUT_SLOW_METABOLISM] = 3;
break;
case SP_CENTAUR:
you.mutation[MUT_FAST] = 1;