Esempio n. 1
0
 def __init__(self,
              name,
              creatures=None,
              north=None,
              east=None,
              south=None,
              west=None,
              region='',
              proba=50,
              preposition='',
              item=None,
              room_lvl=1,
              counter_max=10000,
              quest=quest_()):
     self.name = name
     self.north = north
     self.east = east
     self.south = south
     self.west = west
     self.proba = proba
     self.creatures = creatures
     self.item = item
     self.room_lvl = room_lvl
     self.counter_max = counter_max
     self.counter = 0
     self.quest = quest
     self.region = region
     self.preposition = preposition
Esempio n. 2
0
 def __init__(self, name, creatures=None, north=None, east=None, south=None, west=None, region='', proba=50, preposition='', item=None, room_lvl=1, counter_max=10000, quest=quest_()):
     self.name = name
     self.north = north
     self.east = east
     self.south = south
     self.west = west
     self.proba = proba
     self.creatures = creatures
     self.item = item
     self.room_lvl = room_lvl
     self.counter_max = counter_max
     self.counter = 0
     self.quest = quest
     self.region = region
     self.preposition = preposition
Esempio n. 3
0
arriving; food, clothes, metal and other important recources do not reach us!
The imperial guards have told us that there is a beast interupting the supply
lines coming from the Elanor. They think it must have a hive somewhere in the
mountains or in the dark forrest. %s, can you interrogate this ? We need help
'''
%
(hero.name))

quest_1_msg2 = ('''
%s.... oh my, I cannot believe that such a hideous beast even existed, thank you
very much, the city owes great thanks to you! May you have fortune on your climb!
'''
%
(hero.name))

quest_1a=quest_(name='the beat and the trail',step_1=quest_1_msg1,step_2=quest_1_msg2,quest_item_name='koobaks tooth',on=1)

quest_1b_msg1= '''
You walk over to the faul creature, the monster, and rip out one of its teeth as
proof of its immense size.
<return to the barracks>
'''
quest_1b_msg2='''Nothing but a terrible smell here'''


quest_1b=quest_(name='koobaks response',step_1=quest_1b_msg1,step_2=quest_1b_msg2,on=1)


"""
From line 93: setting the map
"""
Esempio n. 4
0
quest_1_msg1 = ('''
We have seen recently that many of the city's most precious supplies are not
arriving; food, clothes, metal and other important recources do not reach us!
The imperial guards have told us that there is a beast interupting the supply
lines coming from the Elanor. They think it must have a hive somewhere in the
mountains or in the dark forrest. %s, can you interrogate this ? We need help
''' % (hero.name))

quest_1_msg2 = ('''
%s.... oh my, I cannot believe that such a hideous beast even existed, thank you
very much, the city owes great thanks to you! May you have fortune on your climb!
''' % (hero.name))

quest_1a = quest_(name='the beat and the trail',
                  step_1=quest_1_msg1,
                  step_2=quest_1_msg2,
                  quest_item_name='koobaks tooth',
                  on=1)

quest_1b_msg1 = '''
You walk over to the faul creature, the monster, and rip out one of its teeth as
proof of its immense size.
<return to the barracks>
'''
quest_1b_msg2 = '''Nothing but a terrible smell here'''

quest_1b = quest_(name='koobaks response',
                  step_1=quest_1b_msg1,
                  step_2=quest_1b_msg2,
                  on=1)
"""