123456789101112131415161718192021222324252627282930313233343536373839 |
- abstract: no
- script :~
- ### The following rproto was generated by redit.
- ### If you edit this script, adhere to the stylistic
- ### conventions laid out by redit, or delete the top line
-
- ### string values
- me.name = "By the Fireplace"
- me.terrain = "Inside"
- me.desc = me.desc + " " + " There is a large fireplace here, burning away merrily. Many people are here, scattered around it at various tables. The warmth of the fire is quite soothing, and you can't help but feel like sitting down and relaxing by its warmth. To the northeast, you see a small entertainment stage which is empty at the moment. To the east, there are a few more open tables to sit at, and to the southeast is the bar which seems to be filling up rather quickly. To the south is a rather dark corner of the tavern that does not look too inviting. "
-
- ### extra descriptions
- me.edesc("stage", " There is a small entertainment stage to the northeast. It looks empty at the moment. ")
- me.edesc("corner", " The southwest corner looks rather dark. There are a couple people sitting over there, but most are alone and do not look like they want to be disturbed. ")
- me.edesc("bar", " You see the bar off to the southeast. It looks like it is filling up rather quickly. ")
- me.edesc("fire, fireplace", " It blazes bright and warm. The heat it gives off is rather soothing, and you can't help but feel relaxed around it. ")
-
- ### begin exit: south
- exit = me.dig("south", "dark_corner")
- exit.desc = " It is a rather dark corner of the tavern. There are a couple people sitting over there. Most seem to be alone, and not too inviting of company. "
- ### end exit
-
- ### begin exit: northeast
- exit = me.dig("northeast", "by_stage")
- exit.desc = " The entertainment stage is directly to the northeast. Currently, it looks empty. "
- ### end exit
-
- ### begin exit: east
- exit = me.dig("east", "tavern_entrance")
- exit.desc = " You see a couple tables scattered about. Some have people sitting at them, but most appear to be empty. "
- ### end exit
-
- ### begin exit: southeast
- exit = me.dig("southeast", "the_bar")
- exit.desc = " The bar looks like it has attacted quite the crowd. However, you can still spot a couple open seats along it. "
- exit.leave_mssg = "$n makes $s way to the bar."
- ### end exit
- -
|