summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mutation.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-16 14:58:51 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-16 14:58:51 +0000
commit42acab0b7d5738062a3d4efc83002d9ad890381f (patch)
treee56f08883a15f1ee79ee5ff234512a25208b433e /crawl-ref/source/mutation.cc
parente2e74507bbc5ce16bad61bedc0bd881acdbea280 (diff)
downloadcrawl-ref-42acab0b7d5738062a3d4efc83002d9ad890381f.tar.gz
crawl-ref-42acab0b7d5738062a3d4efc83002d9ad890381f.zip
Don't change beam names for tracers. (Fixes 1994978.)
Clean up the vampire ability screen a bit. Special case naga bardings of running (according to makeitem.cc they can exist) to be called "naga barding of speedy slithering" instead. Yes, it's a hack, and yes, the name is rather unwieldy, but it makes more sense this way. I hope. :p git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5880 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/mutation.cc')
-rw-r--r--crawl-ref/source/mutation.cc35
1 files changed, 20 insertions, 15 deletions
diff --git a/crawl-ref/source/mutation.cc b/crawl-ref/source/mutation.cc
index 7b8a24976f..341eff36b7 100644
--- a/crawl-ref/source/mutation.cc
+++ b/crawl-ref/source/mutation.cc
@@ -1444,37 +1444,42 @@ static void _display_vampire_attributes()
std::string result;
- const int lines = 13;
+ const int lines = 14;
std::string column[lines][7] =
{
{" ", "<lightgreen>Alive</lightgreen> ", "<green>Full</green> ",
"Satiated ", "<yellow>Thirsty</yellow> ", "<yellow>Near...</yellow> ",
"<lightred>Bloodless</lightred>"},
- //Alive Full Satiated Thirsty Near... Bloodless
- {"Metabolism ", "very fast ", "fast ", "fast ", "normal ", "slow ", "none "},
+ //Alive Full Satiated Thirsty Near... Bloodless
+ {"Metabolism ", "very fast ", "fast ", "fast ", "normal ", "slow ", "none "},
- {"Regeneration ", "very fast ", "fast ", "normal ", "normal ", "slow ", "none "},
+ {"Regeneration ", "very fast ", "fast ", "normal ", "normal ", "slow ", "none "},
- {"Poison resistance ", " ", " ", " ", " + ", " + ", " + "},
+ {"Stealth boost ", "none ", "none ", "none ", "minor ", "major ", "large "},
- {"Cold resistance ", " ", " ", " ", " + ", " + ", " ++ "},
+ {"Spell hunger ", "full ", "full ", "full ", "halved ", "none ", "none "},
- {"Negative resistance ", " ", " ", " ", " + ", " ++ ", " +++ "},
+ {EOL EOL "<w>Resistances</w>" EOL
+ "Poison resistance ", " ", " ", " ", " + ", " + ", " + "},
- {"Torment resistance ", " ", " ", " ", " ", " ", " + "},
+ {"Cold resistance ", " ", " ", " ", " + ", " + ", " ++ "},
- {"Mutation chance ", "always ", "often ", "sometimes ", "never ", "never ", "never "},
+ {"Negative resistance ", " ", " ", " ", " + ", " ++ ", " +++ "},
- {"Non-physical " EOL
- "mutation effects ", "full ", "capped ", "capped ", "none ", "none ", "none "},
+ {"Torment resistance ", " ", " ", " ", " ", " ", " + "},
+
+ {EOL EOL "<w>Other effects</w>" EOL
+ "Mutation chance ", "always ", "often ", "sometimes ", "never ", "never ", "never "},
- {"Potion effects ", "full ", "full ", "full ", "halved ", "halved ", "halved"},
+ {"Non-physical " EOL
+ "mutation effects ", "full ", "capped ", "capped ", "none ", "none ", "none "},
- {"Bat Form ", "no ", "no ", "yes ", "yes ", "yes ", "yes "},
+ {"Potion effects ", "full ", "full ", "full ", "halved ", "halved ", "halved"},
- {"Stealth boost ", "none ", "none ", "none ", "minor ", "major ", "large "},
+ {"Bat Form ", "no ", "no ", "yes ", "yes ", "yes ", "yes "},
- {"Spell hunger ", "full ", "full ", "full ", "halved ", "none ", "none "}
+ {"Other transformation " EOL
+ "or going berserk ", "yes ", "yes ", "no ", "no ", "no ", "no "}
};
int current = 0;