fixed some bugs in new 'g'o system
[k8-i-v-a-n.git] / src / game / items / scroll_encryptedscroll.cpp
blob90e60605afea9d25c4c2992d02fa0bd0fb010914
1 #ifdef HEADER_PHASE
2 ITEM(encryptedscroll, scroll)
4 public:
5 virtual void Be() { }
6 virtual truth Read(character*);
7 virtual truth ReceiveDamage(character*, int, int, int) { return false; }
8 virtual truth IsEncryptedScroll() const { return true; }
9 };
12 #else
16 truth encryptedscroll::Read(character*)
18 ADD_MESSAGE("You could never hope to decipher this top secret message. It is meant for Petrus's eyes only.");
19 return false;
21 #endif