summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemprop.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-19 22:41:11 -0600
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-19 22:53:56 -0600
commit9626e74a031ee6694aaf46605cadf6d485c2f82a (patch)
tree37e96c2680c8bda1abf3127f9a5d781a958ddaf0 /crawl-ref/source/itemprop.cc
parent9c717124d2f48858824a1bfdf3fe4ff62f223e72 (diff)
downloadcrawl-ref-9626e74a031ee6694aaf46605cadf6d485c2f82a.tar.gz
crawl-ref-9626e74a031ee6694aaf46605cadf6d485c2f82a.zip
Rename blessed eudemon blades to holy eudemon blades.
This is shorter, consistent with the other demon-converted weapon, and consistent with its always getting the holy wrath brand.
Diffstat (limited to 'crawl-ref/source/itemprop.cc')
-rw-r--r--crawl-ref/source/itemprop.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/itemprop.cc b/crawl-ref/source/itemprop.cc
index d700b753d8..e61dc42617 100644
--- a/crawl-ref/source/itemprop.cc
+++ b/crawl-ref/source/itemprop.cc
@@ -260,7 +260,7 @@ static weapon_def Weapon_prop[NUM_WEAPONS] =
{ WPN_DEMON_BLADE, "demon blade", 13, -1, 15, 200, 4,
SK_LONG_BLADES, HANDS_ONE, SIZE_MEDIUM, MI_NONE, false,
DAMV_SLICING, 2 },
- { WPN_BLESSED_EUDEMON_BLADE, "blessed eudemon blade", 14, -2, 14, 200, 4,
+ { WPN_HOLY_EUDEMON_BLADE, "holy eudemon blade", 14, -2, 14, 200, 4,
SK_LONG_BLADES, HANDS_ONE, SIZE_MEDIUM, MI_NONE, false,
DAMV_SLICING, 0 },
{ WPN_DOUBLE_SWORD, "double sword", 15, -2, 16, 220, 5,
@@ -1324,7 +1324,7 @@ int weapon_rarity( int w_type )
case WPN_BLESSED_LONG_SWORD:
case WPN_BLESSED_SCIMITAR:
case WPN_BLESSED_KATANA:
- case WPN_BLESSED_EUDEMON_BLADE:
+ case WPN_HOLY_EUDEMON_BLADE:
case WPN_BLESSED_DOUBLE_SWORD:
case WPN_BLESSED_GREAT_SWORD:
case WPN_BLESSED_TRIPLE_SWORD:
@@ -1510,7 +1510,7 @@ bool is_blessed(const item_def &item)
case WPN_BLESSED_LONG_SWORD:
case WPN_BLESSED_SCIMITAR:
case WPN_BLESSED_KATANA:
- case WPN_BLESSED_EUDEMON_BLADE:
+ case WPN_HOLY_EUDEMON_BLADE:
case WPN_BLESSED_DOUBLE_SWORD:
case WPN_BLESSED_GREAT_SWORD:
case WPN_BLESSED_TRIPLE_SWORD:
@@ -1566,7 +1566,7 @@ bool convert2good(item_def &item, bool allow_blessed)
if (!allow_blessed)
item.sub_type = WPN_SCIMITAR;
else
- item.sub_type = WPN_BLESSED_EUDEMON_BLADE;
+ item.sub_type = WPN_HOLY_EUDEMON_BLADE;
break;
case WPN_KATANA:
@@ -1633,7 +1633,7 @@ bool convert2bad(item_def &item)
item.sub_type = WPN_SCIMITAR;
break;
- case WPN_BLESSED_EUDEMON_BLADE:
+ case WPN_HOLY_EUDEMON_BLADE:
item.sub_type = WPN_DEMON_BLADE;
break;