Advertisement
Guest User

Untitled

a guest
Jan 16th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.53 KB | None | 0 0
  1. var bingoList = [];
  2. bingoList[1] = [
  3. { name: "Buy a Garden with all standard upgrades", types: [] }
  4. ];
  5. bingoList[2] = [
  6. { name: "Buy Heart Module Mk III", types: [] }
  7. ];
  8. bingoList[3] = [
  9. { name: "Buy a Coop with all standard upgrades", types: [] },
  10. { name: "Buy a Corral with all standard upgrades", types: [] },
  11. { name: "Buy 10 Vacpack upgrades", types: [] }
  12. ];
  13. bingoList[4] = [
  14. { name: "Pop the Quantum Gordo", types: [] }
  15. ];
  16. bingoList[5] = [
  17. { name: "1 Hen / 1 Elder / 1 Stony / 1 Briar / 1 Painted Hens in the same Silo", types: [] },
  18. { name: "Sell 20 Puddle Plorts", types: [] }
  19. ];
  20. bingoList[6] = [
  21. { name: "Pop the Rad Gordo", types: [] },
  22. ];
  23. bingoList[7] = [
  24. { name: "Have 1 Coop, 1 Corral, 1 Garden, 1 Incinerator, 1 Pond, 1 Silo in your ranch", types: [] }
  25. ];
  26. bingoList[8] = [
  27. { name: "1 farm of each plantable fruit in your ranch", types: [] }
  28. ];
  29. bingoList[9] = [
  30. { name: "1 farm of each plantable veggie in your ranch", types: [] },
  31. { name: "Pop the Dry Reef Tabby Gordo", types: [] }
  32. ];
  33. bingoList[10] = [
  34. { name: "Open the Ancient Gate", types: [] },
  35. { name: "You can only use a maximum of one Slime Key", types: [] }
  36. ];
  37. bingoList[11] = [
  38. { name: "Pop the Crystal Gordo", types: [] },
  39. { name: "Fill a Silo with 12 different foods", types: [] }
  40. ];
  41. bingoList[12] = [
  42. { name: "Pop 4 Gordos", types: ["gordos"] },
  43. { name: "Don't buy Tank Booster", types: ["restriction"] }
  44. ];
  45. bingoList[13] = [
  46. { name: "Pop the Ring Island Pink Gordo", types: [] },
  47. { name: "Sell 10 Tangle Plorts", types: [] }
  48. ];
  49. bingoList[14] = [
  50. { name: "Pop the Boom Gordo", types: [] },
  51. { name: "Don't buy any Power Core upgrades", types: ["restriction"] }
  52. ];
  53. bingoList[15] = [
  54. { name: "Pop 5 Gordos", types: ["gordos"] },
  55. { name: "Unlock the Overgrowth, the Grotto, and the Docks", types: [] }
  56. ];
  57. bingoList[16] = [
  58. { name: "Unlock the Lab", types: ["lab"] },
  59. { name: "1 Spicy Tofu", types: ["rangeexchange"] },
  60. { name: "Have 5 Corrals with completely different largos in each of them", types: [] }
  61. ];
  62. bingoList[17] = [
  63. { name: "Pop 6 Gordos", types: ["gordos"] },
  64. { name: "Pop the Hunter Gordo", types: [] },
  65. { name: "Complete 5 Range Exchange trades", types: ["rangeexchange"] }
  66. ];
  67. bingoList[18] = [
  68. { name: "Water 10 Oases", types: ["fountains"] },
  69. { name: "Fill a Silo with 12 different plorts", types: [] }
  70. ];
  71. bingoList[19] = [
  72. { name: "Don't vac up Pogofruits or Carrots", types: ["restriction"] },
  73. { name: "Pop 7 Gordos", types: ["gordos"] },
  74. { name: "1 Gilded Ginger", types: [] }
  75. ];
  76. bingoList[20] = [
  77. { name: "Have 1 Echo of each color in your ranch", types: [] },
  78. { name: "Activate 4 Desert Fountains", types: ["fountains"] }
  79. ];
  80. bingoList[21] = [
  81. { name: "Sell 1 Fire Plort", types: [] },
  82. { name: "Have 4 Slime Toys in your ranch", types: [] }
  83. ];
  84. bingoList[22] = [
  85. { name: "Pop 8 Gordos", types: ["gordos"] },
  86. { name: "Pop the Dervish Gordo with Prickle Pears exclusively", types: [] },
  87. { name: "Don't buy the Jetpack", types: ["restriction"] }
  88. ];
  89. bingoList[23] = [
  90. { name: "Pop the Tangle Gordo", types: [] },
  91. { name: "Pop the Mosaic Gordo with Silver Parsnips exclusively", types: [] }
  92. ];
  93. bingoList[24] = [
  94. { name: "Buy Treasure Cracker", types: ["lab"] },
  95. { name: "Complete 10 Range Exchange trades", types: ["rangeexchange"] }
  96. ];
  97. bingoList[25] = [
  98. { name: "Unlock Mochi's Extra Mile", types: ["rangeexchange"] },
  99. { name: "Create 5 total Apiarys, Drills, or Pumps", types: ["lab"] }
  100. ];
  101. $(function() { srl.bingo(bingoList, 5); });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement