summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/n4w7.py
blob: d2e4e76fcdcca092f6858a7e2d5e99cdc7196202 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from weatbag import words
from weatbag.utils import transfer

class Tile:

    def __init__(self):
        self.challenge_completed = False
        
    def describe(self):
        if challenge_completed:
            print("The only thing around this place is sand, small rocks, the "
                  "beach waters and about a dozen of kitties playing around.\n"
                  "You aproach the kitties and to your surprise they all start "
                  "rubbing at your legs and mewing! What is even more "
                  "surprising is that your brain understands and translates "
                  "meaws into words!\n"
                  "You can clearly hear them say:\n"
                  "'PLZ SIR, IT VRY HAWT HEER, CAN U TREAT US SUM  MICE "
                  "CREAM?! ALL U NED IZ 2 COMBINE SUM MICE AN SUM CREAM AN "
                  "READY IT IZ! PLEEEEASE!' *mieaw* *rub* *rub*\n")
        else:
            print("The only thing around this place is sand, small rocks, the "
                  "beach waters and about a dozen of kitties playing around.\n")

    def action(self, player, do):
        print("Sorry, I don't understand.\n")
        
        
test_items = ['mice', 'cream']