big steppy
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

2121 行
91 KiB

  1. 'use strict';
  2. /*jshint browser: true*/
  3. var rules = {};
  4. var defaults = {};
  5. function plural(quantity, singular, plural) {
  6. return quantity > 1 ? plural : singular;
  7. }
  8. function getDefault(name) {
  9. let tokens = name.split("-");
  10. for (let i=0; i<tokens.length; i++) {
  11. tokens[i] = tokens[i].charAt(0).toUpperCase() + tokens[i].slice(1);
  12. }
  13. let funcName = "default" + tokens.join("");
  14. return window[funcName];
  15. }
  16. function getDefaultVictim(name) {
  17. let tokens = name.split("-");
  18. for (let i=0; i<tokens.length; i++) {
  19. tokens[i] = tokens[i].charAt(0).toUpperCase() + tokens[i].slice(1);
  20. }
  21. let funcName = "default" + tokens.join("");
  22. return window[funcName];
  23. }
  24. var action_keys = ["eat","chew","vomit","stomp","stomp-wedge","flex-toes","kick","anal-vore","ass-crush","ass-grind","tail-slap","tail-vore","tails-vore","cleavage-stuff","cleavage-crush","cleavage-drop","cleavage-absorb","breast-crush","breast-vore","breast-milk","unbirth","sheath-stuff","sheath-clench","sheath-crush","sheath-absorb","foreskin-stuff","foreskin-clench","foreskin-crush","foreskin-absorb","cock-vore","cockslap","ball-smother","male-spurt","male-orgasm","female-spurt","female-orgasm","grind","pouch-stuff","pouch-rub","pouch-eat","pouch-absorb","soul-vore","soul-absorb-paw","paw-stench","ass-stench","piss-stench","scat-stench","male-orgasm-musk","female-orgasm-musk","male-spurt-musk","female-spurt-musk","belch","fart","stomach","tail","tail-to-stomach","womb","balls","bowels","bowels-to-stomach","breasts","bladder","soul-digest","wings","wings-to-stomach","wear-shoe","remove-shoe","wear-sock","remove-sock","stuff-shoe","dump-shoe","stuff-sock","dump-sock","piss","bladder-vore","scat","sheath-toy","foreskin-toy","slit-toy","breast-toy","melt","solidify","flood","stomp-goo","goo-digest","ass-goo","goo-stomach-pull","goo-stomach-push","goo-bowels-pull","goo-bowels-push","goo-womb-pull","goo-womb-push","goo-balls-pull","goo-balls-push","goo-breasts-pull","goo-breasts-push","goo-tail-pull","goo-tail-push","goo-paws-pull","goo-paws-push","paw-vore","paw-vore-toes","paws","crop-swallow","crop-transfer","breath-fire","breath-ice","breath-electric","breath-smoke","breath-radiation","breath-foul","drool","magic-shrink","magic-hypnotize","wings-flap","wings-vore"];
  25. var victim_keys = ["victim-cum-flood", "victim-femcum-flood", "victim-stomped", "victim-flex-toes", "victim-eaten", "victim-ass-crush", "victim-ass-ground", "victim-humped", "victim-vomit", "victim-chew", "victim-drool", "victim-anal-vore", "victim-tail-slap", "victim-tail-vore", "victim-cock-slap", "victim-cock-vore", "victim-ball-smother", "victim-sheath-crush", "victim-sheath-absorb", "victim-foreskin-crush", "victim-foreskin-absorb", "victim-cum-flood", "victim-male-spurt-musk", "victim-male-orgasm-musk", "victim-unbirth", "victim-femcum-flood", "victim-female-spurt-musk", "victim-female-orgasm-musk", "victim-breast-crush", "victim-cleavage-crush", "victim-cleavage-absorb", "victim-cleavage-drop", "victim-milk-flood", "victim-breast-vore", "victim-pouch-absorb", "victim-soul-digest", "victim-soul-paw", "victim-paw-stench", "victim-ass-stench", "victim-gas-belch", "victim-gas-fart", "victim-piss", "victim-bladder-vore", "victim-piss-stench", "victim-scat", "victim-scat-stench", "victim-goo", "victim-paw-vore", "victim-breath-fire", "victim-breath-ice", "victim-breath-electric", "victim-breath-smoke", "victim-breath-radiation", "victim-breath-foul", "victim-wings-flap", "victim-wings-vore"]
  26. for (let i=0; i<action_keys.length; i++) {
  27. rules[action_keys[i]] = [];
  28. }
  29. function isNonFatal(macro) {
  30. return macro.brutality == 0;
  31. }
  32. function isFatal(macro) {
  33. return macro.brutality >= 1;
  34. }
  35. function isGory(macro) {
  36. return macro.brutality >= 2;
  37. }
  38. function isSadistic(macro) {
  39. return macro.brutality >= 3;
  40. }
  41. function hasNothing(container, thing, amount) {
  42. for (var key in container.contents) {
  43. if (container.contents.hasOwnProperty(key))
  44. return false;
  45. }
  46. return true;
  47. }
  48. function hasLessThan(container, thing, amount) {
  49. if (container.contents.hasOwnProperty(thing))
  50. if (container.contents[thing].count < amount && container.contents[thing].count > 0)
  51. return true;
  52. return false;
  53. }
  54. function hasExactly(container, thing, amount) {
  55. if (!container.contents.hasOwnProperty(thing) && amount == 0)
  56. return true;
  57. if (container.contents.hasOwnProperty(thing) && container.contents[thing].count == amount)
  58. return true;
  59. return false;
  60. }
  61. function hasOnly(container, things) {
  62. if (!hasNothingElse(container, things))
  63. return false;
  64. for (var i=0; i<things.length; i++) {
  65. if (!container.contents.hasOwnProperty(things[i]))
  66. return false;
  67. }
  68. return true;
  69. }
  70. function hasNothingElse(container, things) {
  71. for (var key in container.contents) {
  72. if (container.contents.hasOwnProperty(key))
  73. if (!things.includes(key))
  74. return false;
  75. }
  76. return true;
  77. }
  78. function nothingLarger(container, thing) {
  79. for (var key in container.contents)
  80. if (container.contents.hasOwnProperty(key))
  81. if (areas[key] > areas[thing])
  82. return false;
  83. return true;
  84. }
  85. function describe(action, container, macro, verbose=true, flat=false) {
  86. var options = [];
  87. for (var i = 0; i < rules[action].length; i++) {
  88. if(rules[action][i].test(container,macro)) {
  89. options.push(rules[action][i].desc);
  90. }
  91. }
  92. if (flat) {
  93. container = flatten(container);
  94. }
  95. if (options.length > 0 && Math.random() > (1 / (2 + rules[action].length))) {
  96. let choice = Math.floor(Math.random() * options.length);
  97. return options[choice](container, macro, verbose, flat);
  98. }
  99. else {
  100. return getDefault(action)(container, macro, verbose, flat);
  101. }
  102. }
  103. function describeVictim(action, macro) {
  104. return getDefaultVictim(action)(macro);
  105. }
  106. // DEFAULTS
  107. function defaultEat(container, macro, verbose, flat) {
  108. if (container.count == 0)
  109. return "You reach down for a delicious treat and grab - oh, nothing.";
  110. else
  111. return "You scoop up " + container.describe(verbose) + " and swallow " + (container.count > 1 ? "them" : "it") + " whole.";
  112. }
  113. function defaultChew(container, macro, verbose, flat) {
  114. let pronoun = (container.count > 1 ? "them" : "it");
  115. if (container.count == 0)
  116. return "You reach down for a delicious treat and grab - oh, nothing.";
  117. else if (isSadistic(macro))
  118. return "Your greedy fingers gather up " + container.describe(verbose) + ", stuffing " + pronoun + " into your " + macro.jawDesc(true) + ". A slow, lazy bite " + macro.biteDesc(true) + " " + pronoun + ", rending flesh, snapping bone, and crushing everything between your savage " + macro.jawDesc(true) + ". You tip back your head and swallow...consigning the gory remains to your roiling gut.";
  119. else if (isNonFatal(macro))
  120. return defaultEat(container, macro, verbose, flat);
  121. else {
  122. return "You scoop up " + container.describe(verbose) + " and " + macro.biteDesc() + " " + pronoun + " with your " + macro.jawDesc(true) + ", then swallow them down.";
  123. }
  124. }
  125. function defaultVomit(container, macro, verbose, flat) {
  126. if (container.count == 0) {
  127. return "You retch, but nothing happens.";
  128. } else if (isSadistic(macro)) {
  129. return "You gag and lean over, vomiting up " + container.describeSimple(flat) + ". A thick, hissing slurry of molten meat and acid drenches your still-writhing prey, searing flesh and ensuring their wretched, rancid deaths.";
  130. } else if (isGory(macro)) {
  131. return "You retch and vomit up " + container.describeSimple(flat) + ", spewing them out amidst a thick slurry of chyme and leaving them to melt.";
  132. } else if (isFatal(macro)) {
  133. return "You vomit up " + container.describeSimple(flat) + ", leaving them to stew in your stomach juices.";
  134. } else {
  135. return "You hack up " + container.describeSimple(flat) + ".";
  136. }
  137. }
  138. function defaultStomp(container, macro, verbose, flat) {
  139. if (container.count == 0)
  140. return "Your " + macro.footDesc() + " thumps the ground.";
  141. else if (isSadistic(macro))
  142. return "Your " + macro.footDesc(false) + " comes down on " + container.describe(verbose) + ", crushing your prey into gore and rubble with ease as your " + macro.toeDesc(true) + " shear bone and snap metal.";
  143. else if (isFatal(macro))
  144. return "You crush " + container.describe(verbose) + " under" + macro.footDesc(false,false,true) + ".";
  145. else
  146. return "You step on " + container.describe(verbose) + ".";
  147. }
  148. function defaultStompWedge(container, macro, verbose, flat) {
  149. if (container.count == 1) {
  150. let line = container.describe(verbose);
  151. line = line.charAt(0).toUpperCase() + line.slice(1);
  152. return line + " is wedged in your " + macro.toeDesc(true);
  153. } else {
  154. let line = container.describe(verbose);
  155. line = line.charAt(0).toUpperCase() + line.slice(1);
  156. return line + " are wedged in your " + macro.toeDesc(true);
  157. }
  158. }
  159. function defaultFlexToes(container, macro, verbose, flat) {
  160. if (container.count == 0) {
  161. if (macro.footShoeWorn) {
  162. return "You flex your " + macro.toeNoShoeDesc(true) + " inside your " + macro.footDesc(true) + ".";
  163. } else {
  164. return "You flex your " + macro.toeDesc(true) + ".";
  165. }
  166. } else {
  167. if (macro.footShoeWorn || macro.footSockWorn) {
  168. if (macro.brutality == 0) {
  169. return "You clench your " + macro.toeNoShoeDesc(true) + ", grinding them against the " + container.describeSimple(flat) + " trapped between your " + macro.footDesc(true) + " and your " + macro.toeOnlyDesc(true) + ".";
  170. } else {
  171. return "You clench your " + macro.toeNoShoeDesc(true) + ", crushing " + container.describeSimple(flat) + " between your " + macro.footDesc(true) + " and your " + macro.toeOnlyDesc(true) + ".";
  172. }
  173. } else {
  174. if (macro.brutality == 0) {
  175. return "You flex your " + macro.toeNoShoeDesc(true) + ", causing " + container.describeSimple(flat) + " to tumble out and fall to the ground.";
  176. } else {
  177. return "You flex and squeeze your " + macro.toeNoShoeDesc(true) + ", crushing " + container.describeSimple(flat) + " between them.";
  178. }
  179. }
  180. }
  181. }
  182. function defaultKick(container, macro, verbose, flat) {
  183. if (container.count == 0)
  184. return "You swing your mighty " + macro.footDesc() + "..and hit nothing.";
  185. else
  186. return "You punt " + container.describe(verbose) + ", destroying " + (container.count > 1 ? "them" : "it") + ".";
  187. }
  188. function defaultAnalVore(container, macro, verbose, flat) {
  189. if (container.count == 0)
  190. return "You're pretty sure you just sat on a rock.";
  191. else
  192. return "You sit yourself down on " + container.describe(false) + ". " + (container.count > 1 ? "They slide" : "It slides") + " inside with ease.";
  193. }
  194. function defaultAssCrush(container, macro, verbose, flat) {
  195. let count = get_living_prey(container.sum());
  196. if (container.count == 0)
  197. return "You take a seat. It's good to have a break!";
  198. else if (isSadistic(macro))
  199. return "You lower your heavy ass to the ground, biting your lip as you feel " + container.describe(verbose) + " collapse beneath your massive cheeks. " + (count > 1 ? count + " lives are" : "A life is") + " snuffed out as you settle down, grinding your ass into the remains before slowly rising back up.";
  200. else if (isFatal(macro))
  201. return "Your heavy ass obliterates " + container.describe(verbose) + ". ";
  202. else
  203. return "You sit on " + container.describe(verbose);
  204. }
  205. function defaultAssGrind(container, macro, verbose, flat) {
  206. if (container.count == 0) {
  207. return "You rub your ass on a wall.";
  208. } else {
  209. return "You grind your ass against " + container.describe(verbose) + ", flattening " + (container.count == 1 ? "it" : "them") + " under your weight.";
  210. }
  211. }
  212. function defaultTailSlap(container, macro, verbose, flat) {
  213. if (container.count == 0)
  214. return "Your " + (macro.tailCount > 1 ? "tails swing" : "tail swings") + " to and fro";
  215. else if (isFatal(macro))
  216. return "Your " + macro.describeTail + (macro.tailCount > 1 ? " tails swing" : " tail swings") + " into " + container.describe(verbose) + ", smashing everything in " +
  217. (macro.tailCount > 1 ? "their" : "its") + " path.";
  218. else
  219. return "Your " + macro.describeTail + (macro.tailCount > 1 ? " tails slap" : " tail slaps") + " against " + container.describe(verbose) + ", bowling them over.";
  220. }
  221. function defaultTailVore(container, macro, verbose, flat) {
  222. if (container.count == 0)
  223. return "Your drooling tail swings to and fro";
  224. else if (isFatal(macro))
  225. return "Your tail lunges, maw agape, at " + container.describe(verbose) +
  226. ". It scarfs down everything in seconds, gulping forcefully to drag your prey into your sloppy confines.";
  227. else
  228. return "Your tail lunges, maw agape, at " + container.describe(verbose) +
  229. ". It scarfs down everything in a second, gulping forcefully and pulling your prey inside.";
  230. }
  231. function defaultTailsVore(container, macro, verbose, flat) {
  232. if (container.count == 0)
  233. return "Your drooling tails swing to and fro";
  234. else if (isFatal(macro))
  235. return "Your $COUNT tails lunge, maws agape, at " + container.describe(verbose) +
  236. ". They scarf down everything in seconds, gulping forcefully to drag your prey into your sloppy confines.";
  237. else
  238. return "Your $COUNT tails lunge, maws agape, at " + container.describe(verbose) +
  239. ". They scarf down your prey, gulping forcefully and pulling them deep inside.";
  240. }
  241. function defaultCleavageStuff(container, macro, verbose, flat) {
  242. if (container.count == 0)
  243. return "You can't fit anything into your cleavage right now.";
  244. else
  245. return "You snatch up " + container.describe(verbose) + " and stuff " + (container.count > 1 ? "them" : "it") + " into your cleavage.";
  246. }
  247. function defaultCleavageCrush(container, macro, verbose, flat) {
  248. if (container.count == 0)
  249. return "You grasp your breasts and forcefully squeeze them together.";
  250. else if (isSadistic(macro))
  251. return "You grasp your breasts and slowly bring them together, steadily crushing the life from " + container.describeSimple(flat) + " trapped in between - savoring every last <i>pop</i> and <i>crunch</i> as you exterminate your prey.";
  252. else if (isGory(macro))
  253. return "You grasp your breasts and forcefully shove them together, crushing the life from " + container.describeSimple(flat) + ".";
  254. else if (isFatal(macro))
  255. return "You grasp your breasts and forcefully shove them together, crushing " + container.describeSimple(flat) + ".";
  256. else
  257. return "You grasp your breasts and squish them together, smooshing " + container.describeSimple(flat) + ".";
  258. }
  259. function defaultCleavageDrop(container, macro, verbose, flat) {
  260. if (container.count == 0)
  261. return "You pull your breasts apart and give them a shake.";
  262. if (isFatal(macro))
  263. return "You pull your breasts apart far enough for the " + container.describeSimple(flat) + " trapped within to fall out, tumbling to the ground and smashing to bits.";
  264. else
  265. return "You pull your breasts apart far enough for the " + container.describeSimple(flat) + " trapped within to fall out.";
  266. }
  267. function defaultCleavageAbsorb(container, macro, verbose, flat) {
  268. if (container.count == 0)
  269. return defaultCleavageCrush(container, macro, verbose, flat);
  270. else
  271. return "Your squeeze your breasts together, swiftly absorbing " + container.describeSimple(flat) + " into your chest.";
  272. }
  273. function defaultBreastCrush(container, macro, verbose, flat) {
  274. if (container.count == 0)
  275. return "Your thump your breasts against the ground.";
  276. else if (isFatal(macro))
  277. return "Your heavy breasts obliterate " + container.describe(verbose) + ". ";
  278. else
  279. return "You smoosh " + container.describe(verbose) + " with your breasts.";
  280. }
  281. function defaultBreastVore(container, macro, verbose, flat) {
  282. if (container.count == 0)
  283. return "It'd be pretty hot to stick someone in your breasts. Shame you can't right now.";
  284. else
  285. return "Your nipples envelop " + container.describe(verbose) + ", pulling them into your breasts. ";
  286. }
  287. function defaultBreastMilk(container, macro, verbose, flat) {
  288. if (container.count == 0)
  289. return "You squeeze your breasts, coaxing out $VOLUME of warm, creamy milk that splatters on the ground.";
  290. else if (isFatal(macro))
  291. return "You squeeze your breasts, coaxing out $VOLUME of warm, creamy milk that floods " + container.describe(verbose) + " in an unstoppable wave of white.";
  292. else
  293. return "You squeeze your breasts, coaxing out $VOLUME of warm, creamy milk that floods " + container.describe(verbose) + ".";
  294. }
  295. function defaultUnbirth(container, macro, verbose, flat) {
  296. if (container.count == 0)
  297. return "You grab " + (macro.victimsHuman ? new Human(1).describe(verbose) : new Person(1).describe(verbose)) + " and grind them against your slit...but they won't fit.";
  298. else
  299. return "You gasp as you slide " + container.describe(verbose) + " up your slit. ";
  300. }
  301. function defaultSheathStuff(container, macro, verbose, flat) {
  302. if (container.count == 0)
  303. return "You grab a " + (macro.victimsHuman ? new Human(1).describe(verbose) : new Person(1).describe(verbose)) + " and grind them against your sheath-slit...but they won't fit.";
  304. else
  305. return "You pluck " + container.describe(verbose) + " from the ground and slip them into your musky sheath.";
  306. }
  307. function defaultForeskinStuff(container, macro, verbose, flat) {
  308. if (container.count == 0)
  309. return "You grab a " + (macro.victimsHuman ? new Human(1).describe(verbose) : new Person(1).describe(verbose)) + " and grind them against your foreskin...but they won't fit.";
  310. else
  311. return "You pluck " + container.describe(verbose) + " from the ground and slip them into your musky foreskin.";
  312. }
  313. function defaultBreastToy(container, macro, verbose, flat) {
  314. if (container.count > 0) {
  315. return "You smush your breasts together, squeezing " + container.describeSimple(flat) + " between the heavy mounds.";
  316. } else {
  317. return "You smush your breasts together.";
  318. }
  319. }
  320. function defaultSlitToy(container, macro, verbose, flat) {
  321. if (container.count > 0) {
  322. return "You slip your fingers into your snatch, teasing yourself and pushing the " + container.describeSimple(flat) + " within a little deeper.";
  323. } else {
  324. return "Your slp your fingers into your snatch and tease yourself.";
  325. }
  326. }
  327. function defaultSheathToy(container, macro, verbose, flat) {
  328. if (container.count > 0) {
  329. if (macro.orgasm) {
  330. return "You stroke your spurting cock, then reach down to give your sheath a firm <i>squeeze</i>. Anything within has been ground away to nothingness by the force of your orgasm.";
  331. } else if (macro.arousal < 25) {
  332. return "You grip your soft sheath and give it a squeeze, feeling " + container.describeSimple(flat) + " within rub against your " + macro.describeDick + " cock.";
  333. } else if (macro.arousal < 75) {
  334. return "You grip your swelling sheath and squeeze, feeling " + container.describeSimple(flat) + " within grind against your " + macro.describeDick + " cock.";
  335. } else if (macro.arousal < 150) {
  336. return "You run your fingers down your " + macro.describeDick + " shaft and grip your sheath, squeezing it to feel " + container.describeSimple(flat) + " being smothered against the musky walls by your throbbing cock.";
  337. } else {
  338. return "Trembling with your impending orgasm, your fingers play over your sheath, feeling " + container.describeSimple(flat) + " within rub against your " + macro.describeDick + " cock.";
  339. }
  340. } else {
  341. if (macro.orgasm) {
  342. return "You stroke your spurting cock, then reach down to give your sheath a firm <i>squeeze</i>. Anything within has been ground away to nothingness by the force of your orgasm.";
  343. } else if (macro.arousal < 25) {
  344. return "You grip your soft sheath and give it a squeeze.";
  345. } else if (macro.arousal < 75) {
  346. return "You grip your swelling sheath and squeeze.";
  347. } else if (macro.arousal < 150) {
  348. return "You run your fingers down your " + macro.describeDick + " shaft and grip your sheath, squeezing it gently.";
  349. } else {
  350. return "Trembling with your impending orgasm, your fingers play over your sheath.";
  351. }
  352. }
  353. }
  354. function defaultSheathClench(container, macro, verbose, flat) {
  355. if (container.count == 0)
  356. return "You squeeze your sheath.";
  357. else if (isGory(macro))
  358. return "You squeeze your packed sheath, reducing " + container.describeSimple(flat) + " to a gory paste that slickens your throbbing shaft.";
  359. else if (isFatal(macro))
  360. return "Your fingers run over your packed sheath, squeezing on the " + macro.describeDick + " shaft within and smashing " + container.describeSimple(flat);
  361. else
  362. return "Your squeeze your sheath, pushing " + container.describeSimple(flat) + " out of your sheath.";
  363. }
  364. function defaultSheathCrush(container, macro, verbose, flat) {
  365. if (container.count == 0)
  366. return "Your orgasm causes your " + macro.describeDick + " cock to swell and surge.";
  367. else if (isGory(macro))
  368. return "Your powerful orgasm causes your throbbing " + macro.describeDick + " cock to swell and crush the life from everything in your sheath, reducing " + container.describeSimple(flat) + " to a gory paste that slickens your spurting shaft.";
  369. else if (isFatal(macro))
  370. return "Your orgasm causes your " + macro.describeDick + " shaft to throb and swell, smashing " + container.describeSimple(flat) + " trapped in your musky sheath.";
  371. else
  372. return "Your orgasm causes your " + macro.describeDick + " cock to swell, squeezing " + container.describeSimple(flat) + " out from your sheath.";
  373. }
  374. function defaultSheathAbsorb(container, macro, verbose, flat) {
  375. if (container.count > 0)
  376. return "You grip your sheath and give it a firm <i>squeeze</i>, abruptly absorbing " + container.describeSimple(flat) + " into your musky body.";
  377. else
  378. return defaultSheathToy(container, macro, verbose, flat);
  379. }
  380. function defaultForeskinToy(container, macro, verbose, flat) {
  381. if (container.count > 0) {
  382. if (macro.orgasm) {
  383. return "You stroke your spurting cock. Anything within your foreskin has been ground away to nothingness by the force of your orgasm.";
  384. } else if (macro.arousal < 25) {
  385. return "You slip your fingers into your sheath and give your shaft a squeeze, feeling " + container.describeSimple(flat) + " within rub against your " + macro.describeDick + " cock.";
  386. } else if (macro.arousal < 75) {
  387. return "You grip your swelling cock and squeeze, feeling " + container.describeSimple(flat) + " between your " + macro.describeDick + " and your foreskin.";
  388. } else if (macro.arousal < 150) {
  389. return "You run your fingers down your " + macro.describeDick + " shaft, squeezing it to feel " + container.describeSimple(flat) + " being smothered against your throbbing cock.";
  390. } else {
  391. return "Trembling with your impending orgasm, your fingers play over your taut foreskin, feeling " + container.describeSimple(flat) + " within rub against your " + macro.describeDick + " cock.";
  392. }
  393. } else {
  394. if (macro.orgasm) {
  395. return "You stroke your spurting cock. Anything within your foreskin has been ground away to nothingness by the force of your orgasm.";
  396. } else if (macro.arousal < 25) {
  397. return "You grip your soft foreskin and give it a squeeze.";
  398. } else if (macro.arousal < 75) {
  399. return "You grip your swelling cock and squeeze.";
  400. } else if (macro.arousal < 150) {
  401. return "You run your fingers over your " + macro.describeDick + " shaft and grip your taut foreskin, squeezing it gently.";
  402. } else {
  403. return "Trembling with your impending orgasm, your fingers play over your shaft.";
  404. }
  405. }
  406. }
  407. function defaultForeskinClench(container, macro, verbose, flat) {
  408. if (container.count == 0)
  409. return "You squeeze your foreskin.";
  410. else if (isGory(macro))
  411. return "You squeeze your foreskin, reducing " + container.describeSimple(flat) + " to a gory paste that slickens your throbbing shaft.";
  412. else if (isFatal(macro))
  413. return "Your fingers run over your packed foreskin, squeezing on the " + macro.describeDick + " shaft within and smashing " + container.describeSimple(flat);
  414. else
  415. return "Your squeeze your foreskin, pushing " + container.describeSimple(flat) + " out of your foreskin.";
  416. }
  417. function defaultForeskinCrush(container, macro, verbose, flat) {
  418. if (container.count == 0)
  419. return "Your orgasm causes your " + macro.describeDick + " cock to swell and surge.";
  420. else if (isGory(macro))
  421. return "Your powerful orgasm causes your throbbing " + macro.describeDick + " cock to swell and crush the life from everything in your foreskin, reducing " + container.describeSimple(flat) + " to a gory paste that slickens your spurting shaft.";
  422. else if (isFatal(macro))
  423. return "Your orgasm causes your " + macro.describeDick + " shaft to throb and swell, smashing " + container.describeSimple(flat) + " trapped in your musky foreskin.";
  424. else
  425. return "Your orgasm causes your " + macro.describeDick + " cock to swell, squeezing " + container.describeSimple(flat) + " out from your foreskin.";
  426. }
  427. function defaultForeskinAbsorb(container, macro, verbose, flat) {
  428. if (container.count > 0)
  429. return "You grip your cock and give it a firm <i>squeeze</i>, abruptly absorbing " + container.describeSimple(flat) + " into your musky foreskin.";
  430. else
  431. return defaultForeskinToy(container, macro, verbose, flat);
  432. }
  433. function defaultCockVore(container, macro, verbose, flat) {
  434. if (container.count == 0)
  435. return "You grab " + (macro.victimsHuman ? new Human(1).describe(verbose) : new Person(1).describe(verbose)) + " and grind them against your cock...but they won't fit.";
  436. else
  437. return "You stuff " + container.describe(verbose) + " into your throbbing shaft, forcing them down to your heavy balls.";
  438. }
  439. function defaultCockslap(container, macro, verbose, flat) {
  440. if (container.count == 0)
  441. return "Your " + macro.describeDick + " swings through the air. Lewd!";
  442. else if (isFatal(macro))
  443. return "Your swaying " + macro.describeDick + " cock crushes " + container.describe(verbose) + ". ";
  444. else
  445. return "You smack " + container.describe(verbose) + " with your " + macro.describeDick + " shaft.";
  446. }
  447. function defaultBallSmother(container, macro, verbose, flat) {
  448. if (container.count == 0)
  449. return "You rest your heavy balls on the ground.";
  450. else if (isFatal(macro))
  451. return "Your weighty balls spread over " + container.describe(verbose) + ", drowning them in musk.";
  452. else
  453. return "Your weighty balls spread over " + container.describe(verbose) + ".";
  454. }
  455. function defaultMaleSpurt(container, macro, verbose, flat) {
  456. if (container.count == 0)
  457. return "Your " + macro.describeDick + " cock spews $VOLUME of bitter precum.";
  458. else if (isFatal(macro))
  459. return "Your " + macro.describeDick + " cock spurts out bitter precum, drowning " + container.describe(verbose) + " in $VOLUME of slick musky fluid.";
  460. else
  461. return "Your " + macro.describeDick + " shaft spurts precum, splooging " + container.describe(verbose) + " in $VOLUME of slick musky fluid.";
  462. }
  463. function defaultMaleOrgasm(container, macro, verbose, flat) {
  464. if (container.count == 0)
  465. return "Your " + macro.describeDick + " cock spurts, gushing out a $VOLUME glob of cum.";
  466. else if (isFatal(macro))
  467. return "You're cumming! Your " + macro.describeDick + " cock erupts, obliterating " + container.describe(verbose) + " in a $VOLUME-torrent of cum.";
  468. else
  469. return "You're cumming! Your " + macro.describeDick + " shaft spews a thick rope of seed, splooging " + container.describe(verbose) + " in a $VOLUME-torrent of cum.";
  470. }
  471. function defaultFemaleSpurt(container, macro, verbose, flat) {
  472. if (container.count == 0)
  473. return "Your moist slit splatters $VOLUME of slick juices.";
  474. else if (isSadistic(macro))
  475. return "Your dripping slit splatters $VOLUME of your intoxicating juices, dissolving " + container.describe(verbose) + ".";
  476. else if (isFatal(macro))
  477. return "Your moist slit splatters $VOLUME of slick juices, drowning " + container.describe(verbose) + " in your building lust.";
  478. else
  479. return "Your moist slit splatters $VOLUME of slick juices, splooging " + container.describe(verbose) + ".";
  480. }
  481. function defaultFemaleOrgasm(container, macro, verbose, flat) {
  482. if (container.count == 0)
  483. return "Your moist slit gushes $VOLUME of slick femcum.";
  484. else if (isSadistic(macro))
  485. return "Your quivering slit sprays $VOLUME of your intoxicating femcum, dissolving " + container.describe(verbose) + " in an unstoppable torrent of deadly lust.";
  486. else if (isFatal(macro))
  487. return "Your moist slit sprays $VOLUME of slick femcum, obliterating " + container.describe(verbose) + " in a torrent of nectar.";
  488. else
  489. return "Your moist slit sprays $VOLUME of slick femcum, splooging " + container.describe(verbose) + " as you swoon with orgasmic lust.";
  490. }
  491. function defaultGrind(container, macro, verbose, flat) {
  492. var mid = isFatal(macro) ? ", smashing them apart" : ", using them as a toy";
  493. var end = macro.arousalEnabled ? " to fuel your lust." : ".";
  494. var desc = container.count > 0 ? container.describe(verbose) + mid + end : "the ground.";
  495. if (macro.maleParts && macro.femaleParts) {
  496. return "You grind your " + macro.describeDick + " cock and " + macro.describeVagina + " slit against " + desc;
  497. } else if (macro.maleParts && !macro.femaleParts) {
  498. return "You grind your " + macro.describeDick + " shaft against " + desc;
  499. } else if (!macro.maleParts && macro.femaleParts) {
  500. return "You grind your " + macro.describeVagina + " slit against " + desc;
  501. } else {
  502. return "You grind your hips against " + desc;
  503. }
  504. }
  505. function defaultPouchStuff(container, macro, verbose, flat) {
  506. if (container.count == 0)
  507. return "You grab " + (macro.victimsHuman ? new Human(1).describe(verbose) : new Person(1).describe(verbose)) + " and stuff them against your pouch...but they won't fit!";
  508. else
  509. return "You grab " + container.describe(verbose) + " and stuff " + (container.count > 1 ? "them" : "it") + " into your pouch.";
  510. }
  511. function defaultPouchRub(container, macro, verbose, flat) {
  512. if (container.count == 0)
  513. return "You rub your empty pouch.";
  514. else
  515. return "You rub your bulging pouch, feeling at " + container.describeSimple(flat) + " trapped within.";
  516. }
  517. function defaultPouchEat(container, macro, verbose, flat) {
  518. if (container.count == 0)
  519. return "There's nothing in your pouch!";
  520. else
  521. return "You snatch " + container.describe(verbose) + " from your pouch and shove " + (container.count > 1 ? "them" : "it") + " down your gullet!";
  522. }
  523. function defaultPouchAbsorb(container, macro, verbose, flat) {
  524. if (container.count == 0)
  525. return "There's nothing in your pouch!";
  526. else
  527. return "Your pouch flattens as it absorbs " + container.describeSimple(flat);
  528. }
  529. function defaultSoulVore(container, macro, verbose, flat) {
  530. if (container.count == 0)
  531. return "No souls here.";
  532. else
  533. return "You open your " + macro.jawDesc(true) + " and inhale, ripping the souls from " + container.describe(verbose) + " and dragging them down deep inside.";
  534. }
  535. function defaultSoulAbsorbPaw(container, macro, verbose, flat) {
  536. let sum = get_living_prey(container.sum());
  537. if (container.count == 0)
  538. return "Your " + macro.footDesc() + " thumps against the ground";
  539. else if (sum == 0)
  540. return "Your " + macro.footDesc() + " slams down on " + container.describe(verbose) + "...but there aren't any souls within!";
  541. else
  542. return "Your " + macro.footDesc() + " slams down on " + container.describe(verbose) + ", smashing them to pieces and absorbing " + sum + (sum == 1 ? " soul" : " souls") + " into your pads.";
  543. }
  544. function defaultPawStench(container, macro, verbose, flat) {
  545. let sum = get_living_prey(container.sum());
  546. if (isSadistic(macro))
  547. return "Horrific miasma flows from your " + macro.footDesc(true)+ ", the corrsoive fumes reducing " + (sum > 1 ? sum + " people" : "a person") + " to charred flesh as they wash over " + container.describeSimple(flat) + ".";
  548. if (isFatal(macro))
  549. return "Vile fumes waft from your " + macro.footDesc(true) + " , choking the life from " + (sum > 1 ? sum + " people." : "a person.");
  550. else
  551. return "Your stinky " + macro.footDesc(true) + " overwhelms " + (sum > 1 ? sum + " people" : "a person") + " with your scent!";
  552. }
  553. function defaultAssStench(container, macro, verbose, flat) {
  554. let sum = get_living_prey(container.sum());
  555. if (isSadistic(macro))
  556. return "Rancid fumes from your ass sear the flesh of " + (sum > 1 ? sum + " people" : "a person") + " as they wash over " + container.describeSimple(flat) + ", corroding everything in their path.";
  557. if (isFatal(macro))
  558. return "Vile miasma from your bitter ass snuffs out " + (sum > 1 ? sum + " people" : "a person") + ", suffocating them in your stench.";
  559. else
  560. return "Your stinky butt sickens " + (sum > 1 ? sum + " people" : "a person") + " with your scent!";
  561. }
  562. function defaultPissStench(container, macro, verbose, flat) {
  563. let sum = get_living_prey(container.sum());
  564. if (isSadistic(macro))
  565. return "Waves of corrosive fumes waft from your piss, the toxic cloud liquefying the flesh of " + (sum > 1 ? numberRough(sum,"of") + " people" : "a person") + " as it dissolves " + container.describeSimple(flat) + ".";
  566. if (isFatal(macro))
  567. return "Vile fumes waft from your piss, choking the life from " + (sum > 1 ? sum + " people." : "a person.");
  568. else
  569. return "Your stinky piss overwhelms " + (sum > 1 ? sum + " people" : "a person") + " with your scent!";
  570. }
  571. function defaultScatStench(container, macro, verbose, flat) {
  572. let sum = get_living_prey(container.sum());
  573. if (isSadistic(macro))
  574. return "A rancid miasma spews from your shit - a thick, choking avalanche of toxic vapors that reduce " + (sum > 1 ? numberRough(sum,"of") + " people" : "a person") + " to nothing but bones as it melts " + container.describeSimple(flat) + ".";
  575. if (isFatal(macro))
  576. return "Vile fumes waft from your scat, choking the life from " + (sum > 1 ? sum + " people." : "a person.");
  577. else
  578. return "Your stinky scat overwhelms " + (sum > 1 ? sum + " people" : "a person") + " with your scent!";
  579. }
  580. function defaultMaleSpurtMusk(container, macro, verbose, flat) {
  581. let sum = get_living_prey(container.sum());
  582. if (isSadistic(macro))
  583. return "Waves of corrosive musk waft from your precum, the bitter cloud liquefying the flesh of " + (sum > 1 ? numberRough(sum,"of") + " people" : "a person") + " as it dissolves " + container.describeSimple(flat) + ".";
  584. if (isFatal(macro))
  585. return "Powerful musk wafts from your precum, choking the life from " + (sum > 1 ? sum + " people." : "a person.");
  586. else
  587. return "Your musky precum overwhelms " + (sum > 1 ? sum + " people" : "a person") + " with your scent!";
  588. }
  589. function defaultFemaleSpurtMusk(container, macro, verbose, flat) {
  590. let sum = get_living_prey(container.sum());
  591. if (isSadistic(macro))
  592. return "Waves of corrosive musk waft from your precum, the bitter cloud liquefying the flesh of " + (sum > 1 ? numberRough(sum,"of") + " people" : "a person") + " as it dissolves " + container.describeSimple(flat) + ".";
  593. if (isFatal(macro))
  594. return "Powerful musk wafts from your precum, choking the life from " + (sum > 1 ? sum + " people." : "a person.");
  595. else
  596. return "Your musky precum overwhelms " + (sum > 1 ? sum + " people" : "a person") + " with your scent!";
  597. }
  598. function defaultMaleOrgasmMusk(container, macro, verbose, flat) {
  599. let sum = get_living_prey(container.sum());
  600. if (isSadistic(macro))
  601. return "Waves of corrosive musk waft from your cum, the bitter cloud liquefying the flesh of " + (sum > 1 ? numberRough(sum,"of") + " people" : "a person") + " as it dissolves " + container.describeSimple(flat) + ".";
  602. if (isFatal(macro))
  603. return "Powerful musk wafts from your cum, choking the life from " + (sum > 1 ? sum + " people." : "a person.");
  604. else
  605. return "Your musky cum overwhelms " + (sum > 1 ? sum + " people" : "a person") + " with your scent!";
  606. }
  607. function defaultFemaleOrgasmMusk(container, macro, verbose, flat) {
  608. let sum = get_living_prey(container.sum());
  609. if (isSadistic(macro))
  610. return "Waves of corrosive musk waft from your cum, the bitter cloud liquefying the flesh of " + (sum > 1 ? numberRough(sum,"of") + " people" : "a person") + " as it dissolves " + container.describeSimple(flat) + ".";
  611. if (isFatal(macro))
  612. return "Powerful musk wafts from your cum, choking the life from " + (sum > 1 ? sum + " people." : "a person.");
  613. else
  614. return "Your musky cum overwhelms " + (sum > 1 ? sum + " people" : "a person") + " with your scent!";
  615. }
  616. function defaultBelch(container, macro, verbose, flat) {
  617. let sum = get_living_prey(container.sum());
  618. if (container.count == 0)
  619. return "An ominous groan precedes a crass belch.";
  620. if (isSadistic(macro))
  621. return "A disgusting torrent of gas erupts from your rancid stomach, the vile green gale stopping hearts and burning flesh as it annihilates " + container.describe(verbose) + ".";
  622. if (isFatal(macro))
  623. return "A rancid belch flows from your " + macro.jawDesc(verbose) + ", corroding " + container.describe(verbose) + " with your vile fumes.";
  624. else
  625. return "You let out a loud burp, blowing over " + container.describe(verbose) + "!";
  626. }
  627. function defaultFart(container, macro, verbose, flat) {
  628. let sum = get_living_prey(container.sum());
  629. if (container.count == 0)
  630. return "An ominous groan precedes a loud, pungent fart.";
  631. if (isSadistic(macro))
  632. return "Your intestines snarl and lurch, expelling a powerful jet of utterly rancid stench from your bitter ass. The plume gushes over " + container.describe(verbose) + ", ending " + (sum > 1 ? sum + " lives" : "a life") + " and annihilating everything in its path.";
  633. if (isFatal(macro))
  634. return "An ominous groan precedes a loud, pungent fart, corroding " + container.describe(verbose) + " with truly vile vapors.";
  635. else
  636. return "You let out a crass fart, blowing over " + container.describe(verbose) + "!";
  637. }
  638. function defaultStomach(container, macro, verbose, flat) {
  639. if (isSadistic(macro))
  640. return "Your churning guts crushes your prey into a gory paste, annihilating " + container.describeSimple(flat) + " and reducing everything to rancid chyme.";
  641. else if (isGory(macro))
  642. return "Your caustic stomach grinds " + container.describeSimple(flat) + " to a gory pulp.";
  643. else if (isFatal(macro))
  644. return "Your stomach gurgles as it digests " + container.describeSimple(flat) + ".";
  645. else
  646. return "Your stomach groans and abosrbs " + container.describeSimple(flat) + ".";
  647. }
  648. function defaultTail(container, macro, verbose, flat) {
  649. if (isSadistic(macro))
  650. return "Your " + macro.tailDesc + " " + (macro.tailCount > 1 ? "clench" : "clenches") + ", crushing " + container.describeSimple(flat) + " into unrecognizable paste.";
  651. else if (isGory(macro))
  652. return "Your fatal " + (macro.tailCount > 1 ? "tails crush " : "tail crushes ") + container.describeSimple(flat) + " to a gory pulp.";
  653. else if (isFatal(macro))
  654. return "Your " + (macro.tailCount > 1 ? "tails gurgles as they digest " : "tail gurgles as it digests ") + container.describeSimple(flat) + ".";
  655. else
  656. return "Your " + (macro.tailCount > 1 ? "tails groan and absorb " : "tail groans and absorbs ") + container.describeSimple(flat) + ".";
  657. }
  658. function defaultTailToStomach(container, macro, verbose, flat) {
  659. if (isFatal(macro))
  660. return "Your " + (macro.tailCount > 1 ? "tails clench" : "tail clenches") + ", squeezing " + container.describeSimple(flat) + " into your gurgling stomach.";
  661. else
  662. return "Your " + (macro.tailCount > 1 ? "tails squeeze" : "tail squeezes") + " " + container.describeSimple(flat) + " into your belly.";
  663. }
  664. function defaultBowels(container, macro, verbose, flat) {
  665. if (isSadistic(macro))
  666. return "Your rancid bowels clench and churn, crushing " + container.describeSimple(flat) + " into a paste of gore and rubble - and then swiftly absorbing everything.";
  667. if (isFatal(macro))
  668. return "Your bowels churn as they melt down " + container.describeSimple(flat) + " and absorb them into your body";
  669. else
  670. return "Your bowels churn as they absorb " + container.describeSimple(flat);
  671. }
  672. function defaultBowelsToStomach(container, macro, verbose, flat) {
  673. if (isFatal(macro))
  674. return "Your bowels clench, forcing " + container.describeSimple(flat) + " into your roiling, caustic stomach.";
  675. else
  676. return "Your bowels clench, squeezing " + container.describeSimple(flat) + " into your belly.";
  677. }
  678. function defaultWomb(container, macro, verbose, flat) {
  679. if (isFatal(macro))
  680. return "Your womb squeezes and dissolves " + container.describeSimple(flat) + ", turning them into $VOLUME of slick femcum.";
  681. else
  682. return "Your womb squeezes as it absorbs " + container.describeSimple(flat);
  683. }
  684. function defaultBalls(container, macro, verbose, flat) {
  685. if (isFatal(macro))
  686. return "Your balls slosh as they digest " + container.describeSimple(flat) + " into $VOLUME of cum";
  687. else
  688. return "Your balls slosh as they absorb " + container.describeSimple(flat);
  689. }
  690. function defaultBreasts(container, macro, verbose, flat) {
  691. if (isFatal(macro) && macro.lactationEnabled)
  692. return "Your breasts grrgle as they digest " + container.describeSimple(flat) + " into $VOLUME of milk";
  693. else
  694. return "Your breasts slosh as they absorb " + container.describeSimple(flat);
  695. }
  696. function defaultBladder(container, macro, verbose, flat) {
  697. if (isSadistic(macro)) {
  698. let fatalities = get_living_prey(container.sum());
  699. let line = "Your bladder swells as " + container.describeSimple(flat) + " are dissolved in your acrid piss, digesting them down to $VOLUME of fresh urine";
  700. if (fatalities > 0) {
  701. line += " " + (fatalities > 1 ? fatalities + " lives are" : "a life is") + " snuffed out by the horrific yellow tide, corroded and annihilated amongst the unbearable stench of urine.";
  702. }
  703. return line;
  704. } else if (isFatal(macro))
  705. return "Your bladder swells as it dissolves " + container.describeSimple(flat) + " into $VOLUME of acrid piss";
  706. else
  707. return "Your bladder squeezes as it absorbs " + container.describeSimple(flat);
  708. }
  709. function defaultSoulDigest(container, macro, verbose, flat) {
  710. let sum = get_living_prey(container.sum());
  711. switch(macro.soulVoreType) {
  712. case "release":
  713. return (sum > 1 ? sum + " souls escape" : "A soul escapes") + " your depths.";
  714. case "body":
  715. return "Your body claims " + (sum > 1 ? sum + " souls" : "a soul") + ", imprisoning " + (sum > 1 ? "them" : "it") + " in your body for good.";
  716. case "oblivion":
  717. return "Energy washes through your depths as you annihilate " + (sum > 1 ? sum + " souls" : "a soul") + ", crushing " + (sum > 1 ? "them" : "it") + " into nothingness.";
  718. }
  719. }
  720. function defaultWings(container, macro, verbose, flat) {
  721. if (isSadistic(macro))
  722. return "Your " + macro.wingDesc + " wings slacken as the " + container.describeSimple(flat) + " within melts into a slurry of meat and wreckage.";
  723. if (isFatal(macro))
  724. return "Your " + macro.wingDesc + " wings squeeze tightly as they absorb " + container.describeSimple(flat) + " into your body";
  725. else
  726. return "Your " + macro.wingDesc + " wings squeeze as they absorb " + container.describeSimple(flat);
  727. }
  728. function defaultWingsToStomach(container, macro, verbose, flat) {
  729. if (isFatal(macro))
  730. return "Your " + macro.wingDesc + " wings clench, forcing " + container.describeSimple(flat) + " deeper and into your stomach.";
  731. else
  732. return "Your " + macro.wingDesc + " wings squeeze " + container.describeSimple(flat) + " into your belly.";
  733. }
  734. function defaultWearShoe(container, macro, verbose, flat) {
  735. if (container.count == 0) {
  736. return "You slip on your " + macro.shoeDesc(true,false) + ".";
  737. } else {
  738. return "You slip on your " + macro.shoeDesc(true,false) + ", " + macro.toeDesc(true) + " wriggling against " + container.describeSimple(flat) + " trapped within!";
  739. }
  740. }
  741. function defaultRemoveShoe(container, macro, verbose, flat) {
  742. if (container.count == 0) {
  743. return "You pull off your " + macro.shoeDesc(true,false) + ".";
  744. } else {
  745. return "You pull off your " + macro.shoeDesc(true,false) + ", " + macro.toeDesc(true) + " rubbing against " + container.describeSimple(flat) + " on the way out.";
  746. }
  747. }
  748. function defaultWearSock(container, macro, verbose, flat) {
  749. if (container.count == 0) {
  750. return "You slip on your " + macro.sockDesc(true,false) + ".";
  751. } else {
  752. return "You slip on your " + macro.sockDesc(true,false) + ", " + macro.toeDesc(true) + " grinding against " + container.describeSimple(flat) + " trapped in the cotton tube!";
  753. }
  754. }
  755. function defaultRemoveSock(container, macro, verbose, flat) {
  756. if (container.count == 0) {
  757. return "You pull off your " + macro.sockDesc(true,false) + ". Cool air washes over your " + macro.toeOnlyDesc(true);
  758. } else {
  759. return "You pull off your " + macro.sockDesc(true,false) + ", leaving " + container.describeSimple(flat) + " trapped at the bottom.";
  760. }
  761. }
  762. function defaultStuffShoe(container, macro, verbose, flat) {
  763. if (container.count == 0) {
  764. return "You don't have anything to stuff into your " + macro.shoeDesc(true) + ".";
  765. } else {
  766. return "You grab " + container.describe(verbose) + " and stuff " + (container.count > 1 ? "them" : "it") + " into your " + macro.shoeDesc(true) + "!";
  767. }
  768. }
  769. function defaultStuffSock(container, macro, verbose, flat) {
  770. if (container.count == 0) {
  771. return "You don't have anything to stuff into your " + macro.sockDesc(true) + ".";
  772. } else {
  773. return "You grab " + container.describe(verbose) + " and stuff " + (container.count > 1 ? "them" : "it") + " into your " + macro.sockDesc(true) + "!";
  774. }
  775. }
  776. function defaultDumpShoe(container, macro, verbose, flat) {
  777. if (container.count == 0) {
  778. return "Your " + macro.shoeDesc(true) + " are empty, silly.";
  779. } else {
  780. return "You shake out your " + macro.shoeDesc(true) + ", dumping " + container.describeSimple(flat) + " onto the ground.";
  781. }
  782. }
  783. function defaultDumpSock(container, macro, verbose, flat) {
  784. if (container.count == 0) {
  785. return "You don't have anything to stuff into your " + macro.sockDesc(true) + ".";
  786. } else {
  787. return "You turn your " + macro.shoeDesc(true) + " inside-out, dumping " + container.describeSimple(flat) + " onto the ground.";
  788. }
  789. }
  790. function defaultPiss(container, macro, verbose, flat) {
  791. if (macro.maleParts) {
  792. if (container.count == 0) {
  793. return "You sigh with relief as $VOLUME of piss erupts from your " + macro.describeDick + " cock.";
  794. } else if (isSadistic(macro)) {
  795. return "You sigh with relief as $VOLUME of hot, rancid piss erupts from your " + macro.describeDick + " cock, inundating " + container.describe(verbose) + " in a disgusting tide of yellow death."
  796. } else {
  797. return "You sigh with relief as $VOLUME of piss erupts from your " + macro.describeDick + " cock, spraying down " + container.describe(verbose) + " in a shower of golden, musky fluid.";
  798. }
  799. } else if (macro.femaleParts) {
  800. if (container.count == 0) {
  801. return "You sigh with relief as $VOLUME of piss erupts from your " + macro.describeVagina + " slit.";
  802. } else if (isSadistic(macro)) {
  803. return "You sigh with relief as $VOLUME of hot, rancid piss erupts from your " + macro.describeVagina + " slit, inundating " + container.describe(verbose) + " in a disgusting tide of yellow death."
  804. } else {
  805. return "You sigh with relief as $VOLUME of piss erupts from your " + macro.describeVagina + " slit, spraying down " + container.describe(verbose) + " in a shower of golden, musky fluid.";
  806. }
  807. } else {
  808. if (container.count == 0) {
  809. return "You sigh with relief as $VOLUME of piss erupts from between your legs.";
  810. } else if (isSadistic(macro)) {
  811. return "You sigh with relief as $VOLUME of hot, rancid piss erupts from between your legs, inundating " + container.describe(verbose) + " in a disgusting tide of yellow death."
  812. } else {
  813. return "You sigh with relief as $VOLUME of piss erupts from between your legs, spraying down " + container.describe(verbose) + " in a shower of golden, musky fluid.";
  814. }
  815. }
  816. }
  817. function defaultBladderVore(container, macro, verbose, flat) {
  818. if (container.count == 0) {
  819. return "You don't have anything to shove into your bladder!";
  820. }
  821. else {
  822. if (macro.maleParts) {
  823. return "You snatch up " + container.describe(verbose) + " and stuff them into your " + macro.describeDick + " cock, grinding them to its base and forcing them into your musky bladder.";
  824. } else if (macro.femaleParts) {
  825. return "You snatch " + container.describe(verbose) + " in your iron grip, grinding them against your " + macro.describeVagina + " slit before stuffing them into your urethra, sealing them away in your musky bladder.";
  826. } else {
  827. return "You grab " + container.describe(verbose) + " and grind them between your legs, slipping them into your urethra and imprisoning them in your bladder.";
  828. }
  829. }
  830. }
  831. function defaultScat(container, macro, verbose, flat) {
  832. let sum = get_living_prey(container.sum());
  833. if (macro.scatStorage.amount == 0) {
  834. return "Your bowels are empty.";
  835. } else if (container.count == 0) {
  836. return "You squat down and let out a $MASS log of shit.";
  837. } else if (isSadistic(macro)) {
  838. let line = "You squat down, letting out a grunt as your rancid bowels force out a $MASS, $LENGTH-long heap of shit. The fatally-pungent scat buries " + container.describe(verbose) + ", ending " + numberRough(sum,"of") + " lives and entombing them in your shit.";
  839. if (macro.scatStorage.victims.count > 0) {
  840. line += " Embedded in the vomit-inducing heap are the mangled, crushed remains of " + listSum(macro.scatStorage.victims.sum()) + ", " + numberRough(get_living_prey(macro.scatStorage.victims.sum()), "of") + " living creatures converted to noxious scat by your disgusting depths.";
  841. }
  842. return line;
  843. } else if (macro.brutality > 0 && macro.scatStorage.victims.count > 0) {
  844. return "You squat down, grunting as your lower guts squeeze out a $MASS, $LENGTH-long log of scat that smothers " + container.describe(verbose) + ". Embedded in the thick, chunky waste are the remains of " + listSum(macro.scatStorage.victims.sum()) + ", now little more than bones and wreckage in your shit.";
  845. } else {
  846. return "You squat down, grunting as your lower guts squeeze out a $MASS, $LENGTH-long log of scat that smothers " + container.describe(verbose);
  847. }
  848. }
  849. function defaultMelt(container, macro, verbose, flat) {
  850. if (container.count == 0) {
  851. return "Your body turns gooey.";
  852. } else {
  853. return "Your body turns gooey, sucking " + container.describeSimple(flat) + " into your molten self.";
  854. }
  855. }
  856. function defaultSolidify(container, macro, verbose, flat) {
  857. if (container.count == 0) {
  858. return "Your body turns solid.";
  859. } else if (macro.gooDigest > 0) {
  860. return "Your body turns solid, pushing out " + container.describeSimple(flat) + ".";
  861. } else {
  862. return "Your body turns solid, swiftly absorbing " + container.describeSimple(flat) + ".";
  863. }
  864. }
  865. function defaultFlood(container, macro, verbose, flat) {
  866. if (container.count == 0) {
  867. return "Your gooey body melts and floods outward..but doesn't catch anything.";
  868. } else {
  869. return "Your gooey body melts and floods outward, burying " + container.describe(verbose) + " in your thick, slimy self. You slowly reform, grinning as you feel " + numberRough(get_living_prey(container.sum()), "of") + " prey sloshing about within.";
  870. }
  871. }
  872. function defaultStompGoo(container, macro, verbose, flat) {
  873. if (container.count == 0) {
  874. return "Your gooey paw hits the ground.";
  875. } else {
  876. return "Your gooey paws falls over " + container.describe(verbose) + ", smothering them in goo and pulling them into your body.";
  877. }
  878. }
  879. function defaultAssGoo(container, macro, verbose, flat) {
  880. if (container.count == 0) {
  881. return "Your gooey ass sits down on the ground.";
  882. } else {
  883. return "You sit your gooey ass down on " + container.describe(verbose) + ", pulling them right into your body.";
  884. }
  885. }
  886. function defaultGooDigest(container, macro, verbose, flat) {
  887. return "Your goopy depths dissolve " + container.describeSimple(flat) + ".";
  888. }
  889. function defaultGooStomachPull(container, macro, verbose, flat) {
  890. return "Your molten depths squeeze in around the " + container.describeSimple(flat) + " imprisoned in your stomach, drawing them into the viscous goo.";
  891. }
  892. function defaultGooStomachPush(container, macro, verobse) {
  893. return "Your churning goo herds " + container.describeSimple(flat) + " into your gurgling stomach.";
  894. }
  895. function defaultGooBowelsPull(container, macro, verbose, flat) {
  896. return "Your molten depths squeeze in around the " + container.describeSimple(flat) + " imprisoned in your bowels, drawing them into the viscous goo.";
  897. }
  898. function defaultGooBowelsPush(container, macro, verobse) {
  899. return "Your churning goo herds " + container.describeSimple(flat) + " into your clenching bowels.";
  900. }
  901. function defaultGooWombPull(container, macro, verbose, flat) {
  902. return "Your molten depths squeeze in around the " + container.describeSimple(flat) + " imprisoned in your womb, drawing them into the viscous goo.";
  903. }
  904. function defaultGooWombPush(container, macro, verobse) {
  905. return "Your churning goo herds " + container.describeSimple(flat) + " into your slick womb.";
  906. }
  907. function defaultGooBallsPull(container, macro, verbose, flat) {
  908. return "Your molten depths squeeze in around the " + container.describeSimple(flat) + " imprisoned in your balls, drawing them into the viscous goo.";
  909. }
  910. function defaultGooBallsPush(container, macro, verobse) {
  911. return "Your churning goo herds " + container.describeSimple(flat) + " into your musky balls.";
  912. }
  913. function defaultGooBreastsPull(container, macro, verbose, flat) {
  914. return "Your molten depths squeeze in around the " + container.describeSimple(flat) + " imprisoned in your breasts, drawing them into the viscous goo.";
  915. }
  916. function defaultGooBreastsPush(container, macro, verobse) {
  917. return "Your churning goo herds " + container.describeSimple(flat) + " into your breasts.";
  918. }
  919. function defaultGooTailPull(container, macro, verbose, flat) {
  920. return "Your molten depths squeeze in around the " + container.describeSimple(flat) + " imprisoned in your " + macro.tailDesc + ", drawing them into the viscous goo.";
  921. }
  922. function defaultGooTailPush(container, macro, verobse) {
  923. return "Your churning goo herds " + container.describeSimple(flat) + " into your " + macro.tailDesc;
  924. }
  925. function defaultGooPawsPull(container, macro, verbose, flat) {
  926. return "Your molten depths squeeze in around the " + container.describeSimple(flat) + " imprisoned in your " + macro.footOnlyDesc(true) + ", drawing them into the viscous goo.";
  927. }
  928. function defaultGooPawsPush(container, macro, verobse) {
  929. return "Your churning goo herds " + container.describeSimple(flat) + " into your " + macro.footOnlyDesc(true) + ".";
  930. }
  931. function defaultPawVore(container, macro, verbose, flat) {
  932. return "Your " + macro.footOnlyDesc(true) + " smother over " + container.describeSimple(flat) + ", absorbing them into your soles!";
  933. }
  934. function defaultPawVoreToes(container, macro, verbose, flat) {
  935. return "The " + container.describeSimple(flat) + " trapped between your toes " + (container.count > 1 ? "are" : "is") + " sucked inside.";
  936. }
  937. function defaultPaws(container, macro, verbose, flat) {
  938. return "Your " + macro.footOnlyDesc(true) + " fully absorb " + container.describeSimple(flat) + ".";
  939. }
  940. function defaultCropSwallow(container, macro, verbose, flat) {
  941. if (container.count == 0)
  942. return "You reach down for a delicious treat and grab - oh, nothing.";
  943. else
  944. return "You scoop up " + container.describe(verbose) + " and swallow " + (container.count > 1 ? "them" : "it") + " whole, pulling your prey into your crop.";
  945. }
  946. function defaultCropTransfer(container, macro, verbose, flat) {
  947. if (container.count == 0)
  948. return "You have nothing in your crop";
  949. else
  950. return "Your throat squeezes, forcing " + container.describe(verbose) + " out of your crop and in to your stomach.";
  951. }
  952. function nonFatalBreath(container, macro, verbose, flat, type, verb) {
  953. if (macro.breathStyle == "line") {
  954. return "You exhale a narrow gout of " + type + ", " + verb + " " + container.describe(verbose) + ".";
  955. } else if (macro.breathStyle == "cone") {
  956. return "You exhale a broad cone of " + type + ", " + verb + " " + container.describe(verbose) + ".";
  957. }
  958. }
  959. function defaultBreathFire(container, macro, verbose, flat) {
  960. if (isNonFatal(macro)) {
  961. return nonFatalBreath(container, macro, verbose, flat, "fire", "blasting");
  962. }
  963. if (isFatal(macro)) {
  964. if (macro.breathStyle == "line") {
  965. return "A withering spear of fire gouts from your maw, spearing through " + container.describe(verbose) + " and incinerating it in a torrid display of power.";
  966. } else if (macro.breathStyle == "cone") {
  967. return "You exhale a broad cone of powerful fire, burning " + container.describe(verbose) + " to a crisp in an inescapable tide of flames.";
  968. }
  969. }
  970. return "FIRE" + container.describe(verbose);
  971. }
  972. function defaultBreathIce(container, macro, verbose, flat) {
  973. if (isNonFatal(macro)) {
  974. return nonFatalBreath(container, macro, verbose, flat, "cold", "freezing");
  975. }
  976. if (isFatal(macro)) {
  977. if (macro.breathStyle == "line") {
  978. return "You heave a lance of frigid cold from your gullet, freezing " + container.describe(verbose) + " to the core.";
  979. } else if (macro.breathStyle == "cone") {
  980. return "A blizzard erupts from your maw, flash-freezing " + container.describe(verbose) + ". " + (container.count > 1 ? "They" : "It") + " shatters a heartbeat later, reduced to dust by your power.";
  981. }
  982. }
  983. return "ICE" + container.describe(verbose);
  984. }
  985. function defaultBreathElectric(container, macro, verbose, flat) {
  986. if (isNonFatal(macro)) {
  987. return nonFatalBreath(container, macro, verbose, flat, "electricity", "shocking");
  988. }
  989. if (isFatal(macro)) {
  990. if (macro.breathStyle == "line") {
  991. return "A blinding lance of lightning blasts from your spread " + macro.jawDesc(true) + ", cooking " + container.describe(verbose) + " from the inside out.";
  992. } else if (macro.breathStyle == "cone") {
  993. return "You exhale a brilliant, forking spray of lightning. The flickering bolts arc through " + container.describe(verbose) + ", cooking everything to a crisp.";
  994. }
  995. }
  996. return "ELECTRIC" + container.describe(verbose);
  997. }
  998. function defaultBreathSmoke(container, macro, verbose, flat) {
  999. if (isNonFatal(macro)) {
  1000. return nonFatalBreath(container, macro, verbose, flat, "smoke", "smothering");
  1001. }
  1002. if (isFatal(macro)) {
  1003. if (macro.breathStyle == "line") {
  1004. return "You part your " + macro.jawDesc(true) + " a touch and blow, casting a thin gout of smoke that envelops " + container.describe(verbose) + ". Your prey is snuffed out like a candle.";
  1005. } else if (macro.breathStyle == "cone") {
  1006. return "You open wide and exhale. A rolling storm of smoke pours forth, smothering " + container.describe(verbose) + " in a pyroclastic flow.";
  1007. }
  1008. }
  1009. return "SMOKE" + container.describe(verbose);
  1010. }
  1011. function defaultBreathRadiation(container, macro, verbose, flat) {
  1012. if (isNonFatal(macro)) {
  1013. return nonFatalBreath(container, macro, verbose, flat, "radiation", "frying");
  1014. }
  1015. if (isFatal(macro)) {
  1016. if (macro.breathStyle == "line") {
  1017. return "Your depths pour out a narrow beam of crackling green energy, striking " + container.describe(verbose) + " and frying it to a crisp, turning your prey to dust in the wind.";
  1018. } else if (macro.breathStyle == "cone") {
  1019. return "You part your " + macro.jawDesc(true) + ", roaring as a massive tide of radiation spews forth. It rolls over " + container.describe(verbose) + ", evaporating " + (container.count > 1 ? "them" : "it") + " in seconds.";
  1020. }
  1021. }
  1022. return "RADIATION" + container.describe(verbose);
  1023. }
  1024. function defaultBreathFoul(container, macro, verbose, flat) {
  1025. if (isNonFatal(macro)) {
  1026. return nonFatalBreath(container, macro, verbose, flat, "foul air", "withering");
  1027. }
  1028. if (isFatal(macro)) {
  1029. if (macro.breathStyle == "line") {
  1030. return "You blow a narrow stream of breath, withering " + container.describe(verbose) + " in a focused torrent of foul, humid fumes.";
  1031. } else if (macro.breathStyle == "cone") {
  1032. return "You yawn wide and sigh, snuffing out " + container.describe(verbose) + " under a tide of hot, humid breath.";
  1033. }
  1034. }
  1035. return "FOUL" + container.describe(verbose);
  1036. }
  1037. function defaultDrool(container, macro, verbose, flat) {
  1038. if (container.count == 0)
  1039. return "$VOLUME of hot drool oozes from your " + macro.jawDesc(true) + ".";
  1040. else if (isFatal(macro))
  1041. return "A rain of slobber falls from your maw, inundating " + container.describe(verbose) + " in $VOLUME of slimy drool.";
  1042. else
  1043. return "$VOLUME of your drool rains down from your " + macro.jawDesc(true) + ", washing over " + container.describe(verbose) + ".";
  1044. }
  1045. function defaultMagicShrink(container, macro, verbose, flat) {
  1046. return "You envelop " + container.describeSimple(flat) + " in swirling tendrils of magic, shrinking " + (container.count == 1 ? "it" : "them") + " down!";
  1047. }
  1048. function defaultWingsFlap(container, macro, verbose, flat) {
  1049. if (container.counter == 0) {
  1050. return "You flap your " + macro.wingDesc + " wings.";
  1051. } else {
  1052. return "You flap your " + macro.wingDesc + " wings, blowing away " + container.describe(verbose) + ".";
  1053. }
  1054. }
  1055. function defaultWingsVore(container, macro, verbose, flat) {
  1056. if (container.counter == 0) {
  1057. return "You flap your " + macro.wingDesc + " wings aggressively.";
  1058. } else {
  1059. return "You spread your " + macro.wingDesc + " wings wide, wrapping them around " + container.describe(verbose) + " and ensnaring them";
  1060. }
  1061. }
  1062. function defaultVictimCumFlood(macro) {
  1063. if (isSadistic(macro)) {
  1064. return "drowned in viscous cum";
  1065. } else if (isGory(macro)) {
  1066. return "drowned in cum";
  1067. } else if (isFatal(macro)) {
  1068. return "smothered in cum";
  1069. } else if (isNonFatal(macro)) {
  1070. return "washed away by cum";
  1071. }
  1072. }
  1073. function defaultVictimFemcumFlood(macro) {
  1074. if (isSadistic(macro)) {
  1075. return "drowned in slick femcum";
  1076. } else if (isGory(macro)) {
  1077. return "drowned in femcum";
  1078. } else if (isFatal(macro)) {
  1079. return "smothered in femcum";
  1080. } else if (isNonFatal(macro)) {
  1081. return "washed away by femcum";
  1082. }
  1083. }
  1084. function defaultVictimStomped(macro) {
  1085. if (isSadistic(macro)) {
  1086. return "crushed into pulp beneath your " + macro.footDesc(true);
  1087. } else if (isGory(macro)) {
  1088. return "crushed beneath your " + macro.footDesc(true);
  1089. } else if (isFatal(macro)) {
  1090. return "stomped on";
  1091. } else if (isNonFatal(macro)) {
  1092. return "stepped on";
  1093. }
  1094. }
  1095. function defaultVictimFlexToes(macro) {
  1096. if (isSadistic(macro)) {
  1097. return "ground to a thick paste between your " + macro.toeDesc(true);
  1098. } else if (isGory(macro)) {
  1099. return "crushed to death between your " + macro.toeDesc(true);
  1100. } else if (isFatal(macro)) {
  1101. return "crushed between your " + macro.toeDesc(true);
  1102. } else if (isNonFatal(macro)) {
  1103. return "squeezed in your " + macro.toeDesc(true);
  1104. }
  1105. }
  1106. function defaultVictimEaten(macro) {
  1107. if (isSadistic(macro)) {
  1108. return "devoured and digested down to molten chyme";
  1109. } else if (isGory(macro)) {
  1110. return "consumed and digested alive";
  1111. } else if (isFatal(macro)) {
  1112. return "devoured alive";
  1113. } else if (isNonFatal(macro)) {
  1114. return "swallowed";
  1115. }
  1116. }
  1117. function defaultVictimAssCrush(macro) {
  1118. if (isSadistic(macro)) {
  1119. return "snuffed out under your ass";
  1120. } else if (isGory(macro)) {
  1121. return "crushed by your ass";
  1122. } else if (isFatal(macro)) {
  1123. return "flattened under your ass";
  1124. } else if (isNonFatal(macro)) {
  1125. return "sat on";
  1126. }
  1127. }
  1128. function defaultVictimAssGround(macro) {
  1129. if (isSadistic(macro)) {
  1130. return "ground out of existence beneath your heavy ass";
  1131. } else if (isGory(macro)) {
  1132. return "crushed by your grinding ass";
  1133. } else if (isFatal(macro)) {
  1134. return "flattened by your grinding ass";
  1135. } else if (isNonFatal(macro)) {
  1136. return "ground under your ass";
  1137. }
  1138. }
  1139. function defaultVictimHumped(macro) {
  1140. if (isSadistic(macro)) {
  1141. return "smashed to gory paste by your thrusting hips";
  1142. } else if (isGory(macro)) {
  1143. return "crushed to death by your hips";
  1144. } else if (isFatal(macro)) {
  1145. return "ground on by your sultry hips";
  1146. } else if (isNonFatal(macro)) {
  1147. return "humped";
  1148. }
  1149. }
  1150. function defaultVictimVomit(macro) {
  1151. if (isSadistic(macro)) {
  1152. return "spewed from your caustic depths and left to die";
  1153. } else if (isGory(macro)) {
  1154. return "vomited out in a puddle of acid and chyme";
  1155. } else if (isFatal(macro)) {
  1156. return "puked up from your churning guts";
  1157. } else if (isNonFatal(macro)) {
  1158. return "horked out";
  1159. }
  1160. }
  1161. function defaultVictimChew(macro) {
  1162. if (isSadistic(macro)) {
  1163. return "chewed to a bloody pulp by your scything " + macro.jawDesc(true);
  1164. } else if (isGory(macro)) {
  1165. return "crushed to pulp by your " + macro.jawDesc(true);
  1166. } else if (isFatal(macro)) {
  1167. return "chewed up in your " + macro.jawDesc(true);
  1168. } else if (isNonFatal(macro)) {
  1169. return "gnawed on by your " + macro.jawDesc(true);
  1170. }
  1171. }
  1172. function defaultVictimDrool(macro) {
  1173. if (isSadistic(macro)) {
  1174. return "inundated in your drool and drowned";
  1175. } else if (isGory(macro)) {
  1176. return "swept away by a tide of drool";
  1177. } else if (isFatal(macro)) {
  1178. return "flooded in your drool";
  1179. } else if (isNonFatal(macro)) {
  1180. return "soaked by your drool";
  1181. }
  1182. }
  1183. function defaultVictimAnalVore(macro) {
  1184. if (isSadistic(macro)) {
  1185. return "crammed into your bowels and obliterated";
  1186. } else if (isGory(macro)) {
  1187. return "shoved into your greedy ass";
  1188. } else if (isFatal(macro)) {
  1189. return "slipped into your bowels";
  1190. } else if (isNonFatal(macro)) {
  1191. return "used as toys in your ass";
  1192. }
  1193. }
  1194. function defaultVictimTailSlap(macro) {
  1195. if (isSadistic(macro)) {
  1196. return "cut down like wheat by your swooping, scything " + macro.tailDesc;
  1197. } else if (isGory(macro)) {
  1198. return "smashed to bloody pieces by your " + macro.tailDesc;
  1199. } else if (isFatal(macro)) {
  1200. return "leveled by your " + macro.tailDesc;
  1201. } else if (isNonFatal(macro)) {
  1202. return "thwapped with your " + macro.tailDesc;
  1203. }
  1204. }
  1205. function defaultVictimTailVore(macro) {
  1206. if (isSadistic(macro)) {
  1207. return "snapped up and devoured by your ravenous " + macro.tailNoDesc;
  1208. } else if (isGory(macro)) {
  1209. return "swallowed down by your powerful" + macro.tailNoDesc;
  1210. } else if (isFatal(macro)) {
  1211. return "devoured by your " + macro.tailNoDesc;
  1212. } else if (isNonFatal(macro)) {
  1213. return "gulped down by your " + macro.tailNoDesc;
  1214. }
  1215. }
  1216. function defaultVictimCockSlap(macro) {
  1217. if (isSadistic(macro)) {
  1218. return "obliterated beneath your massive, swinging shaft.";
  1219. } else if (isGory(macro)) {
  1220. return "crushed by your cock";
  1221. } else if (isFatal(macro)) {
  1222. return "flattened under your dick";
  1223. } else if (isNonFatal(macro)) {
  1224. return "smacked with your dick";
  1225. }
  1226. }
  1227. function defaultVictimCockVore(macro) {
  1228. if (isSadistic(macro)) {
  1229. return "plunged into the depths of your shaft";
  1230. } else if (isGory(macro)) {
  1231. return "devoured by your ravenous cock";
  1232. } else if (isFatal(macro)) {
  1233. return "sucked down your shaft";
  1234. } else if (isNonFatal(macro)) {
  1235. return "slipped into your cock";
  1236. }
  1237. }
  1238. function defaultVictimBallSmother(macro) {
  1239. if (isSadistic(macro)) {
  1240. return "reduce to broken gore under your massive balls";
  1241. } else if (isGory(macro)) {
  1242. return "snuffed out by your crushing balls";
  1243. } else if (isFatal(macro)) {
  1244. return "crushed under your balls";
  1245. } else if (isNonFatal(macro)) {
  1246. return "trapped under your balls";
  1247. }
  1248. }
  1249. function defaultVictimSheathCrush(macro) {
  1250. if (isSadistic(macro)) {
  1251. return "crushed and smeared between your shaft and sheath";
  1252. } else if (isGory(macro)) {
  1253. return "ground into paste within your sheath";
  1254. } else if (isFatal(macro)) {
  1255. return "crushed between your sheath and shaft";
  1256. } else if (isNonFatal(macro)) {
  1257. return "squeezed out from your sheath";
  1258. }
  1259. }
  1260. function defaultVictimSheathAbsorb(macro) {
  1261. if (isSadistic(macro)) {
  1262. return "dissolved and absorbed into your tight sheath";
  1263. } else if (isGory(macro)) {
  1264. return "absorbed by the flesh of your sheath";
  1265. } else if (isFatal(macro)) {
  1266. return "absorbed into your sheath";
  1267. } else if (isNonFatal(macro)) {
  1268. return "taken into your sheath";
  1269. }
  1270. }
  1271. function defaultVictimForeskinCrush(macro) {
  1272. if (isSadistic(macro)) {
  1273. return "crushed and smeared between your shaft and foreskin";
  1274. } else if (isGory(macro)) {
  1275. return "ground into paste within your foreskin";
  1276. } else if (isFatal(macro)) {
  1277. return "crushed between your foreskin and shaft";
  1278. } else if (isNonFatal(macro)) {
  1279. return "squeezed out from your foreskin";
  1280. }
  1281. }
  1282. function defaultVictimForeskinAbsorb(macro) {
  1283. if (isSadistic(macro)) {
  1284. return "dissolved and absorbed into your tight foreskin";
  1285. } else if (isGory(macro)) {
  1286. return "absorbed by the flesh of your foreskin";
  1287. } else if (isFatal(macro)) {
  1288. return "absorbed into your foreskin";
  1289. } else if (isNonFatal(macro)) {
  1290. return "taken into your foreskin";
  1291. }
  1292. }
  1293. function defaultVictimCumFlood(macro) {
  1294. if (isSadistic(macro)) {
  1295. return "drowned in a caustic flood of cum";
  1296. } else if (isGory(macro)) {
  1297. return "drowned in your cum";
  1298. } else if (isFatal(macro)) {
  1299. return "washed away by your cum";
  1300. } else if (isNonFatal(macro)) {
  1301. return "flooded with your cum";
  1302. }
  1303. }
  1304. function defaultVictimMaleSpurtMusk(macro) {
  1305. if (isSadistic(macro)) {
  1306. return "dissolved in a tide of slick, musky precum";
  1307. } else if (isGory(macro)) {
  1308. return "drowned in your slick precum";
  1309. } else if (isFatal(macro)) {
  1310. return "washed away by precum";
  1311. } else if (isNonFatal(macro)) {
  1312. return "flooded with your precum";
  1313. }
  1314. }
  1315. function defaultVictimMaleOrgasmMusk(macro) {
  1316. if (isSadistic(macro)) {
  1317. return "corroded by your caustic, overwhelming masculine musk";
  1318. } else if (isGory(macro)) {
  1319. return "snuffed out by your masculine musk";
  1320. } else if (isFatal(macro)) {
  1321. return "overwhelmed by masculine musk";
  1322. } else if (isNonFatal(macro)) {
  1323. return "dazed by masculine musk";
  1324. }
  1325. }
  1326. function defaultVictimUnbirth(macro) {
  1327. if (isSadistic(macro)) {
  1328. return "crushed by your overwhelming womb";
  1329. } else if (isGory(macro)) {
  1330. return "crammed into your womb";
  1331. } else if (isFatal(macro)) {
  1332. return "stuffed into your nethers";
  1333. } else if (isNonFatal(macro)) {
  1334. return "slipped into your slit";
  1335. }
  1336. }
  1337. function defaultVictimFemcumFlood(macro) {
  1338. if (isSadistic(macro)) {
  1339. return "drowned and dissolved in slippery femcum";
  1340. } else if (isGory(macro)) {
  1341. return "drowned in your femcum";
  1342. } else if (isFatal(macro)) {
  1343. return "washed away by femcum";
  1344. } else if (isNonFatal(macro)) {
  1345. return "flooded with femcum";
  1346. }
  1347. }
  1348. function defaultVictimFemaleSpurtMusk(macro) {
  1349. if (isSadistic(macro)) {
  1350. return "suffocated by a spurt of corrosive feminine precum";
  1351. } else if (isGory(macro)) {
  1352. return "snuffed out by a splatter of feminine fluid";
  1353. } else if (isFatal(macro)) {
  1354. return "flooded by your spurting precum";
  1355. } else if (isNonFatal(macro)) {
  1356. return "soaked with your feminine precum";
  1357. }
  1358. }
  1359. function defaultVictimFemaleOrgasmMusk(macro) {
  1360. if (isSadistic(macro)) {
  1361. return "corroded by your caustic, overwhelming feminine musk";
  1362. } else if (isGory(macro)) {
  1363. return "snuffed out by your feminine musk";
  1364. } else if (isFatal(macro)) {
  1365. return "overwhelmed by feminine musk";
  1366. } else if (isNonFatal(macro)) {
  1367. return "dazed by feminine musk";
  1368. }
  1369. }
  1370. function defaultVictimBreastCrush(macro) {
  1371. if (isSadistic(macro)) {
  1372. return "reduced to broken gore beneath your breasts";
  1373. } else if (isGory(macro)) {
  1374. return "crushed to death by your bosom";
  1375. } else if (isFatal(macro)) {
  1376. return "flattened under your heavy breasts";
  1377. } else if (isNonFatal(macro)) {
  1378. return "smooshed by your breasts";
  1379. }
  1380. }
  1381. function defaultVictimCleavageCrush(macro) {
  1382. if (isSadistic(macro)) {
  1383. return "cracked open like gore-filled nuts between your breasts";
  1384. } else if (isGory(macro)) {
  1385. return "crushed to paste between your breasts";
  1386. } else if (isFatal(macro)) {
  1387. return "smashed between your breasts";
  1388. } else if (isNonFatal(macro)) {
  1389. return "squeezed between your breasts";
  1390. }
  1391. }
  1392. function defaultVictimCleavageAbsorb(macro) {
  1393. if (isSadistic(macro)) {
  1394. return "agonizingly absorbed into your greedy bosom";
  1395. } else if (isGory(macro)) {
  1396. return "absorbed into your greedy breasts";
  1397. } else if (isFatal(macro)) {
  1398. return "absorbed by your breasts";
  1399. } else if (isNonFatal(macro)) {
  1400. return "pulled into your breasts";
  1401. }
  1402. }
  1403. function defaultVictimCleavageDrop(macro) {
  1404. if (isSadistic(macro)) {
  1405. return "dropped from your cleavage and dashed to bloody bits";
  1406. } else if (isGory(macro)) {
  1407. return "dropped from your cleavage to their deaths";
  1408. } else if (isFatal(macro)) {
  1409. return "dropped from your cleavage and smashed";
  1410. } else if (isNonFatal(macro)) {
  1411. return "dropped from your cleavage";
  1412. }
  1413. }
  1414. function defaultVictimMilkFlood(macro) {
  1415. if (isSadistic(macro)) {
  1416. return "drenched in and dissolved by your milk";
  1417. } else if (isGory(macro)) {
  1418. return "drowned in your milk";
  1419. } else if (isFatal(macro)) {
  1420. return "washed away by your milk";
  1421. } else if (isNonFatal(macro)) {
  1422. return "flooded in your milk";
  1423. }
  1424. }
  1425. function defaultVictimBreastVore(macro) {
  1426. if (isSadistic(macro)) {
  1427. return "fed into your breasts to be churned and obliterated";
  1428. } else if (isGory(macro)) {
  1429. return "shoved into your greedy bosom and lost for good";
  1430. } else if (isFatal(macro)) {
  1431. return "stuffed into your breasts to be absorbed";
  1432. } else if (isNonFatal(macro)) {
  1433. return "slipped into your nipples";
  1434. }
  1435. }
  1436. function defaultVictimPouchAbsorb(macro) {
  1437. if (isSadistic(macro)) {
  1438. return "crushed, torn, and absorbed by your perilous pouch";
  1439. } else if (isGory(macro)) {
  1440. return "smothered and soaked into the walls of your pouch";
  1441. } else if (isFatal(macro)) {
  1442. return "claimed by your pouch";
  1443. } else if (isNonFatal(macro)) {
  1444. return "absorbed into your pouch";
  1445. }
  1446. }
  1447. function defaultVictimSoulDigest(macro) {
  1448. switch(macro.soulVoreType) {
  1449. case "release":
  1450. return "souls freed from your depths";
  1451. case "body":
  1452. return "souls imprisoned in your body for good";
  1453. case "oblivion":
  1454. return "souls annihilated for eternity";
  1455. }
  1456. }
  1457. function defaultVictimSoulPaw(macro) {
  1458. switch(macro.soulVoreType) {
  1459. case "release":
  1460. return "souls briefly trapped in your paws";
  1461. case "body":
  1462. return "souls claimed forever by your paws";
  1463. case "oblivion":
  1464. return "souls annihilated in your paws";
  1465. }
  1466. }
  1467. function defaultVictimPawStench(macro) {
  1468. if (isSadistic(macro)) {
  1469. return "corroded and melted alive by the stench of your " + macro.footDesc(true);
  1470. } else if (isGory(macro)) {
  1471. return "suffocated by the powerful stench of your " + macro.footDesc(true);
  1472. } else if (isFatal(macro)) {
  1473. return "snuffed out by the scent of your " + macro.footDesc(true);
  1474. } else if (isNonFatal(macro)) {
  1475. return "sickened by the smell of your " + macro.footDesc(true);
  1476. }
  1477. }
  1478. function defaultVictimAssStench(macro) {
  1479. if (isSadistic(macro)) {
  1480. return "reduced to bubbling flesh by the caustic scent of your ass";
  1481. } else if (isGory(macro)) {
  1482. return "suffocated by the rank odor of your ass";
  1483. } else if (isFatal(macro)) {
  1484. return "snuffed out by the scent of your ass";
  1485. } else if (isNonFatal(macro)) {
  1486. return "sickened by the smell of your butt";
  1487. }
  1488. }
  1489. function defaultVictimGasBelch(macro) {
  1490. if (isSadistic(macro)) {
  1491. return "dissolved by your rich, acidic belches";
  1492. } else if (isGory(macro)) {
  1493. return "corroded by your acrid belches";
  1494. } else if (isFatal(macro)) {
  1495. return "slain by your foul, deafening belches";
  1496. } else if (isNonFatal(macro)) {
  1497. return "knocked out by your belches";
  1498. }
  1499. }
  1500. function defaultVictimGasFart(macro) {
  1501. if (isSadistic(macro)) {
  1502. return "burned alive and melted down by your farts";
  1503. } else if (isGory(macro)) {
  1504. return "dissolved by your caustic farts";
  1505. } else if (isFatal(macro)) {
  1506. return "inundated in the miasma of your farts";
  1507. } else if (isNonFatal(macro)) {
  1508. return "knocked out by your farts";
  1509. }
  1510. }
  1511. function defaultVictimPiss(macro) {
  1512. if (isSadistic(macro)) {
  1513. return "drowned and dissolved in acrid piss";
  1514. } else if (isGory(macro)) {
  1515. return "drowned in your acrid piss";
  1516. } else if (isFatal(macro)) {
  1517. return "inundated in hot piss";
  1518. } else if (isNonFatal(macro)) {
  1519. return "flooded with your piss";
  1520. }
  1521. }
  1522. function defaultVictimBladderVore(macro) {
  1523. if (isSadistic(macro)) {
  1524. return "dissolved in a golden-yellow sea of searing piss";
  1525. } else if (isGory(macro)) {
  1526. return "digested in your bladder and pissed out";
  1527. } else if (isFatal(macro)) {
  1528. return "dissolved in your bladder";
  1529. } else if (isNonFatal(macro)) {
  1530. return "absorbed into your bladder";
  1531. }
  1532. }
  1533. function defaultVictimPissStench(macro) {
  1534. if (isSadistic(macro)) {
  1535. return "rent asunder by the miasma wafting from your piss";
  1536. } else if (isGory(macro)) {
  1537. return "corroded and consumed by the stench of your piss";
  1538. } else if (isFatal(macro)) {
  1539. return "snuffed out by the stench of your piss";
  1540. } else if (isNonFatal(macro)) {
  1541. return "sickeded by your smelly piss";
  1542. }
  1543. }
  1544. function defaultVictimScat(macro) {
  1545. if (isSadistic(macro)) {
  1546. return "buried alive and dissolved by your acrid shit";
  1547. } else if (isGory(macro)) {
  1548. return "crushed beneath your scat";
  1549. } else if (isFatal(macro)) {
  1550. return "flattened by your scat";
  1551. } else if (isNonFatal(macro)) {
  1552. return "trapped under your scat";
  1553. }
  1554. }
  1555. function defaultVictimScatStench(macro) {
  1556. if (isSadistic(macro)) {
  1557. return "melted into slag by the wretched miasma of your scat";
  1558. } else if (isGory(macro)) {
  1559. return "killed by the overwhelming smell of your scat";
  1560. } else if (isFatal(macro)) {
  1561. return "snuffed out by your scat's stench";
  1562. } else if (isNonFatal(macro)) {
  1563. return "sickened by your scat";
  1564. }
  1565. }
  1566. function defaultVictimGoo(macro) {
  1567. if (isSadistic(macro)) {
  1568. return "shredded and soaked up by your goo";
  1569. } else if (isGory(macro)) {
  1570. return "digested and dissolved into your goo";
  1571. } else if (isFatal(macro)) {
  1572. return "dissolved in your goo";
  1573. } else if (isNonFatal(macro)) {
  1574. return "turned into more of your goo";
  1575. }
  1576. }
  1577. function defaultVictimPawVore(macro) {
  1578. if (isSadistic(macro)) {
  1579. return "broken down and absorbed directly into your " + macro.footOnlyDesc(true);
  1580. } else if (isGory(macro)) {
  1581. return "crushed under and sucked into your " + macro.footOnlyDesc(true);
  1582. } else if (isFatal(macro)) {
  1583. return "absorbed by your greedy " + macro.footOnlyDesc(true);
  1584. } else if (isNonFatal(macro)) {
  1585. return "absorbed into your " + macro.footOnlyDesc(true);
  1586. }
  1587. }
  1588. function defaultVictimBreathFire(macro) {
  1589. if (isSadistic(macro)) {
  1590. return "cooked alive and reduced to ash by your flaming breath";
  1591. } else if (isGory(macro)) {
  1592. return "burned alive by your fiery breath";
  1593. } else if (isFatal(macro)) {
  1594. return "burned by your scorching breath";
  1595. } else if (isNonFatal(macro)) {
  1596. return "singed by your breath";
  1597. }
  1598. }
  1599. function defaultVictimBreathIce(macro) {
  1600. if (isSadistic(macro)) {
  1601. return "flash-frozen by your breath and shattered into gory dust";
  1602. } else if (isGory(macro)) {
  1603. return "fatally frozen by your icy breath";
  1604. } else if (isFatal(macro)) {
  1605. return "turned to ice sculptures by your breath";
  1606. } else if (isNonFatal(macro)) {
  1607. return "frozen by your breath";
  1608. }
  1609. }
  1610. function defaultVictimBreathElectric(macro) {
  1611. if (isSadistic(macro)) {
  1612. return "blasted into bloody sludge by your shocking breath";
  1613. } else if (isGory(macro)) {
  1614. return "electrocuted by your electric breath";
  1615. } else if (isFatal(macro)) {
  1616. return "fried by your shocking breath";
  1617. } else if (isNonFatal(macro)) {
  1618. return "zapped by your electric breath";
  1619. }
  1620. }
  1621. function defaultVictimBreathSmoke(macro) {
  1622. if (isSadistic(macro)) {
  1623. return "cooked alive and cauterized by your smoky breath";
  1624. } else if (isGory(macro)) {
  1625. return "suffocated by your hot, smoky breath";
  1626. } else if (isFatal(macro)) {
  1627. return "snuffed out by smoky breath";
  1628. } else if (isNonFatal(macro)) {
  1629. return "singed by your smoky breath";
  1630. }
  1631. }
  1632. function defaultVictimBreathRadiation(macro) {
  1633. if (isSadistic(macro)) {
  1634. return "reduced to bubbling, glowing sludge by your radioactive breath";
  1635. } else if (isGory(macro)) {
  1636. return "cooked alive by your radioactive breath";
  1637. } else if (isFatal(macro)) {
  1638. return "nuked by your radioactive breath";
  1639. } else if (isNonFatal(macro)) {
  1640. return "mutated by your radioactive breath";
  1641. }
  1642. }
  1643. function defaultVictimBreathFoul(macro) {
  1644. if (isSadistic(macro)) {
  1645. return "suffocated and slain by thick, miasmic breath";
  1646. } else if (isGory(macro)) {
  1647. return "snuffed out by your foul breath";
  1648. } else if (isFatal(macro)) {
  1649. return "slain by your foul breath";
  1650. } else if (isNonFatal(macro)) {
  1651. return "sickened by your smelly breath";
  1652. }
  1653. }
  1654. function defaultVictimWingsFlap(macro) {
  1655. if (isSadistic(macro)) {
  1656. return "ripped asunder by gusts from your mighty wings";
  1657. } else if (isGory(macro)) {
  1658. return "thrown and dashed to bits by your sweeping wings";
  1659. } else if (isFatal(macro)) {
  1660. return "thrown away by your swooping wings";
  1661. } else if (isNonFatal(macro)) {
  1662. return "blown away by your wings";
  1663. }
  1664. }
  1665. function defaultVictimWingsVore(macro) {
  1666. if (isSadistic(macro)) {
  1667. return "shrink-wrapped in your wings and dissolved";
  1668. } else if (isGory(macro)) {
  1669. return "wrapped up in your airless wings and digested";
  1670. } else if (isFatal(macro)) {
  1671. return "snared in your wings and digested";
  1672. } else if (isNonFatal(macro)) {
  1673. return "trapped in your wings";
  1674. }
  1675. }
  1676. // EATING
  1677. rules["eat"].push({
  1678. "test": function(container, macro) {
  1679. return hasNothing(container);
  1680. },
  1681. "desc": function(container, macro, verbose, flat) {
  1682. return "You scoop up...nothing. Oh well.";
  1683. }
  1684. });
  1685. rules["eat"].push({
  1686. "test": function(container, macro) {
  1687. return hasOnly(container, ["Person"]) &&
  1688. hasLessThan(container, "Person", 6) &&
  1689. macro.height >= 10;
  1690. },
  1691. "desc": function(container, macro, verbose, flat) {
  1692. return "You pluck up " + container.describe() + " and stuff them into your mouth, swallowing lightly to drag them down to your bubbling guts.";
  1693. }
  1694. });
  1695. rules["eat"].push({
  1696. "test": function(container, macro) {
  1697. return hasOnly(container, ["Person"]) &&
  1698. hasExactly(container, "Person", 1) &&
  1699. macro.height < 10;
  1700. },
  1701. "desc": function(container, macro, verbose, flat) {
  1702. return "You grasp " + container.describe() + " and greedily wolf them down, swallowing forcefully to cram them into your bulging stomach. A crass belch escapes your lips as they curl up in your slimy gut.";
  1703. }
  1704. });
  1705. rules["eat"].push({
  1706. "test": function(container, macro) {
  1707. return hasOnly(container, ["Person","Car"]) &&
  1708. hasExactly(container, "Car", 1) &&
  1709. hasLessThan(container, "Person", 5);
  1710. },
  1711. "desc": function(container, macro, verbose, flat) {
  1712. return "You crush " + container.contents["Car"].describe() + " with your tight throat, washing it down with " + container.contents["Person"].describe();
  1713. }
  1714. });
  1715. rules["eat"].push({
  1716. "test": function(container, macro) {
  1717. return hasExactly(container, "Small Skyscraper", 1) &&
  1718. nothingLarger(container, "Small Skyscraper") &&
  1719. macro.height < 500;
  1720. },
  1721. "desc": function(container, macro, verbose, flat) {
  1722. return "You drop onto your hands and knees, " + macro.jawDesc(true) + " opening wide to envelop the skyscraper. It glides into your throat as your snout touches the ground,\
  1723. and you suckle on it for a long moment before twisting your head to snap it loose. The entire building, along with " + describe_all(container.contents["Small Skyscraper"].contents, verbose) + "\
  1724. within, plunge into your roiling guts. You wash it down with some delicious treats you slurped up along with it - " + describe_all(container.contents, verbose, ["Small Skyscraper"]) + ".";
  1725. }
  1726. });
  1727. rules["eat"].push({
  1728. "test": function(container, macro) {
  1729. return hasExactly(container, "Small Skyscraper", 2) &&
  1730. nothingLarger(container, "Small Skyscraper") &&
  1731. macro.height < 750;
  1732. },
  1733. "desc": function(container, macro, verbose, flat) {
  1734. return "You drop onto your hands and knees, " + macro.jawDesc(true) + " opening wide to envelop the skyscraper. It glides into your throat as your snout touches the ground,\
  1735. and you suckle on it for a long moment before twisting your head to snap it loose. Without missing a beat, you rise back up, sloppy tongue slathering over the side \
  1736. of the remaining tower, sucking on its tip and roughly shoving it into your maw. It breaks from its foundation, vanishing past your lips as you use two fingers to shove it \
  1737. down your sultry throat. Your gut bubbles as " + describe_all(container.contents["Small Skyscraper"].contents, verbose) + " are crunched and crushed within, along with the \
  1738. " + describe_all(container.contents, verbose, ["Small Skyscraper"]) + " that were unfortunate enough to be caught up by your slimy tongue.";
  1739. }
  1740. });
  1741. // CHEWING
  1742. rules["chew"].push({
  1743. "test": function(container, macro) {
  1744. return hasOnly(container, ["Person"]) &&
  1745. hasExactly(container, "Person", 1) &&
  1746. isGory(macro) &&
  1747. macro.height < 5;
  1748. }, "desc": function(container, macro, verbose, flat) {
  1749. return "You tackle a " + container.describe(verbose) + " and dig into your meal, powerful " + macro.jawDesc(true) + " ripping them to shreds in seconds. You wolf down great mouthfuls \
  1750. of meat, consuming them in a terrifying frenzy that ends with naught but bones lying on the ground.";
  1751. }
  1752. });
  1753. rules["chew"].push({
  1754. "test": function(container, macro) {
  1755. return hasOnly(container, ["Person"]) &&
  1756. hasExactly(container, "Person", 1) &&
  1757. isGory(macro) &&
  1758. macro.height >= 5;
  1759. }, "desc": function(container, macro, verbose, flat) {
  1760. return "You snatch up a " + container.describe(verbose) + ", then stuff their lower body into the guillotine that is your ravenous maw - slicing off their legs with \
  1761. a single disgusting <i>crunch</i>, then finishing them off with another ravenous bite that obliterates their torso. Their bleeding head falls from your lips, only to be \
  1762. caught between two fingers and popped back in to be crunched between molars and swallowed.";
  1763. }
  1764. });
  1765. // STOMPING
  1766. rules["stomp"].push({
  1767. "test": function(container, macro) {
  1768. return hasOnly(container, ["Person"]) &&
  1769. hasExactly(container, "Person", 1) &&
  1770. isFatal(macro);
  1771. }, "desc": function(container, macro, verbose, flat) {
  1772. return "Your heavy " + macro.footDesc() + " slams down on " + container.describe(verbose) + ", smashing the poor thing like an insect.";
  1773. }
  1774. });
  1775. rules["stomp"].push({
  1776. "test": function(container, macro) {
  1777. return hasOnly(container, ["Person"]) &&
  1778. hasExactly(container, "Person", 1) &&
  1779. isGory(macro);
  1780. }, "desc": function(container, macro, verbose, flat) {
  1781. return "Your " + macro.footDesc() + " thumps " + container.describe(verbose) + ", shoving your victim to the ground and cracking them open like an egg.";
  1782. }
  1783. });
  1784. rules["stomp"].push({
  1785. "test": function(container, macro) {
  1786. return hasOnly(container, ["Person"]) &&
  1787. hasExactly(container, "Person", 1) &&
  1788. isGory(macro);
  1789. }, "desc": function(container, macro, verbose, flat) {
  1790. return "Your shadow falls over " + container.describe(verbose) + ", and your " + macro.footDesc() + " follows, crushing their soft body and reducing them to a heap of broken gore.";
  1791. }
  1792. });
  1793. rules["stomp"].push({
  1794. "test": function(container, macro) {
  1795. return hasNothingElse(container, ["Person","Cow","Car"]) &&
  1796. isNonFatal(macro);
  1797. }, "desc": function(container, macro, verbose, flat) {
  1798. return "Your " + macro.footDesc() + " smooshes over " + container.describe(verbose) + ". They stick to your " + macro.toeDesc(true) + ", carried along for the ride as you take another few steps before finally\
  1799. falling off.";
  1800. }
  1801. });
  1802. rules["stomp"].push({
  1803. "test": function(container, macro) {
  1804. return hasOnly(container, ["Person"]) &&
  1805. hasExactly(container, "Person", 1) &&
  1806. isFatal(macro);
  1807. }, "desc": function(container, macro, verbose, flat) {
  1808. return "Your heavy " + macro.footDesc() + " slams down on " + container.describe(verbose) + ", smashing the poor thing like an insect.";
  1809. }
  1810. });
  1811. rules["stomp"].push({
  1812. "test": function(container, macro) {
  1813. return hasOnly(container, ["Bus"]) &&
  1814. hasExactly(container, "Bus", 1) &&
  1815. isFatal(macro);
  1816. }, "desc": function(container, macro, verbose, flat) {
  1817. return "Your heavy " + macro.footDesc() + " slams down on " + container.describe(verbose) + ", smashing the poor thing like an insect.";
  1818. }
  1819. });
  1820. rules["stomp"].push({
  1821. "test": function(container, macro) {
  1822. return hasOnly(container, ["Person","Car", "Bus"]) &&
  1823. hasExactly(container, "Bus", 1) &&
  1824. hasLessThan(container, "Car", 10);
  1825. }, "desc": function(container, macro, verbose, flat) {
  1826. return "You punt a " + container.contents["Bus"].describe(verbose) + ", sending it tumbling down the road into a " + describe_all(container.contents, verbose, flat, ["Bus"]);
  1827. }
  1828. });
  1829. // ANAL VORE
  1830. rules["anal-vore"].push({
  1831. "test": function(container, macro) {
  1832. return hasExactly(container, "Person", 1) &&
  1833. hasOnly(container, ["Person"]);
  1834. }, "desc": function(container, macro, verbose, flat) {
  1835. let adjective = ["musky","winding","churning"][Math.floor(Math.random()*3)];
  1836. return "Your weighty rump slams against the ground. A shock of pleasure runs up your spine as a " + container.describe(verbose) + " slides up your ass," +
  1837. (macro.maleParts ? " grinding against your prostate" : "") + ". A powerful clench drags them deeper into your bowels, sealing them away in your " + adjective + " depths.";
  1838. }
  1839. });
  1840. rules["anal-vore"].push({
  1841. "test": function(container, macro) {
  1842. return hasExactly(container, "Car", 1) &&
  1843. hasOnly(container, ["Car"]);
  1844. }, "desc": function(container, macro, verbose, flat) {
  1845. return "You ram " + container.describe(verbose) + " up your ass, biting your lip as it" + (macro.maleParts ? " rubs along your prostate" : " slides into velvety depths") + ".\
  1846. You moan and clench hard, yanking it in with a wet <i>shlrrp</i> and abruplty silencing its blaring horn.";
  1847. }
  1848. });
  1849. rules["anal-vore"].push({
  1850. "test": function(container, macro) {
  1851. return hasExactly(container, "Bus", 1) &&
  1852. hasOnly(container, ["Bus"]);
  1853. }, "desc": function(container, macro, verbose, flat) {
  1854. return "A speeding bus slams on its brakes as you abruptly sit - but it's too late to stop. A gasp flies from your lips as it penetrates your greedy ass, sinking halfway in and coming to a halt. \
  1855. You grunt and squeeze, causing its frame to creak and groan. Two fingers to the back are enough to get it moving again, and it slowly works inside. You shiver and moan, taking it in all the way. \
  1856. Your ass claims " + container.describe(verbose) + ".";
  1857. }
  1858. });
  1859. rules["anal-vore"].push({
  1860. "test": function(container, macro) {
  1861. return hasExactly(container, "Train", 1) &&
  1862. hasOnly(container, ["Train"]);
  1863. }, "desc": function(container, macro, verbose, flat) {
  1864. var cars = container.contents["Train"].contents["Train Car"].count;
  1865. return "Your massive fingers wrap around a train, yanking it from the rails with a tremendous screech of metal-on-metal. You squat down low, eyes rolling back in anticipation as you thrust the locomotive towards your massive ass - and then it hits home. A moan of pleasure shakes the earth, your ravenous pucker spread around the engine and sucking it in with a <i>squelch</i>. Powerful muscles squeeze and grab...and " + container.describe(verbose) + " swiftly vanishes into your bowels, every one of the " + cars + " cars a fresh shock of pleasure as they glide into your musky depths.";
  1866. }
  1867. });
  1868. rules["anal-vore"].push({
  1869. "test": function(container, macro) {
  1870. return hasExactly(container, "Planet", 1) &&
  1871. hasOnly(container, ["Planet"]);
  1872. }, "desc": function(container, macro, verbose, flat) {
  1873. return "Your enormous hands guide a planet towards your cheeks - pressing it firmly into your pucker with a dull, muffled <i>shlph</i>...and " + container.describe(verbose) + " sinks into your bowels, sealed away from the universe...";
  1874. }
  1875. });