homepage/content/toys/crunt.md

34 lines
641 B
Markdown
Raw Normal View History

2017-07-09 18:13:41 -06:00
---
2022-09-04 16:59:13 -06:00
title: Crunt
2017-07-09 18:13:41 -06:00
---
2017-07-08 15:09:11 -06:00
<span id="crunt">
</span>
2022-09-04 16:59:13 -06:00
<b>CRUNT</b><a href="http://www.subgenius.com/bigfist/bulldada/X0033_RAELIAN.TXT.html">!</a>
2017-07-08 15:09:11 -06:00
<script>
function crunt() {
if (Math.random() < 0.5) {
return "CRUNT";
} else {
return "crunt";
}
}
function init() {
var p = document.getElementById("crunt");
var out = [];
var crunts = Math.floor(Math.random() * 300) + 200;
var babies = crunts * 3 / 4;
for (var i = 0; i < crunts; i += 1) {
out.push(crunt());
}
for (var i = 0; i < babies; i += 1) {
out.push("crunt");
}
p.textContent = out.join(" ");
}
window.addEventListener("load", init);
2022-09-04 16:59:13 -06:00
</script>