summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/ng-setup.cc
diff options
context:
space:
mode:
authorSage <SageBasilMint@gmail.com>2013-12-18 20:32:19 +0000
committerNeil Moore <neil@s-z.org>2014-01-26 11:15:39 -0500
commitc7943516ac3da78c058d985d1899e0aa2985d36b (patch)
tree84883e9972b8157ac2afd366f81ce8ac0987af38 /crawl-ref/source/ng-setup.cc
parent3cf34dd1121524814733dcbbc05ed71159046617 (diff)
downloadcrawl-ref-c7943516ac3da78c058d985d1899e0aa2985d36b.tar.gz
crawl-ref-c7943516ac3da78c058d985d1899e0aa2985d36b.zip
Vine stalkers added.
Weirdness and Mutations: - Fangs II (Becomes III at xl8) - Antimagic bite (Much stronger than standard bite, bites every turn, applies antimagic brand, and restores your mana) - Potions and wands cannot restore your HP - Regen III - Unbreathing - Spirit shield - HP -3 - MP +1
Diffstat (limited to 'crawl-ref/source/ng-setup.cc')
-rw-r--r--crawl-ref/source/ng-setup.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/crawl-ref/source/ng-setup.cc b/crawl-ref/source/ng-setup.cc
index b1d981695b..41758fa74a 100644
--- a/crawl-ref/source/ng-setup.cc
+++ b/crawl-ref/source/ng-setup.cc
@@ -78,6 +78,7 @@ static void _species_stat_init(species_type which_species)
case SP_MERFOLK: s = 8; i = 7; d = 9; break; // 24
case SP_TENGU: s = 8; i = 8; d = 9; break; // 25
case SP_FORMICID: s = 12; i = 7; d = 6; break; // 25
+ case SP_VINE_STALKER: s = 10; i = 8; d = 9; break; // 27
case SP_KOBOLD: s = 7; i = 6; d = 10; break; // 23
case SP_HALFLING: s = 5; i = 8; d = 11; break; // 24
@@ -326,6 +327,13 @@ void give_basic_mutations(species_type speci)
case SP_DJINNI:
you.mutation[MUT_NEGATIVE_ENERGY_RESISTANCE] = 3;
break;
+ case SP_VINE_STALKER:
+ you.mutation[MUT_FANGS] = 2;
+ you.mutation[MUT_ANTIMAGIC_BITE] = 1;
+ you.mutation[MUT_REGENERATION] = 3;
+ you.mutation[MUT_MANA_SHIELD] = 1;
+ you.mutation[MUT_NO_DEVICE_HEAL] = 1;
+ break;
default:
break;
}