Advertisement
Zeriab

The way not to do it

Jan 13th, 2013
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 2.82 KB | None | 0 0
  1. $game_quests =
  2. [
  3.   ####################
  4.   ## THE MAIN QUEST ##
  5.   ####################
  6.   [
  7.     # Part 1
  8.     [ false, # Not completed
  9.       "mainquest1.png",
  10.       "Nephalie",
  11.       "Meet Mr. Khan",
  12.       "Nephalie told you that Mr. Khan wanted to see you.\n"+
  13.             "He will be waiting for you at the training grounds.\n"+
  14.             "Meet Mr. Khan at the Training Grounds",
  15.       [[]]
  16.     ],
  17.     # Part 2
  18.     [ false, # Not completed
  19.       "mainquest2.png",
  20.       "Mr. Khan",
  21.       "Training Grounds",
  22.       "Learn the fighting style of the monk",
  23.       "You met with Mr Khan\n" +
  24.             "He got a sparring partner for you to teach you some\n" +
  25.             "techniques and styles of the monk\n" +
  26.             "Part 2",
  27.       [["Switch", 2, true]]],
  28.     # The completed quest part
  29.     [ true, # Is completed
  30.       "mainquestCompleted.png",
  31.       "Death of the tyrant",
  32.       "Castle Dungeon",
  33.       "Kill the dark tyran",
  34.       "Congratulations!\n You have completed the main quest",
  35.       [
  36.         ["Variable", 4, "==", 8],
  37.         ["Switch", 6, false],
  38.         ["Switch", 27, true]
  39.       ]
  40.     ]
  41.   ],
  42.  
  43.   #-------------------------------#
  44.   # THE YELLOW-GLIMMER CAKE QUEST #
  45.   #-------------------------------#
  46.   [
  47.     # The first part
  48.     [
  49.       false, # Not completed
  50.       "",
  51.       "Mr. Bean",
  52.       "Mount Everest",
  53.       "The Yellow-Glimmer Cake",
  54.       "Mr. Beans has an insane craving for some very\n"+
  55.             "delicious cake. A cake only one baker is able to make.\n"+
  56.             "The problem is that this baker lives on a mountain far\n"+
  57.             "far away.\n"+
  58.             "Mr. Bean want you to travel to Mount Everest,\n"+
  59.             "contact the baker and return with the most\n"+
  60.             "delicious cake.\n"+
  61.             "Mr. Bean ask you to pick up some nice looking herbs\n"+
  62.             "if you find any while you travel.\n" +
  63.             "You must return with the Yellow-Glimmer Cake!",
  64.       [[]]
  65.     ],
  66.    
  67.     # The completed quest part
  68.     [
  69.       true, # Is completed
  70.       "subquest.png",
  71.       "Mr. Bean",
  72.       "Mount Everest",
  73.       "The Yellow-Glimmer Cake",
  74.       "You succesfully delivered the cake back to Mr. Bean\n"+
  75.             "Mr. Bean gave you a piece of the cake as a reward",
  76.       [["Variable", 9, ">=", 3]]
  77.     ]
  78.   ],
  79.  
  80.   #--------------------#
  81.   # Just another Quest #
  82.   #--------------------#
  83.   [
  84.     # The first part
  85.     [
  86.       false, # Not complete
  87.       "",
  88.       "Someone",
  89.       "Some place",
  90.       "A goal",
  91.       "Loads of info",
  92.       [["Variable",1,"<=",1]]
  93.     ],
  94.    
  95.     # The completed quest part
  96.     [
  97.       true, # Is completed
  98.       "subquest.png",
  99.       "Someone",
  100.       "Some place",
  101.       "A completed goal",
  102.       "Loads of completed info",
  103.       [["Switch", 8, true]]
  104.     ]
  105.   ]
  106. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement