Esempio n. 1
0
 def read(self, universe):
     universe.print(
       "Ithkuil: Tram-mļöi hhâsmařpţuktôx.\n\n"
       "English: On the contrary, I think it may turn out that this "
       "rugged mountain range trails off at some point.\n\n"
       "As you read the book your mind briefly lingers on the memories of "
       "your childhood learning the intricacies of a language designed "
       "to make you think faster. The thinking was that if you learned at "
       "a young age it would be become the default language you would "
       "think in, enabling you to think faster.")
Esempio n. 2
0
 def eat(self, universe):
   universe.print("You eat the loaf of bread.")
Esempio n. 3
0
 def close(self, universe):
     self.is_open = False
     universe.print("You close the box.")
Esempio n. 4
0
 def open(self, universe):
     self.is_open = True
     universe.print("You open the box.")