|
@@ -874,7 +874,7 @@ if $ARGS[0] = 'razvod':
|
|
|
act 'Leave (<<will_cost>> Willpower)':
|
|
|
*clr & cla
|
|
|
gs 'willpower', 'pay', 'resist'
|
|
|
- minut +5
|
|
|
+ minut += 5
|
|
|
gs 'stat'
|
|
|
gt 'street'
|
|
|
end
|
|
@@ -889,7 +889,7 @@ if $ARGS[0] = 'razvod':
|
|
|
act 'Leave (<<will_cost>> Willpower)':
|
|
|
*clr & cla
|
|
|
gs 'willpower', 'pay', 'resist'
|
|
|
- minut +5
|
|
|
+ minut += 5
|
|
|
gs 'stat'
|
|
|
gt 'street'
|
|
|
end
|
|
@@ -904,29 +904,27 @@ if $ARGS[0] = 'razvod':
|
|
|
act 'Leave (<<will_cost>> Willpower)':
|
|
|
*clr & cla
|
|
|
gs 'willpower', 'pay', 'resist'
|
|
|
- minut +5
|
|
|
+ minut += 5
|
|
|
gs 'stat'
|
|
|
if hotcat >= 6:
|
|
|
'"Come on, baby, I will give you two thousand <b>₽</b>. Daddy wants to have fun."'
|
|
|
+ gs 'willpower', 'prostitution', 'resist', 'medium'
|
|
|
+ if will_cost <= pcs_willpwr:
|
|
|
+ act 'Tell him to fuck off (<<will_cost>> Willpower)':
|
|
|
+ gs 'willpower', 'pay', 'resist'
|
|
|
+ gt 'street'
|
|
|
+ end
|
|
|
+ else
|
|
|
+ act 'Tell him to fuck off (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
|
|
|
+ end
|
|
|
act 'Meet in bathroom':
|
|
|
money += 2000
|
|
|
gt 'cafe3', 'toilet'
|
|
|
end
|
|
|
else
|
|
|
'"Well, okay, get out of here, you are ugly anyway."'
|
|
|
+ act 'Continue': gt 'street'
|
|
|
end
|
|
|
- gs 'willpower', 'prostitution', 'resist', 'medium'
|
|
|
- if will_cost <= pcs_willpwr:
|
|
|
- act 'Tell him to fuck off (<<will_cost>> Willpower)':
|
|
|
- *clr & cla
|
|
|
- gs 'willpower', 'pay', 'resist'
|
|
|
- minut +5
|
|
|
- gs 'stat'
|
|
|
- gt 'street'
|
|
|
- end
|
|
|
- else
|
|
|
- act 'Tell him to fuck off (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
|
|
|
- end
|
|
|
end
|
|
|
else
|
|
|
act 'Leave (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
|