123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- # LakeBoyZ
- $gL_boy_z = {
- act '<<$pcs_nickname>>':
- cls
- gs 'stat'
- 'He seems nice enough so you decide to give him your name.'
- randvnesh = rand(40,120)
- if rand(0,10) = 0 and pcs_apprnc >= randvnesh:
- '<<$boydesc>> smiles as he says, "You''re a pretty cool girl. Maybe we can hang out again?"'
- act 'Smile and leave': gt 'glake'
- act 'Give him your phone number':
- cls
- pcs_mood += 10
- gs 'boy', 'details'
- if rand(0,2) = 0: gs 'boyfrend','start'
- minut += 5
- bmFrend[Tboynum] = 1
- gs 'stat'
- 'You give <<$boydesc>> your phone number and he adds it to his contact list.'
- 'He then excuses himself and leaves, promising to call you.'
- act 'Return': gt 'glake'
- end
- else
- '<<$boydesc>> sits closer to you and offers you a cold beer.'
- act 'Smile and leave':gt'glake'
- act 'Drink beer':
- cls
- minut += 15
- gs 'drugs', 'alcohol', 'beer', 1
- gs 'stat'
- 'You drink beer with the guy, and the two of you chat for a while.'
- 'Suddenly, he puts his hand on your thigh.'
- '"Another beer, <<$pcs_nickname>>?"'
- gs 'willpower', 'drink', 'resist', 'easy'
- if will_cost <= pcs_willpwr:
- act 'Thank him for the beer and leave (<<will_cost>> Willpower)': gs 'willpower', 'pay', 'resist' & gt 'glake'
- else
- act 'Thank him for the beer and leave (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
- end
- act 'Drink some more beer':
- cls
- gs 'drugs', 'alcohol', 'beer', 1
- gs 'arousal', 'foreplay', 5
- gs 'stat'
- 'You drink more beer with <<$boydesc>>. He begins stroking your leg and puts his hand on your chest as he leans into you.'
- if rand(1,100) <= 20:
- 'Leaned in he whispers to you, "I need to taste those lips."'
- gs 'willpower', 'kiss', 'resist', 'easy'
- if will_cost <= pcs_willpwr:
- act 'Push him away and leave (<<will_cost>> Willpower)': gs 'willpower', 'pay', 'resist' & gt 'glake'
- else
- act 'Push him away and leave (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
- end
- act 'Kiss him':
- cls
- gs 'arousal', 'kiss', 5
- gs 'arousal', 'end'
- gs 'stat'
- 'You passionately kiss <<$boydesc>>, as he continues to caress your body, paying particular interest to your breasts.'
- '<<$boydesc>> invites you to his house.'
- gs 'willpower', 'sex', 'resist', 'easy'
- if will_cost <= pcs_willpwr:
- act 'Call it a day and leave (<<will_cost>> Willpower)': gs 'willpower', 'pay', 'resist' & gt 'glake'
- else
- act 'Call it a day and leave (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
- end
- act 'Follow him to his house':
- if $clothingworntype = 'nude':
- gs 'clothing', 'wear_last_worn'
- if $clothingworntype = 'swimwear':gs 'clothing', 'wear', $normalclothingworntype, normalclothingwornno
- gt 'LBZhouse'
- else
- gs 'clothing', 'wear', $normalclothingworntype, normalclothingwornno
- gt 'LBZhouse'
- end
- end
- end
- else
- '<<$boydesc>> smiles and suggests that the two of you go for a walk.'
- act 'Reject and leave':gt'glake'
- act 'Agree':
- cls
- minut += 15
- if $clothingworntype = 'nude':
- gs 'clothing', 'wear_last_worn'
- if $clothingworntype = 'swimwear':gs 'clothing', 'wear', $normalclothingworntype, normalclothingwornno
- else
- gs 'clothing', 'wear', $normalclothingworntype, normalclothingwornno
- end
- gs'stat'
- 'You quickly get changed into your regular clothes and go for a walk with <<$boydesc>>.'
- '<<$boydesc>> invites you over to his house.'
- gs 'willpower', 'sex', 'resist', 'easy'
- if will_cost <= pcs_willpwr:
- act 'Call it a day and leave (<<will_cost>> Willpower)': gs 'willpower', 'pay', 'resist' & gt 'glake'
- else
- act 'Call it a day and leave (<font color="red"><<will_cost>> Willpower</font>)': '<br><font color="red">You don''t have enough willpower to use this action.</font>'
- end
- act 'Follow him to his house':gt'LBZhouse'
- end
- end
- end
- end
- end
- end
- }
- --- LakeBoyZ ---------------------------------
|