blob: d65886e9b4fa6c782d591a6da05ff1bb8a9d18c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
from weatbag import words
from weatbag.utils import transfer
class Tile:
def describe(self):
print("\n")
def action(self, player, do):
print("I don't understand.")
#sandy claws
|