Snuggledash

voicelines.php

Nov 27th, 2024 (edited)
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.22 KB | Source Code | 0 0
  1. <?php
  2. $voicelines = [
  3.  
  4. [ "name" => "The Well Stacked Pizza Co. guy (Ryder)",
  5.   "framing" => [ "joshRomek" ],
  6.   "lines" => [
  7.     "Chewy crust or sweaty crust, your choice sir!",
  8.     "What do you want?",
  9.     "Come on, just pick something!",
  10.     "Everything's well stacked, sir.",
  11.     "Choose from an aspiring range.",
  12.     "What would sir like?",
  13.     "What would you like, sir?",
  14.     "Oh? Uh, what would you like?",
  15.     "Choose a blend of cheese and fat, sir.",
  16.     "You want a pizza or what?"
  17.   ]
  18. ],
  19. [ "name" => "Binco lady (Nines and AK's)",
  20.   "framing" => [ "joshRomek", "haloge9BincoLady" ],
  21.   "lines" => [
  22.     "Hello!",
  23.     "Ooh! A customer!",
  24.     "How exhilarating to have you visit, sir.",
  25.     "Hi there!",
  26.     "Welcome, sir, welcome!",
  27.     "Welcome to my humble shop!",
  28.     "Come in, come in!",
  29.     "Hey, hi, welcome!"
  30.   ]
  31. ],
  32. [ "name" => "Ammu-Nation clerk (Small Town Bank)",
  33.   "framing" => [ "joshAngery" ],
  34.   "lines" => [
  35.     "All virtually legal and above board.",
  36.     "Don't you just love the smell of gun oil?",
  37.     "All top-quality pieces!",
  38.     "No ID required, friend.",
  39.     "Guns and ammo. All top-quality.",
  40.     "Everything you need to get even.",
  41.     "They all lost their serial numbers.",
  42.     "Ice your wife or stop a truck, I got what you need.",
  43.     "I got everything a real patriot could want.",
  44.     "I can meet all your home defense needs.",
  45.     "I have a piece for every occasion.",
  46.     "You hard yet?",
  47.     "Ain't my business what you do with it.",
  48.     "It's all fresh outta the crates.",
  49.     "You can legally own a gun."
  50.   ]
  51. ],
  52. [ "name" => "Cluckin' Bell cock (Monster 8x)",
  53.   "framing" => [ "joshRomek" ],
  54.   "lines" => [
  55.     "Cock-a-cluckle-doo, please place an order.",
  56.     "Well, aloh-a-doodle-doo.",
  57.     "Cluck, cluck, how may I serve you?",
  58.     "Cluckity fuck, place your order.",
  59.     "Cock-a-doodle-cluck, welcome.",
  60.     "It's all processed chicken ass.",
  61.     "How may I further degrade myself sir?",
  62.     "Yummy doodle-doo, how may I serve you?",
  63.     "Cock-a-doodle-doo, what do you want?"
  64.   ]
  65. ]
  66.  
  67. ];
  68.  
  69. $rng = new \Random\Randomizer();
  70.  
  71. header("Content-Type: text/plain; charset=utf-8");
  72. foreach ($voicelines as $vl) {
  73.     echo "{$vl["name"]}:\n";
  74.     $random_line = $rng->shuffleArray($vl["lines"])[0];
  75.     foreach ($vl["framing"] as $frame) {
  76.         echo "$frame $random_line $frame\n";
  77.     }
  78.     echo "\n";
  79. }
Add Comment
Please, Sign In to add comment