diff options
author | Eugenio Favalli <elvenprogrammer@gmail.com> | 2005-02-25 18:09:30 +0000 |
---|---|---|
committer | Eugenio Favalli <elvenprogrammer@gmail.com> | 2005-02-25 18:09:30 +0000 |
commit | d855488fdc9830c00ed3ce71532cfd52316988f1 (patch) | |
tree | a241ce6d0da88148e9b9024ec8adbe16148aff0f /src/gui/shop.cpp | |
parent | 7369c775464aa9eae7a98bb935442b2fa2992f8e (diff) | |
download | mana-d855488fdc9830c00ed3ce71532cfd52316988f1.tar.gz mana-d855488fdc9830c00ed3ce71532cfd52316988f1.tar.bz2 mana-d855488fdc9830c00ed3ce71532cfd52316988f1.tar.xz mana-d855488fdc9830c00ed3ce71532cfd52316988f1.zip |
Fixing equipment and shops according to the new server script
Diffstat (limited to 'src/gui/shop.cpp')
-rw-r--r-- | src/gui/shop.cpp | 98 |
1 files changed, 97 insertions, 1 deletions
diff --git a/src/gui/shop.cpp b/src/gui/shop.cpp index 77e33ee0..7509d480 100644 --- a/src/gui/shop.cpp +++ b/src/gui/shop.cpp @@ -23,6 +23,8 @@ #include "shop.h" +// TODO: replace it with item database + char *item_db[] = { "Cactus Drink", "Cactus potion", @@ -34,5 +36,99 @@ char *item_db[] = { "Xmas Cake", "Chocolate", "Candy", - "Santa Hat" + "Santa Hat", + + "","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + + // 601 + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + + // 701 + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + + // 801 + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + + // 901 + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + + // 1001 + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + + // 1101 + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + + // 1201 + "Knife","Cotton Shirt","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", + "","","","","","","","","","", }; |