summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2018-12-28 00:48:48 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2018-12-28 00:48:48 +0000
commit053a6aa5ac0ccbb2b1c940461ad4c874af04ed0b (patch)
treecc09d0b21ce3443b969fa2049dd94a7e7cd17edb
parentEnsure play cannot occur when owner is away (diff)
downloadtoy-053a6aa5ac0ccbb2b1c940461ad4c874af04ed0b.zip
Increase timing in clamp play
-rw-r--r--scripts/toy.groovy8
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;