示例#1
0
 def __init__(self, x, y):
     super().__init__(x=x, y=y, name="APM Terminal A",
                      description="A medium-sized room with a track in the center surrounded by benches. "
                                  "A tablet rests on a stand at the end of the track. A horrible smell is coming "
                                  "from the Terra Communications Room, which is locked by a large mechanical lock.",
                      connected=["IntegrationRoom", "Garage", "TerraCommunicationsRoom"],
                      items=[items.Bench(), items.Tablet(), items.TcrLock()])
示例#2
0
 def __init__(self, x, y):
     super().__init__(
         x=x,
         y=y,
         name="APM Terminal B",
         connected=["HallA"],
         description=
         "The APM track runs the length of the West end of the room. There are benches and "
         "a waiting area to the East where a tablet sits.",
         items=[items.Tablet(), items.Bench()])
示例#3
0
 def __init__(self, x, y):
     super().__init__(
         x=x,
         y=y,
         name="Booth 2",
         connected=["SpiritualCenter"],
         description=
         "A cramped, soundproof booth barely big enough to fit a small bench and a little "
         "leg-room. It's no larger than your bedroom closet back on Terra.",
         items=items.Bench(description="A tiny wooden bench."))
示例#4
0
 def __init__(self, x, y):
     super().__init__(
         x=x,
         y=y,
         name="APM Terminal C",
         connected=["MainHall"],
         description="The APM enters this curved room from its western "
         "side. Just right of the track is a tablet on a stand. Nearby "
         "are some benches.",
         items=[i.Tablet(), i.Bench()])