Advertisement
Sir_VG

Legend of Mana Bingo

Jan 21st, 2014
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Legend of Mana IMAMYTH Bingo
  2. // version 1.0
  3. // last updated 01.21.2014
  4. // created by Sir VG
  5. // for questions or suggestions pm Sir VG at forum.speeddemosarchive.com
  6.  
  7. var bingoList = [];
  8.  
  9. // MAJOR GOALS
  10. bingoList[1] = [
  11.  { name: "Complete The Crimson Dragon", types: ["dragon"] }
  12. ];
  13. bingoList[2] = [
  14.  { name: "Complete Heaven's Gate", types: ["faerie"] }
  15. ];
  16. bingoList[3] = [
  17.  { name: "Complete Teardrop Crystal", types: ["jumi"] }
  18. ];
  19. bingoList[4] = [
  20.  { name: "Place 23/26 Artifacts", types: ["artifacts"] }
  21. ];
  22. bingoList[5] = [
  23.  { name: "Complete Gilbert: Resume for Love", types: ["gilbert"] }
  24. ];
  25.  
  26. // MINOR GOALS
  27. bingoList[6] = [
  28.  { name: "Complete Watts Drops the Hammer", types: ["watts"] }
  29. ];
  30. bingoList[7] = [
  31.  { name: "Complete Professor Bomb's Lab", types: ["bombslab"] }
  32. ];
  33. bingoList[8] = [
  34.  { name: "Complete The Blessed Elixir", types: ["elixir"] }
  35. ];
  36. bingoList[9] = [
  37.  { name: "Complete A Siren's Song", types: ["siren"] },
  38.  { name: "Complete Where's Putty", types: ["putty"] }
  39. ];
  40. bingoList[10] = [
  41.  { name: "Complete The Treasure Map", types: ["treasure"] },
  42.  { name: "Complete The Nordic Snowfield", types: ["snowfield"] }
  43. ];
  44.  
  45. // COLLECTING DROPS (SLOTS 3/4)
  46. bingoList[11] = [
  47.  { name: "Get a Wishbone", types: [] },
  48.  { name: "Get a SpiralClaw", types: [] }
  49. ];
  50. bingoList[12] = [
  51.  { name: "Get a PegasusHelm", types: [] },
  52.  { name: "Get a Juggernaut", types: [] }
  53. ];
  54. bingoList[13] = [
  55.  { name: "Get a BraveBlade", types: [] },
  56.  { name: "Get a TrueSpear", types: [] }
  57. ];
  58. bingoList[14] = [
  59.  { name: "Get a DestinyDice", types: [] },
  60.  { name: "Get a GigasGlove", types: [] }
  61. ];
  62. bingoList[15] = [
  63.  { name: "Get a Caduceus", types: [] },
  64.  { name: "Get a HealingClaw", types: [] }
  65. ];
  66.  
  67. // COLLECTING DROPS (SLOTS 5/6) - USE POLTERBOX
  68. bingoList[16] = [
  69.  { name: "Get a Little Eye", types: [] },
  70.  { name: "Get a Giant's Horn", types: [] }
  71. ];
  72. bingoList[17] = [
  73.  { name: "Get a Angel Feather", types: [] },
  74.  { name: "Get a Zombie Claw", types: [] }
  75. ];
  76. bingoList[18] = [
  77.  { name: "Get a Bloody Mask", types: [] },
  78.  { name: "Get a GigasFlail", types: [] }
  79. ];
  80. bingoList[19] = [
  81.  { name: "Get a Deathstroke", types: [] },
  82.  { name: "Get a Stargazer", types: [] }
  83. ];
  84. bingoList[20] = [
  85.  { name: "Get a HolyGlove", types: [] },
  86.  { name: "Get a NinjasCharm", types: [] }
  87. ];
  88.  
  89. // TASKS
  90. bingoList[21] = [
  91.  { name: "Learn Back-Roll", types: [] },
  92.  { name: "Learn Evade", types: [] },
  93.  { name: "Learn Slide", types: [] },
  94.  { name: "Learn Taunt", types: [] }
  95. ];
  96. bingoList[22] = [
  97.  { name: "Learn Whirl", types: [] },
  98.  { name: "Learn Counterstrike", types: [] },
  99.  { name: "Learn Double Jump", types: [] }
  100. ];
  101. bingoList[23] = [
  102.  { name: "Learn 2 Knife Techniques", types: [] },
  103.  { name: "Learn 2 Hammer Techniques", types: [] },
  104.  { name: "Learn 2 Spear Techniques", types: [] },
  105.  { name: "Learn 2 1H Axe Technique", types: [] },
  106.  { name: "Learn 2 1H Sword Technique", types: [] }
  107. ];
  108. bingoList[24] = [
  109.  { name: "Learn 2 Flail Techniques", types: [] },
  110.  { name: "Learn 2 Staff Techniques", types: [] },
  111.  { name: "Learn 2 Bow Techniques", types: [] },
  112.  { name: "Learn 2 2H Axe Techniques", types: [] },
  113.  { name: "Learn 2 2H Sword Technique", types: [] }
  114. ];
  115. bingoList[25] = [
  116.  { name: "Collect 10 Produce", types: [] },
  117.  { name: "Get 5 Pets", types: [] },
  118.  { name: "Learn 5 Abilities", types: [] },
  119.  { name: "Learn 5 Techniques", types: [] }
  120. ];
  121.  
  122. $(function() { srl.bingo(bingoList, 5); });
  123.  
  124.  
  125.  
  126. /////////////////////////////////////////////////////////////////////////////////////////////
  127. /////////////////////////////////////////////////////////////////////////////////////////////
  128. /*
  129.  
  130. NOTES:
  131. * All bingo games end after the results screen from killing the Mana Goddess.
  132.  
  133. ITEM CLARIFICATIONS:
  134. * Learn 5 Abilities: Your starting 8 abilities obviously don't count. Any ability learned in-game is OK.
  135.  
  136. * For learning techniques, if a technique can be used on multiple weapon types, the ability counts for all of them (Rising Crush, Rising Sun, etc). However it only counts as 1 technique for "Learn 5 Techniques".
  137.  
  138. * Get 5 Pets: You must find and hatch the egg. Roaming enemy monster partners don't count.
  139.  
  140. * Collect 10 Produce: Collect 10 items from either Home's Orchard or The Orchard.
  141.  
  142. * Complete [X] Event: Failing it doesn't count as completing it. You must see THE END after the event.
  143.  
  144. * Place Artifacts: 23 was chosen because it allows you to skip the two long game storyline artifacts
  145. (AF Brooch of Love, AF Jumi's Staff) and AF Golden Seed. However, any of these 3 artifacts DO
  146. count towards the 23 total.
  147.  
  148. * Using a Polterbox for the Item Drop tasks is perfect OK. In fact, the author EXPECTS you to have
  149. one for the Slot 5/6 drops. It's also OK to use for the Slot 3/4 drop ones as well.
  150.  
  151. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement