comparison skaapsteker/sprites/items.py @ 543:f36e7a885373

Add document altering
author Neil Muller <drnlmuller@gmail.com>
date Sun, 10 Apr 2011 00:39:24 +0200
parents d7f3329a6bf8
children 40a104ca0a69
comparison
equal deleted inserted replaced
542:fef3a942ea28 543:f36e7a885373
270 270
271 271
272 class Documents(Item): 272 class Documents(Item):
273 image_file = 'props/documents.png' 273 image_file = 'props/documents.png'
274 274
275 msg = "Let's see if they notice if I add a zero"
276
277 def player_action(self, player):
278 if not self.world.missions.kanedas_agreement_disrupted:
279 self.world.missions.kanedas_agreement_disrupted = True
280 notify(self.msg)
281
282
275 ################################################## 283 ##################################################
276 # Tails 284 # Tails
277 285
278 class Tail(Item): 286 class Tail(Item):
279 287