feasel

SMW Short Bingo Code

Oct 11th, 2011
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Super Mario World Bingo - Short
  2. // Version 2.0
  3. // Updated 11/23/2011
  4. // By feasel, dram55, dunnius, zozoken and bonesawwwwww
  5. // For questions or suggestions pm feasel at irc.metroid2002.com
  6.  
  7. var bingoList = [];
  8.  
  9. // GAME-LENGTH TASK
  10. bingoList[1] = [
  11.  { name: "5 moons", types: ["cape3","moons"] },  //17+1
  12.  { name: "Get mushroom from red berries on 3 stages", types: ["redberry"] }, //17+1
  13.  { name: "10 keyhole exits", types: [] },  //18
  14.  { name: "Defeat 4 Koopa Kids with only fireballs", types: ["koopakids"] } // 18
  15. ];
  16. bingoList[2] = [
  17.  { name: "Get a star from 5 multi-powerup boxes", types: ["multipowerup"] },  //18
  18.  { name: "Beat Forest Fortress, taking the far Reznor door", types: ["cape2"] },  //18
  19.  { name: "Get a hidden 1-up in 5 worlds", types: ["hidden1up"] }, //18
  20.  { name: "Get 1-up from pink-berry cloud on 3 stages", types: ["pinkberry"] } //18+1
  21. ];
  22. bingoList[3] = [
  23.  { name: "Open 3 star roads from the non-star-world side", types: [] },  // 18
  24.  { name: "6 bonus rooms", types: ["bonusrooms"] },  //18+1
  25.  { name: "2 Reznors", types: [] }  //19
  26. ];
  27. bingoList[4] = [
  28.  { name: "4 swimming stages", types: [] },  //19
  29.  { name: "Hatch a yoshi in 6 worlds", types: ["hatch"] },
  30.  { name: "11 keyhole exits", types: [] }  //??
  31. ];
  32. bingoList[5] = [
  33.  { name: "Open crossing paths in Forest Of Illusion", types: [] },  //19
  34.  { name: "Chocolate Island 1 - small mario no yoshi", types: [] },  //19
  35.  { name: "Defeat 5 Koopa Kids", types: ["koopakids"] }  //19
  36. ];
  37.  
  38. // OTHER TASK
  39. bingoList[6] = [
  40.  { name: "3 special worlds", types: [] },  //10+1?
  41.  { name: "4 moons", types: ["moons"] }  //12+1
  42. ];
  43. bingoList[7] = [
  44.  { name: "3 star-block 1-ups", types: [] },  //12+1
  45.  { name: "Open 2 star roads from the non-star-world side", types: [] }  // ?
  46. ];
  47. bingoList[8] = [
  48.  { name: "Hatch a yoshi in 5 worlds", types: ["hatch"] },
  49.  { name: "5 ghost house exits", types: [] }  //13
  50. ];
  51. bingoList[9] = [
  52.  { name: "Get a hidden 1-up in 4 worlds", types: ["hidden1up"] }, //14
  53.  { name: "Defeat 3 Koopa Kids with only fireballs", types: ["koopakids"] }, // 14
  54.  { name: "Defeat 4 Koopa Kids", types: ["koopakids"] }  //15
  55. ];
  56. bingoList[10] = [
  57.  { name: "4 bonus rooms", types: ["bonusrooms"] },  //15+1
  58.  { name: "Get a star from 4 multi-powerup boxes", types: ["multipowerup"] }  //16
  59. ];
  60.  
  61. // COLLECTION TASK
  62. bingoList[11] = [
  63.  { name: "50 coins on 5 stages", types: [] }
  64. ];
  65. bingoList[12] = [
  66.  { name: "5 yoshi coins on 2 stages (Yoshi's Island)", types: [] },
  67.  { name: "5 yoshi coins on 2 stages (Donut Plains)", types: [] }
  68. ];
  69. bingoList[13] = [
  70.  { name: "5 yoshi coins on 2 stages (Vanilla Dome)", types: [] },
  71.  { name: "Get 1-up from pink-berry cloud on 2 stages", types: ["pinkberry"] }
  72. ];
  73. bingoList[14] = [
  74.  { name: "5 yoshi coins on 2 stages (Twin Bridges)", types: [] },
  75.  { name: "Get mushroom from red berries on 2 stages", types: ["redberry"] }
  76. ];
  77. bingoList[15] = [
  78.  { name: "5 yoshi coins on 2 stages (Star/Special World)", types: [] },
  79.  { name: "5 yoshi coins on 2 stages (Forest Of Illusion)", types: [] }
  80. ];
  81.  
  82. // CHALLENGE 1
  83. bingoList[16] = [
  84.  { name: "Vanilla Secret 2 - small mario no yoshi", types: [] },  //
  85.  { name: "Butter Bridge 2 - small mario no yoshi", types: [] },  //
  86.  { name: "Butter Bridge 2 - pacifist, no cape", types: [] },  //
  87.  { name: "Butter Bridge 2 - coinless, no cape", types: [] }  //
  88. ];
  89. bingoList[17] = [
  90.  { name: "Castle 2 - use springboard to reach top platform", types: [] },  //
  91.  { name: "Yoshi's Island 4 - coinless, no cape", types: [] },  //
  92.  { name: "Donut Plains 3 - coinless, no cape", types: [] },  //
  93.  { name: "Forest Of Illusion 1 - small mario no yoshi no star", types: [] }  //
  94. ];
  95. bingoList[18] = [
  96.  { name: "Vanilla Dome 1 normal exit - no star", types: [] },  //
  97.  { name: "Vanilla Dome 2 normal exit - small mario no star", types: [] }, //
  98.  { name: "Vanilla Dome 4 - small mario no yoshi", types: [] }  //
  99. ];
  100. bingoList[19] = [
  101.  { name: "Vanilla Dome 4 - coinless, no cape", types: [] },  //
  102.  { name: "Vanilla Secret 1 secret exit - no blue switch, no flying", types: [] },  //
  103.  { name: "Soda Lake - small mario no yoshi", types: [] },  //
  104.  { name: "Yoshi's Island 3 - coinless, no cape", types: [] }  //
  105. ];
  106. bingoList[20] = [
  107.  { name: "Star World 1 - time 287+", types: [] },  //
  108.  { name: "Forest Of Illusion 3 - pacifist, no cape", types: [] },  //?
  109.  { name: "Cheese Bridge - coinless, no cape", types: [] }, //?
  110.  { name: "Cheese Bridge secret exit - no yoshi", types: ["cape1"] }  //
  111. ];
  112.  
  113. // CHALLENGE 2
  114. bingoList[21] = [
  115.  { name: "Perfect matching game (8-up)", types: [] },  //
  116.  { name: "Butter Bridge 1 - get 4 lives from turtles", types: [] },  //
  117.  { name: "99 lives", types: [] },   //
  118.  { name: "Blue Switch - get 8 silver coins", types: [] }  //
  119. ];
  120. bingoList[22] = [
  121.  { name: "Green Switch - get 3 lives from turtles", types: [] }, //
  122.  { name: "Yellow Switch - get 300 coins", types: [] }, //
  123.  { name: "Donut Secret 2 - all coins in balloon area", types: [] }, //?
  124.  { name: "Beat Vanilla Fortress, taking the first pipe", types: [] }  //
  125. ];
  126. bingoList[23] = [
  127.  { name: "NO CAPE", types: ["cape1","cape2","cape3"] },
  128.  { name: "NO YOSHI", types: ["redberry","pinkberry"] }
  129. ];
  130. bingoList[24] = [
  131.  { name: "Butter Bridge 2 - kill X red capes with fireballs", types: [] },  //
  132.  { name: "Kill a magikoopa", types: [] },  //
  133.  { name: "Cookie Mountain - small mario no yoshi", types: [] },  //
  134.  { name: "Forest Ghost House - small mario", types: [] }  //
  135. ];
  136. bingoList[25] = [
  137.  { name: "Donut Plains 2 - kill 13 bats with fireballs", types: [] },  // +1
  138.  { name: "Vanilla Secret 2 - coinless, no cape", types: [] },  //
  139.  { name: "Red Switch - get 3 lives from turtles", types: [] },   //
  140.  { name: "Beat Forest Of Illusion 4 - don't get Lakitu 1-up; no flying", types: [] }   //
  141. ];
  142.  
  143. $(function() { srl.bingo(bingoList, 5); });
  144.  
  145.  
  146. // Rules are here:  http://deanyd.net/smw/index.php?title=Bingo_Rules
Add Comment
Please, Sign In to add comment