diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/toy.groovy | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/toy.groovy b/scripts/toy.groovy index 8c8a2de..e01a63a 100644 --- a/scripts/toy.groovy +++ b/scripts/toy.groovy @@ -499,7 +499,7 @@ def clampPulls = { amount -> if (getRandom(2)) { present([DRESSED], [ ["Take them off.", "Remove them."]]); - wait(3 + getRandom(8)); + wait(6 + getRandom(8)); if (getRandom(2)) { present([DRESSED], [ ["And put them back on", "Put them back"], @@ -511,13 +511,13 @@ def clampPulls = { amount -> ["90 degrees", "around"], ["and put them back.", "and replace them."]]); } - wait(3 + getRandom(8)); + wait(10 + getRandom(8)); } else if (getRandom(2)) { present([DRESSED], [ ["Twist them"], ["for me.", "... twist those nipples."]]); - wait(3 + getRandom(8)); + wait(6 + getRandom(5)); if (getRandom(2)) { present(null, [ ["More!", "A little more!", "Further!"]]); @@ -536,7 +536,7 @@ def clampPulls = { amount -> wait(3); } present(null, [ - ["And release.", "Let go."]]); + ["Release them.", "Let them go."]]); wait(getRandom(5) + 3); }; return amount; |