ソースを参照

[fixed] foreplay_give was not being counted in arousal + removed my comments in willpower + setting will_cost for forced foreplay to a similar value as other soft-sex options

Sicaa 5 年 前
コミット
0464b7e1bf
2 ファイル変更2 行追加4 行削除
  1. 1 0
      locations/arousal.qsrc
  2. 1 4
      locations/willpower.qsrc

+ 1 - 0
locations/arousal.qsrc

@@ -758,6 +758,7 @@ if $ARGS[0] = 'end':
 	gs 'arousal', 'count', 'BDSM'
 	gs 'arousal', 'count', 'pee'
 
+	gs 'arousal', 'count', 'foreplay_give'
 	gs 'arousal', 'count', 'cuni_give'
 	gs 'arousal', 'count', 'rimming_give'
 	gs 'arousal', 'count', 'anal_finger_give'

+ 1 - 4
locations/willpower.qsrc

@@ -637,11 +637,8 @@ if $ARGS[0] = 'kiss':
 	end	
 end
 
-! Something for sex stuff that''s not covered by other caregories. Like touching, fondling, etc.
 if $ARGS[0] = 'foreplay':
 	gs 'willpower', 'calc'
-	! Attempt at giving relevant things different weight. Throw away if it seems wrong
-	foreplay_check = ((stat['hj'] + stat['bj'])/2 + stat['vaginal'] + stat['anal'] + (stat['cuni'] + stat['trib'] + stat['massage'] + stat['massage_give'])/4)/4
 	
 	if $ARGS[1] = 'self':
 		if (stat['foreplay'] + stat['foreplay_give']) / 2 <= 90:
@@ -651,7 +648,7 @@ if $ARGS[0] = 'foreplay':
 		end
 	elseif $ARGS[1] = 'force':
 		if stat['foreplay_give'] <= 40:
-			will_cost = (160 - will_enforced - stat['foreplay_give'] + will_calc)/10
+			will_cost = (110 - will_enforced - stat['foreplay_give'] + will_calc)/10
 		else
 			will_cost = (70 - will_enforced + will_calc)/10
 		end