Advertisement
Thousandpath

PHP code for shuffling the BD MG list

Nov 14th, 2013
703
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.27 KB | None | 0 0
  1. <?php
  2. $Personality = array("Shy", "Clingy", "Tomboy", "Ditzy", "Clumsy", "Tsundere", "Idol Singer", "Evil Genius", "Yandere", "Princess", "Gothic", "Kuudere", "Genki", "Queen", "Chaotic", "Bully", "Knight", "Ara-Ara", "Cake", "Cheerful", "Gentle", "Childhood Friend", "Class Rep", "Onee-san", "Domineering Girl", "Polite Deredere", "Ojou-sama", "Imouto", "Dandere", "NEET");
  3. $Species = array("Orc", "Vampire", "Angel", "Gorgon", "Ghost", "Cyclops", "Mantis", "Oomukade", "Hornet girl", "Yeti", "Witch", "Goddess", "Cecaelia", "Scylla(Doge)", "Succubus", "Alraune", "Mandragora", "Dryad", "Wolf girl", "Arachne", "Dwarf", "Tetra arms", "Elf", "Gynoid", "Cat girl", "Dullahan", "Deertaur", "Treant", "Lamia", "Harpy", "Djinn", "Efreet", "Mermaid", "Fairy", "Dragon girl", "Centaur", "Slime", "Yuki-Onna", "Kitsune", "Zombie", "Gnome", "Sylph", "Undine", "Ignis", "Salamander", "Lizard girl", "Imp", "Ushi-Oni", "Ogre", "Frog girl", "Naga", "Marilith", "Bat girl", "Ryuu", "Goblin", "Hobgoblin", "Oni", "Slug girl", "Bear girl", "Nightmare", "Unicorn", "Matango", "Manticore", "Bat girl", "Gargoyle", "Minotauros", "Troll", "Mimic", "Skeleton girl", "Lich", "Gazer", "Golem", "Basilisk", "Cockatrice", "Ant girl", "Kappa", "Garuda", "Behemoth", "Leviathan", "Ziz", "Apophis", "Anubis", "Lilim", "Bee girl", "Beelzebub", "Babhomet", "Faun", "Wererabbit", "Weresheep", "Nekomata", "Shirohebi", "Kikimora", "Sahuaqin", "Roper", "Khepri", "Alp", "Bicorn", "Charybdis", "Chochin-Obake", "Dark Matter", "Dark priest", "Devil", "Roach girl", "Doppelganger", "Echidna", "Ghoul", "Scorpion girl", "Tanuki", "Glacies", "Kesaran Pasaran", "Mouse girl", "Living doll", "Automata girl", "Wurm", "Mothman", "Mummy", "Nereid", "Siren", "Sea Bishop", "Sandworm", "Jellyfish girl", "Anglerfish girl", "Selkie", "Sphinx", "Thunderbird", "Wight", "Wyvern", "Shoggoth", "Tiger girl", "Damphir");
  4. $Month = array("December", "November", "October", "September", "August", "July", "June", "May", "April", "March", "February", "January");
  5.  
  6. shuffle($Personality);
  7. shuffle($Species);
  8.  
  9. $i = 1;
  10. while ($i < 13) {
  11. $P = array_pop($Personality);
  12. $M = array_pop($Month);
  13.  
  14. echo $M, " = ", $P, "<br />";
  15.  
  16. $i++;
  17. }
  18.  
  19. echo "<br />";
  20.  
  21. $o = 1;
  22. while ($o < 32) {
  23. $S = array_pop($Species);
  24.  
  25. echo $o, ". ", $S, "<br />";
  26.  
  27. $o++;
  28. }
  29. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement