summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/n3w5.py
blob: a99fd889e5c658d5388dbc092f3343d0b5aac4a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from weatbag import words
from weatbag.utils import transfer

class Tile:
    def __init__(self):
        self.challenge_completed = False
        
    def describe(self):
        print("\n")


    def action(self, player, do):
            print("\n")
                self.challenge_completed = True
            else:
                print("I don't understand.")