summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/hiscores.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2007-06-14 08:55:24 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2007-06-14 08:55:24 +0000
commit6dba2ac32df50d8a0d3628fbc65fb81825a96fdd (patch)
treec5db7daf782a95707f90fd4351e85c3dfa070b49 /crawl-ref/source/hiscores.cc
parent60f850418fc4a37a5f2eccec19a83065fa7769e5 (diff)
downloadcrawl-ref-6dba2ac32df50d8a0d3628fbc65fb81825a96fdd.tar.gz
crawl-ref-6dba2ac32df50d8a0d3628fbc65fb81825a96fdd.zip
Implemented Beogh, god of Orcs.
+ added information about random choice to newgame git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1585 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/hiscores.cc')
-rw-r--r--crawl-ref/source/hiscores.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/crawl-ref/source/hiscores.cc b/crawl-ref/source/hiscores.cc
index 6dcaad88da..4d72f3e42a 100644
--- a/crawl-ref/source/hiscores.cc
+++ b/crawl-ref/source/hiscores.cc
@@ -486,7 +486,7 @@ static const char *kill_method_names[] =
"quitting", "draining", "starvation", "freezing", "burning", "wild_magic",
"xom", "statue", "rotting", "targeting", "spore", "tso_smiting",
"petrification", "unknown", "something", "falling_down_stairs", "acid",
- "curare", "melting", "bleeding",
+ "curare", "melting", "bleeding", "bog_smiting",
};
const char *kill_method_name(kill_method_type kmt)
@@ -1717,6 +1717,11 @@ scorefile_entry::death_description(death_desc_verbosity verbosity) const
needs_damage = true;
break;
+ case KILLED_BY_BEOGH_SMITING:
+ desc += terse? "smote by Beogh" : "Smote by Beogh";
+ needs_damage = true;
+ break;
+
case KILLED_BY_PETRIFICATION:
desc += terse? "petrified" : "Turned to stone";
break;