Advertisement
Mili-NT

Untitled

Dec 24th, 2021
1,144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 7.97 KB | None | 0 0
  1. RoomOne = Room(RoomNumber=1, RoomDescription="""Blast marks and dark stains litter the walls of this room.
  2. In the center lies a robed skeleton grasping a blue potion""", RoomDirections="There are doors to the [S]outh and [E]ast",
  3.                RoomEnemy="none", RoomContents="Mana Potion")
  4.  
  5. RoomTwo = Room(RoomNumber=2, RoomDescription="A bare stone room, with a single clay golem wandering on the far side.",
  6.                RoomDirections="There are doors to the [N]orth and [E]ast", RoomEnemy="Golem", RoomContents="none")
  7.  
  8. RoomThree = Room(RoomNumber=3, RoomDescription="There is a foul muck covering the floor. A group of corpses lie in the center"
  9.                  " of the room, strangely positioned. From the far side of the room, you feel a foul presence.",
  10.                  RoomDirections=" is a door to the [E]ast.", RoomEnemy="Hunting Horror", RoomContents="Talisman")
  11.  
  12. RoomFour = Room(RoomNumber=4,  RoomDescription="Damaged and collapsed shelves decorate the walls, and overturned cauldrons and shattered "
  13.                   "flasks litter the floor. It appears to be an ancient alchemical storeroom",
  14.                   RoomDirections="There are doors to the [S]outh and [E]ast", RoomEnemy="none", RoomContents="Health Potion")
  15.  
  16. RoomFive = Room(RoomNumber=5, RoomDescription=""" The room is littered with the bodies of fallen Lesser Spawn. In the center,
  17.         the corpse of a long dead warrior clutches an ornate tome. Between you and the tome stands a Moon-Beast.""",
  18.          RoomDirections="There are doors to the [N]orth and [E]ast", RoomEnemy="Moon-Beast", RoomContents="Ornate Tome")
  19.  
  20. RoomSix = Room(RoomNumber=6, RoomDescription="This room is barren and nondescript, with only a few skeletons to keep you company.",
  21.               RoomDirections="There are doors to the [S]outh, [E]ast, and [W]est", RoomEnemy="none", RoomContents="none")
  22.  
  23. RoomSeven = Room(RoomNumber=7, RoomDescription=""" The room is empty, save for a lone pedestal holding an ancient
  24. scroll. Before you reach the pedestal, a thick tar-like liquid flows from the walls and amasses into a horrible shape.""",
  25. RoomDirections="There are doors to the [N]orth, [S]outh, [E]ast, and [W]est", RoomEnemy="Shoggoth", RoomContents="Ancient Scroll")
  26.  
  27. RoomEight = Room(RoomNumber=8, RoomDescription="You see bare stone room, with a single Lesser Spawn on the far side.",
  28.                  RoomDirections="There are doors to the [N]orth, [S]outh, [E]ast, and [W]est", RoomEnemy="Lesser Spawn", RoomContents="none")
  29.  
  30. RoomNine = Room(RoomNumber=9, RoomDescription="This room is barren and nondescript, with only a few skeletons to keep you company.",
  31.                  RoomDirections="There are doors to the [S]outh, [E]ast, and [W]est", RoomEnemy="none", RoomContents="none")
  32.  
  33. RoomTen = Room(RoomNumber=10,  RoomDescription="Damaged and collapsed shelves decorate the walls, and overturned cauldrons and shattered "
  34.                    "flasks litter the floor. It appears to be an ancient alchemical storeroom",
  35.                    RoomDirections="There are doors to the [N]orth and [W]est", RoomEnemy="none", RoomContents="Mana Potion")
  36.  
  37. RoomEleven = Room(RoomNumber=11, RoomDescription="You see bare stone room, with a single clay golem wandering on the far side.",
  38.                   RoomDirections="There are doors to the [S]outh, [W]est, and [E]ast", RoomEnemy="Golem", RoomContents="none")
  39.  
  40. RoomTwelve = Room(RoomNumber=12,  RoomDescription="Damaged and collapsed shelves decorate the walls, and overturned cauldrons and shattered"
  41.                    " flasks litter the floor. It appears to be an ancient alchemical storeroom",
  42.                    RoomDirections="There are doors to the [N]orth, [S]outh, [E]ast, and [W]est.", RoomEnemy="none", RoomContents="Health Potion")
  43.  
  44. RoomThirteen = Room(RoomNumber=13, RoomDescription="""You see a barren room made of ancient stone riddled with moss and pockmarks.
  45.                  There seems to be no enemies or items in this room.""",
  46.                   RoomDirections="There are door to the [N]orth, [S]outh, [E]ast, and [W]est", RoomEnemy="none", RoomContents="none")
  47.  
  48. RoomFourteen = Room(RoomNumber=14, RoomDescription="You see bare stone room, with a single clay golem wandering on the far side.",
  49.                   RoomDirections="There are doors to the [N]orth, [S]outh, [W]est, and [E]ast", RoomEnemy="Golem", RoomContents="none")
  50.  
  51. RoomFifteen = Room(RoomNumber=15, RoomDescription="""This room is large and ornate, with carvings of every sort adorning the walls.
  52.                  In the center is a large pedestal with a single Silver Key laying upon it""",
  53.                   RoomDirections="There is a door to the [N]orth", RoomEnemy="none", RoomContents="Silver Key")
  54.  
  55. RoomSixteen = Room(RoomNumber=16, RoomDescription="This room is barren and nondescript, with only a few skeletons to keep you company.",
  56.                   RoomDirections="There are doors to the [S]outh, [E]ast, and [W]est", RoomEnemy="none", RoomContents="none")
  57.  
  58. RoomSeventeen = Room(RoomNumber=17, RoomDescription="You see bare stone room, with a single Lesser Spawn on the far side.",
  59.                   RoomDirections="There are doors to the [N]orth, [S]outh, [E]ast, and [W]est", RoomEnemy="Lesser Spawn", RoomContents="none")
  60.  
  61. RoomEighteen = Room(RoomNumber=18, RoomDescription="You see bare stone room, with a single clay golem wandering on the far side.",
  62.                   RoomDirections="There are doors to the [N]orth, [S]outh, [W]est, and [E]ast", RoomEnemy="Golem", RoomContents="Health Potion")
  63.  
  64. RoomNineteen = Room(RoomNumber=19, RoomDescription="This room is barren and nondescript, with only a few skeletons to keep you company.",
  65.                   RoomDirections="There are doors to the [N]orth, [S]outh, [E]ast, and [W]est", RoomEnemy="none", RoomContents="none")
  66.  
  67. RoomTwenty = Room(RoomNumber=20, RoomDescription="You see bare stone room, with a single Lesser Spawn on the far side.",
  68.                   RoomDirections="There are doors to the [N]orth and [E]ast", RoomEnemy="Lesser Spawn", RoomContents="none")
  69.  
  70. RoomTwentyOne = Room(RoomNumber=21, RoomDescription="""A stale wind sweeps past you as you enter the room. On the far side there is a pedestal "
  71.                  "with an strange book upon it. You have a feeling that you are not alone.""",
  72.                   RoomDirections="There are doors to the [S]outh and [W]est", RoomEnemy="Flying Polyp", RoomContents="Cursed Tome")
  73.  
  74. RoomTwentyTwo = Room(RoomNumber=22, RoomDescription="This room is barren and nondescript, with only a few skeletons to keep you company.",
  75.                   RoomDirections="There are doors to the [N]orth and [W]est", RoomEnemy="none", RoomContents="none")
  76.  
  77. RoomTwentyThree = Room(RoomNumber=23, RoomDescription="As the door creaks open, you see a rift open aon the far side of the"
  78.                   "room. A horrifying figure emerges.", RoomDirections="There is a door to the [W]est",
  79.                   RoomEnemy="Dimensional Shambler", RoomContents="Ancient Spellbook")
  80.  
  81. RoomTwentyFour = Room(RoomNumber=24, RoomDescription="You see bare stone room, with a single Lesser Spawn on the far side.",
  82.                   RoomDirections="There are doors to the [S]outh and [W]est", RoomEnemy="Lesser Spawn", RoomContents="none")
  83.  
  84. RoomTwentyFive = Room(RoomNumber=25,  RoomDescription="Damaged and collapsed shelves decorate the walls, and overturned cauldrons and shattered"
  85.                    " flasks litter the floor. It appears to be an ancient alchemical storeroom",
  86.                    RoomDirections="There are doors to the [N]orth and [W]est", RoomEnemy="none", RoomContents="Health Potion")
  87. RoomTwentySix = Room(RoomNumber=26, RoomDescription=Fore.RED + Style.BRIGHT + Back.RED +  """
  88.  
  89.                                        You find yourself in the endless abyss
  90.  
  91.                                        THE AVATAR OF NYARLATHOTEP HAS AWOKEN
  92.  
  93. """ + Style.RESET_ALL,
  94.                      RoomDirections=Fore.WHITE + "There are no doors, there is no escape. Defeat your enemy.",
  95.                      RoomEnemy="unspeakable sight", RoomContents="None")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement