summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/shopping.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-07 17:45:29 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-07 17:45:29 +0000
commit28e7f723dcc2427bcc1e43ccda8438a0eb05fd38 (patch)
tree1fbf957cab867ef4fcf9c4e60522f0bfcb179ef2 /crawl-ref/source/shopping.cc
parentbede06c9c6bcb25dead315de7778a16b7678a216 (diff)
downloadcrawl-ref-28e7f723dcc2427bcc1e43ccda8438a0eb05fd38.tar.gz
crawl-ref-28e7f723dcc2427bcc1e43ccda8438a0eb05fd38.zip
Rename the "blessed blade" the "blessed eudemon blade", so that the name
of the Blessed Blade artefact is unique. Also, attempt to add shopping values for the new blessed blades (these probably need adjustment). git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4909 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/shopping.cc')
-rw-r--r--crawl-ref/source/shopping.cc16
1 files changed, 10 insertions, 6 deletions
diff --git a/crawl-ref/source/shopping.cc b/crawl-ref/source/shopping.cc
index 30dc89f1f9..30cd1885d1 100644
--- a/crawl-ref/source/shopping.cc
+++ b/crawl-ref/source/shopping.cc
@@ -592,10 +592,13 @@ unsigned int item_value( item_def item, bool ident )
case WPN_LONG_SWORD:
case WPN_LONGBOW:
case WPN_SCIMITAR:
+ case WPN_BLESSED_FALCHION:
valued += 45;
break;
case WPN_SPIKED_FLAIL:
+ case WPN_BLESSED_LONG_SWORD:
+ case WPN_BLESSED_SCIMITAR:
valued += 50;
case WPN_HAND_CROSSBOW:
@@ -617,6 +620,7 @@ unsigned int item_value( item_def item, bool ident )
case WPN_BATTLEAXE:
case WPN_GREAT_MACE:
+ case WPN_EVENINGSTAR:
valued += 65;
break;
@@ -625,10 +629,6 @@ unsigned int item_value( item_def item, bool ident )
valued += 90;
break;
- case WPN_EVENINGSTAR:
- valued += 65;
- break;
-
case WPN_EXECUTIONERS_AXE:
valued += 100;
break;
@@ -647,9 +647,13 @@ unsigned int item_value( item_def item, bool ident )
break;
case WPN_KATANA:
- case WPN_TRIPLE_SWORD:
case WPN_DEMON_BLADE:
- case WPN_BLESSED_BLADE:
+ case WPN_TRIPLE_SWORD:
+ case WPN_BLESSED_KATANA:
+ case WPN_BLESSED_EUDEMON_BLADE:
+ case WPN_BLESSED_DOUBLE_SWORD:
+ case WPN_BLESSED_GREAT_SWORD:
+ case WPN_BLESSED_TRIPLE_SWORD:
case WPN_LAJATANG:
valued += 200;
break;