Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.23 KB | None | 0 0
  1. <?php
  2.  
  3. $num = rand(1,33);
  4. //echo "Test" + $num;
  5.  
  6. // And use the same switch statement we used before to achieve our desired result...
  7. switch ($num) {
  8. case 1:
  9. return "Snoopy was born on a dark and stormy night on the Daisy Hill Puppy Farm.";
  10. break;
  11. case 2:
  12. echo "Snoopy was the head beagle for about one month between February and March of 1970";
  13. break;
  14. case 3:
  15. echo "Snoopy was originally an \"only child\" in the 50s, but later had five siblings, which was later expanded to seven";
  16. break;
  17. case 4:
  18. echo "Snoopy was in love with Helen Sweetstory until he found out she had 24 pet cats";
  19. break;
  20. case 5:
  21. echo "Snoopy didn't want to be a bird sanctuary, but eventually, he became friends with Woodstock because he couldn't help him find his mother.";
  22. break;
  23. case 6:
  24. echo "Snoopy didn't ind out \"that stupid bird's name\" until like 1971";
  25. case 7:
  26. echo "Joe Cool won the very first Grand Prix on turn 2 of the first round. He flipped a Chaos Orb with such force that all other decks in the field were destroyed.";
  27. break;
  28. case 8:
  29. echo " Joe Cool controls his opponent when his opponent activates Mindslaver.";
  30. break;
  31. case 9:
  32. echo "Joe Cool won a Pro Tour with a deck of poker cards.";
  33. break;
  34. case 10:
  35. echo "Joe Cool taps out his opponent with a Power Sink for zero.";
  36. break;
  37. case 11:
  38. echo "Joe Cool won a Grand Prix with a 60-card Battle of Wits deck.";
  39. break;
  40. case 12:
  41. echo "Joe Cool once chump-attacked for lethal at a PTQ and won.";
  42. break;
  43. case 13:
  44. echo "Joe Cool sportingly reminds his opponent of his Pact trigger. He wins anyway because the opponent decides not to pay.";
  45. break;
  46. case 14:
  47. echo "Joe Cool is the reason you can't have food or beverage on a table at a Magic tournament. He has never lost with a Root Beer at his side.";
  48. break;
  49. case 15:
  50. echo "Eric Froehlich concedes to Joe Cool.";
  51. break;
  52. case 16:
  53. echo "Joe Cool won a World Series of Poker on a stone-cold bluff. His hole cards were a Perfect fit sleeve and a Clue token, both of which he revealed face up.";
  54. break;
  55. case 17:
  56. echo "Joe Cool resolves his spells through Chalice of the Void on MTGO.
  57. Joe Cool once beat pregame Leyline of the Void with his Manaless Dredge deck by mulliganing to zero. His opponent decked naturally.";
  58. break;
  59. case 18:
  60. echo "Bob Maher alters his Dark Confidants to bear the likeness of Joe Cool.";
  61. break;
  62. case 19:
  63. echo "Artists get their cards signed by Joe Cool at Grands Prix.";
  64. break;
  65. case 20:
  66. echo "Joe Cool is not concerned about a potential Sensei's Divining Top ban. His Counterbalances have countered every single spell with no manipulation whatsoever.";
  67. break;
  68. case 21:
  69. echo "Wizards of the Coast no longer prints cards with ante because of Joe Cool. By 1995, he had won ninety-six percent of every Magic: The Gathering card in circulation.";
  70. break;
  71. case 22:
  72. echo "Joe Cool taught Richard Garfield how to play Magic.";
  73. break;
  74. case 23:
  75. echo "Joe Cool concedes to his opponent at the end of extra turns when he is behind on board. However, he has never fallen behind on board, nor has he ever gone to time.";
  76. break;
  77. case 24:
  78. echo "Joe Cool plays with the freshest of cards. This includes a playset of Alpha Volcanic Islands.";
  79. break;
  80. case 25:
  81. echo "Joe Cool's Delvers of Secret always transform, usually into Nicol Bolas.";
  82. break;
  83. case 26:
  84. echo "Joe Cool regularly combos off his opponent on turn one. With Vintage Landstill.";
  85. break;
  86. case 27:
  87. echo "Joe Cool wears slick shades that allow him to read his opponent perfectly, even on Magic Online.";
  88. break;
  89. case 28:
  90. echo "Occasionally, an opposing True-Name Nemesis resolves against Joe Cool. However, they have never named him.";
  91. break;
  92. case 29:
  93. echo "Joe Cool gets fourty-two first picks in a regular booster draft.";
  94. break;
  95. case 30:
  96. echo "Joe Cool is the reason silver-bordered cards are not tournament legal. He wins immediately when he casts Avatar of Me.";
  97. break;
  98. case 31:
  99. echo "Joe Cool once lost the credit card game, so the restaurant canceled the bill.";
  100. break;
  101. case 32:
  102. echo "At the professional rules enforcement level, the head judge appeals to Joe Cool.";
  103. break;
  104. case 33:
  105. echo "Joe Cool has only punted one game in his entire career. It was a Shahrazad subgame so that he could play around Timely Reinforcements from his opponent in the main game.";
  106. break;
  107. }
  108.  
  109. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement