aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/resources.h
diff options
context:
space:
mode:
authorPaul Gilbert2015-02-02 21:29:58 -0500
committerPaul Gilbert2015-02-02 21:29:58 -0500
commit3767f316195940bbe02a3f10e7139f0267197ce8 (patch)
tree111e1fc77ca320a4d7feeee12166855563ac4dfc /engines/xeen/resources.h
parent2b8303c0d8b54ee5251296c86a320735422b62e2 (diff)
downloadscummvm-rg350-3767f316195940bbe02a3f10e7139f0267197ce8.tar.gz
scummvm-rg350-3767f316195940bbe02a3f10e7139f0267197ce8.tar.bz2
scummvm-rg350-3767f316195940bbe02a3f10e7139f0267197ce8.zip
XEEN: Implemented calcItemCost
Diffstat (limited to 'engines/xeen/resources.h')
-rw-r--r--engines/xeen/resources.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/engines/xeen/resources.h b/engines/xeen/resources.h
index 4b08615520..4dae93e355 100644
--- a/engines/xeen/resources.h
+++ b/engines/xeen/resources.h
@@ -329,8 +329,10 @@ extern const char *const QUICK_REFERENCE;
extern const uint BLACKSMITH_MAP_IDS[2][4];
-extern char *const ITEMS_DIALOG_TEXT1;
-extern char *const ITEMS_DIALOG_TEXT2;
+extern const char *const ITEMS_DIALOG_TEXT1;
+extern const char *const ITEMS_DIALOG_TEXT2;
+extern const char *const ITEMS_DIALOG_LINE1;
+extern const char *const ITEMS_DIALOG_LINE2;
extern const char *const BTN_BUY;
extern const char *const BTN_SELL;
@@ -354,6 +356,14 @@ extern const char *const ARMOR_NAMES[14];
extern const char *const ACCESSORY_NAMES[11];
extern const char *const MISC_NAMES[22];
+extern const int WEAPON_BASE_COSTS[35];
+extern const int ARMOR_BASE_COSTS[25];
+extern const int ACCESSORY_BASE_COSTS[11];
+extern const int MISC_MATERIAL_COSTS[22];
+extern const int MISC_BASE_COSTS[76];
+extern const int METAL_BASE_MULTIPLIERS[22];
+extern const int ITEM_SKILL_DIVISORS[4];
+
} // End of namespace Xeen
#endif /* XEEN_RESOURCES_H */