summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/n4w7.py
blob: 81afafb1f4730ed020838ae10c5de6453c7ebd33 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from weatbag import words
from weatbag.utils import transfer

class Tile:
    def __init__(self):
        self.challenge_completed = False
        
    def describe(self):
        if not self.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")
            self.challenge_completed = True
        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):
            if do[0] in words.use and do[1] == "mice" and do[2]=="cream":
                if player.has("cream") and player.has("mice"):
                    player.take("cream")
                    player.take("mice")
                    player.give("mice cream")
                    print("Balls of tasty omnom mice cream fall from your "
                         "hands! The kittens look sooooo pleased!")
                else:
                    print("You'll need some mice and some cream.")

    def leave(self, player, direction):
        if direction == "s":
            print("It's the open sea. You can't go anywhere near by "
                  "swimming.\n")
            return False
        elif direction == "w":
            print("It's the open sea. You can't go anywhere near by "
                  "swimming.\n")
            return False
        else:
            return True

test_items = ['mice', 'cream']