summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/makeitem.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-01 11:50:21 -0600
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-01 11:51:07 -0600
commitfde948014517c0486207e6b369e777502f2e5511 (patch)
tree9bc5586a4b158cc316692f337b9f25cb76bc586a /crawl-ref/source/makeitem.cc
parent1fb4a8139f535478e97e7b2fda9c81208b586804 (diff)
downloadcrawl-ref-fde948014517c0486207e6b369e777502f2e5511.tar.gz
crawl-ref-fde948014517c0486207e6b369e777502f2e5511.zip
Add various color-related fixes.
Diffstat (limited to 'crawl-ref/source/makeitem.cc')
-rw-r--r--crawl-ref/source/makeitem.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/crawl-ref/source/makeitem.cc b/crawl-ref/source/makeitem.cc
index 860c464539..b51cdb41a7 100644
--- a/crawl-ref/source/makeitem.cc
+++ b/crawl-ref/source/makeitem.cc
@@ -747,13 +747,15 @@ void item_colour(item_def &item)
break;
// This one is hardly unique, but colour isn't used for
- // stacking, so we don't have to worry too much about this. -- bwr
- case RUNE_DEMONIC: // random pandemonium demonlords
+ // stacking, so we don't have to worry too much about this.
+ // - bwr
+ case RUNE_DEMONIC: // random Pandemonium lords
{
element_type types[] =
{ETC_EARTH, ETC_ELECTRICITY, ETC_ENCHANT, ETC_HEAL,
ETC_BLOOD, ETC_DEATH, ETC_UNHOLY, ETC_VEHUMET, ETC_BEOGH,
- ETC_CRYSTAL, ETC_SMOKE, ETC_DWARVEN, ETC_ORCISH, ETC_GILA};
+ ETC_CRYSTAL, ETC_SMOKE, ETC_DWARVEN, ETC_ORCISH, ETC_GILA,
+ ETC_KRAKEN, ETC_UGLY, ETC_VERY_UGLY};
item.colour = RANDOM_ELEMENT(types);
break;