diff options
Diffstat (limited to 'scripts/toy.groovy')
-rw-r--r-- | scripts/toy.groovy | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/toy.groovy b/scripts/toy.groovy index 67e229c..7190cfb 100644 --- a/scripts/toy.groovy +++ b/scripts/toy.groovy @@ -460,7 +460,7 @@ def preGag = { showButtonGT("Gagged, mistress", "gagged", 20, 2); return 1.2; }; -def preClamps = { +def clamps = { if (is(CLAMPED)) return; present([DRESSED], likes(PAIN) ? [ @@ -483,6 +483,8 @@ def preClamps = { ["On your knees,", "Kneel before me"], ["let me see.", "hands behind your back."]]); wait(getRandom(10) + 5); +}; +def preClamps = { clampPulls(getRandom(4)); return 1.8; }; @@ -773,7 +775,7 @@ def playBondage = { }; def playClamps = { if (!has(CLAMPS)) return; - if (!is(CLAMPED)) return preClamps(); + if (!is(CLAMPED)) clamps(); present([DRESSED], [ ["Those nipple clamps", "Clamped nipples..."], ["they look painful.", "jiggle them about for me!"]]); |