Advertisement
Guest User

Untitled

a guest
Jan 25th, 2012
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.39 KB | None | 0 0
  1. <root>
  2.     <room
  3.         name = "empty room"
  4.         image = "rooms/roomempty.png"
  5.         description = "The most basic type of room, if you could really call it that. Just an empty space wanting to become more."
  6.         cost = "0"
  7.     >
  8.         <job name = "rest" />
  9.         <job name = "whore" />
  10.         <job name = "lockdown" />
  11.         <job name = "cleaning" />
  12.     </room>
  13.  
  14.     <room
  15.         name = "dark room"
  16.         image = "rooms/roomdark.png"
  17.         description = "A room designed for hiding from the light."
  18.         cost = "60"
  19.     >
  20.         <job name = "rest" />
  21.         <job name = "whore" />
  22.         <job name = "meditate" />
  23.         <job name = "fortune telling" />
  24.     </room>
  25.    
  26.     <room
  27.         name = "dungeon"
  28.         image = "rooms/roomdungeon.png"
  29.         description = "A room designed to teach your slave obedience, or to satisfy your desires."
  30.         cost = "40"
  31.     >
  32.         <job name = "sexual lockdown" />
  33.         <job name = "lockdown" />
  34.     </room>
  35.    
  36.     <room
  37.         name = "kitchen"
  38.         image = "rooms/roomkitchen.png"
  39.         description = "A room designed for making food."
  40.         cost = "80"
  41.     >
  42.         <job name = "rest" />
  43.         <job name = "cooking" />
  44.         <job name = "cleaning" />
  45.     </room>
  46.    
  47.     <room
  48.         name = "milking parlor"
  49.         image = "rooms/roommilkingparlor.png"
  50.         description = "A room designed specifically for milking a lactating girl."
  51.         cost = "40"
  52.     >
  53.         <job name = "rest" />
  54.         <job name = "milking" />
  55.         <job name = "cleaning" />
  56.     </room>
  57.    
  58.     <room
  59.         name = "music room"
  60.         image = "rooms/roommusic.png"
  61.         description = "A room designed to allow the slave to practice her musical skills without annoying other people in the house."
  62.         cost = "100"
  63.     >
  64.         <job name = "rest" />
  65.         <job name = "singing practice" />
  66.         <job name = "dancing practice" />
  67.         <job name = "instrument practice" />
  68.         <job name = "cleaning" />
  69.     </room>
  70.    
  71.     <room
  72.         name = "stables"
  73.         image = "rooms/roomstables.png"
  74.         description = "A room originally designed for the housing of farm animals. It continues that trend if you're trying to raise an animal, rather than a human."
  75.         cost = "40"
  76.     >
  77.         <job name = "rest" />
  78.         <job name = "treat like a cow" />
  79.         <job name = "treat like a pony girl" />
  80.         <job name = "treat like a pig" />
  81.         <job name = "lockdown" />
  82.     </room>
  83.    
  84.     <room
  85.         name = "studio"
  86.         image = "rooms/roomstudio.png"
  87.         description = "A room designed to allow the growth of an artist and the creation of art."
  88.         cost = "100"
  89.     >
  90.         <job name = "rest" />
  91.         <job name = "drafting practice" />
  92.         <job name = "painting practice" />
  93.         <job name = "sculpting practice" />
  94.         <job name = "cleaning" />
  95.     </room>
  96. </root>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement