summaryrefslogtreecommitdiff
path: root/scripts/toy.groovy
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2019-06-23 19:18:05 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2019-06-23 21:18:22 +0100
commit7a2ab4ce528b6fc315bd1ead0670076a34e81f43 (patch)
tree2777e3fc6167130121f21d309c97c90c84eccf39 /scripts/toy.groovy
parentExtract bondage into a module (diff)
downloadtoy-7a2ab4ce528b6fc315bd1ead0670076a34e81f43.zip
Move clampPulls
Diffstat (limited to 'scripts/toy.groovy')
-rw-r--r--scripts/toy.groovy47
1 files changed, 0 insertions, 47 deletions
diff --git a/scripts/toy.groovy b/scripts/toy.groovy
index 213232a..cea79c0 100644
--- a/scripts/toy.groovy
+++ b/scripts/toy.groovy
@@ -255,53 +255,6 @@ return new Object() {
}
return tt;
};
- def clampPulls = { amount ->
- getRandom(1 + amount).times {
- if (getRandom(2)) {
- present([DRESSED], [
- ["Take them off.", "Remove them."]]);
- wait(6 + getRandom(8));
- if (getRandom(2)) {
- present([DRESSED], [
- ["And put them back on", "Put them back"],
- ["right where they came from.", "where they were."]]);
- }
- else {
- present([DRESSED], [
- ["Flip them", "Turn them"],
- ["90 degrees", "around"],
- ["and put them back.", "and replace them."]]);
- }
- wait(10 + getRandom(8));
- }
- else if (getRandom(2)) {
- present([DRESSED], [
- ["Twist them"],
- ["for me.", "... twist those nipples."]]);
- wait(6 + getRandom(5));
- if (getRandom(2)) {
- present(null, [
- ["More!", "A little more!", "Further!"]]);
- wait(getRandom(10) + 2);
- }
- }
- present([DRESSED], [
- ["Pull them tight.", "Pull them!"]]);
- wait(getRandom(10) + 5);
- if (getRandom(5) == 0) {
- present(null, [
- ["Tighter!", "Harder!", "Further!"]]);
- wait(getRandom(10) + 2);
- present(null, [
- ["Haha!", "Ooo, they must hurt.", "Do they hurt?"]]);
- wait(3);
- }
- present(null, [
- ["Release them.", "Let them go."]]);
- wait(getRandom(5) + 3);
- };
- return amount;
- };
// Pre-tease
def preStrip = { imageSpec = [DRESSED] ->
if (stateIs(NAKED)) return 1.1;