|
@@ -71,7 +71,7 @@ if $ARGS[0] = 'hj':
|
|
|
gs 'willpower', 'calc'
|
|
|
will_cost = 0
|
|
|
if stat['hj'] <= 90:
|
|
|
- will_cost = ((100 - stat['hj']) + will_calc)/10
|
|
|
+ will_cost = (stat['hj'] + will_calc)/10
|
|
|
else
|
|
|
will_cost = (10 + will_calc)/10
|
|
|
end
|
|
@@ -82,7 +82,7 @@ if $ARGS[0] = 'bj':
|
|
|
will_cost = 0
|
|
|
if missCum >= timeTresh: will_calc += 100
|
|
|
if stat['bj'] <= 90:
|
|
|
- will_cost = ((100 - stat['bj']) + will_calc)/10
|
|
|
+ will_cost = (stat['bj'] + will_calc)/10
|
|
|
else
|
|
|
will_cost = (10 + will_calc)/10
|
|
|
end
|
|
@@ -92,7 +92,7 @@ if $ARGS[0] = 'sex':
|
|
|
gs 'willpower', 'calc'
|
|
|
will_cost = 0
|
|
|
if stat['vaginal'] <= 90:
|
|
|
- will_cost = ((100 - stat['vaginal']) + will_calc)/10
|
|
|
+ will_cost = (stat['vaginal'] + will_calc)/10
|
|
|
else
|
|
|
will_cost = (10 + will_calc)/10
|
|
|
end
|
|
@@ -103,7 +103,7 @@ if $ARGS[0] = 'anal':
|
|
|
will_cost = 0
|
|
|
if missCum >= timeTresh: will_calc += 100
|
|
|
if stat['anal'] <= 90:
|
|
|
- will_cost = ((100 - stat['anal']) + will_calc)/10
|
|
|
+ will_cost = (stat['anal'] + will_calc)/10
|
|
|
else
|
|
|
will_cost = (10 + will_calc)/10
|
|
|
end
|
|
@@ -114,7 +114,7 @@ if $ARGS[0] = 'gangbang':
|
|
|
will_cost = 0
|
|
|
if missCum >= timeTresh: will_calc += 100
|
|
|
if stat['group'] <= 90:
|
|
|
- will_cost = ((100 - stat['group']) + will_calc)/10
|
|
|
+ will_cost = (stat['group'] + will_calc)/10
|
|
|
else
|
|
|
will_cost = (10 + will_calc)/10
|
|
|
end
|
|
@@ -126,7 +126,7 @@ if $ARGS[0] = 'prostitution':
|
|
|
if missCum >= timeTresh: will_calc += 100
|
|
|
prost_will = pav_prostitute + city_prostitute + oldtown_prostitute + village_prostitute
|
|
|
if prost_will <= 90:
|
|
|
- will_cost = ((100 - prost_will) + will_calc)/10
|
|
|
+ will_cost = (prost_will + will_calc)/10
|
|
|
else
|
|
|
will_cost = (10 + will_calc)/10
|
|
|
end
|
|
@@ -159,7 +159,7 @@ if $ARGS[0] = 'skill':
|
|
|
gs 'willpower', 'calc'
|
|
|
will_cost = 0
|
|
|
if $ARGS[0] = 'inhib_lvl':
|
|
|
- will_cost = (100 - pcs_inhib + will_calc)/10
|
|
|
+ will_cost = (pcs_inhib + will_calc)/10
|
|
|
else
|
|
|
dynamic 'will_cost = <<$ARGS[1]>> + will_calc)/10'
|
|
|
end
|
|
@@ -216,7 +216,7 @@ if $ARGS[0] = 'exhib':
|
|
|
elseif pcs_inhib > 70:
|
|
|
will_cost = (3 + will_calc)/10
|
|
|
else
|
|
|
- will_cost = (100 - pcs_inhib + will_calc)/10
|
|
|
+ will_cost = (pcs_inhib + will_calc)/10
|
|
|
end
|
|
|
end
|
|
|
|