forked from InfoProjekt/game
Development #2
1 changed files with 8 additions and 7 deletions
15
viecher.py
15
viecher.py
|
|
@ -96,9 +96,9 @@ class Convo(Label):
|
||||||
self.npc = npc
|
self.npc = npc
|
||||||
self.convo_scene = convo_scene
|
self.convo_scene = convo_scene
|
||||||
self.convos = [
|
self.convos = [
|
||||||
['oldlady', 0, ['There are so many rats here.', 'I wish someone would to something against that','An experienced fighter could just kill them.', 'For them it only takes a mouseclick.']],
|
['oldlady', 0, ['There are so many rats here.', 'I wish someone would to something against that.','An experienced fighter could kill them.', 'For them it only takes a mouseclick.']],
|
||||||
['oldlady', 1, ['Oh, did you kill all the rats?', 'You must be the chosen one', 'It would be nice if you would go and talk to the old wise man in the house.']],
|
['oldlady', 1, ['Oh, did you kill all the rats?', 'You must be the chosen one!', 'It would be nice if you would go and talk to the old wise man in the house.']],
|
||||||
['oldman', 0, ['Please help', 'there are so many bad people']]
|
['oldman', 0, ['Who are you?', 'You want to help us?', 'We have a serious problem with some monsters.', 'One day they appeared out of nowhere and started attacking.', 'When you jump into the portal outside,', 'You will be send to some monsters.', 'PLEASE help us!']]
|
||||||
]
|
]
|
||||||
|
|
||||||
def draw(self, screen):
|
def draw(self, screen):
|
||||||
|
|
@ -343,11 +343,12 @@ class Book():
|
||||||
self.sp_list = spells
|
self.sp_list = spells
|
||||||
self.current_sp = current_spell
|
self.current_sp = current_spell
|
||||||
self.text_left = ["Dear User, ", "in case you fell on the ground too hard,", "here is a quick reminder:",
|
self.text_left = ["Dear User, ", "in case you fell on the ground too hard,", "here is a quick reminder:",
|
||||||
"You are a homeless person.","One cold day you went to the library to get warm.",
|
"You are a homeless person. One cold day","you went to the library to warm up yourself.",
|
||||||
"There you saw and opened me out of boedom.", "This lead to you being thrown in this world.",
|
"There you got bored and found and opened me.", "This lead to you being thrown into this world.",
|
||||||
"But you can find a way out of here again."]
|
"But you can find a way out of here again."]
|
||||||
self.text_right = ["This book will help you to survive.", "Click on a picture to choose your spell.",
|
self.text_right = ["This book will help you to survive.", "You can open and close me when pressing e.",
|
||||||
"Talk to fairies to unlock new spells!"]
|
"Click on a picture to choose your spell.",
|
||||||
|
"Talk to fairies to unlock new spells!"]
|
||||||
self.buttons=[]
|
self.buttons=[]
|
||||||
self.buttons_y = 400
|
self.buttons_y = 400
|
||||||
self.buttons_x = 800
|
self.buttons_x = 800
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue