123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- # traits
- if $ARGS[0] = 'menu':
- *clr & cla
- gs 'obj_din', 'chartabs'
- '<center><h2>Traits</h2></center>'
- '<center><table cellspacing="0" cellpadding="20" valign="top"><tr>'
- '<td>'
- '<center><b>Bimbo</b></center>'
- if bimbolevel = 0:
- 'You do not have this trait.'
- 'To gain this trait you must wear bimbo clothing / shoes for a few days.'
- 'You have <<bimbo>> out of 10 points towards level 1.'
- elseif bimbolevel = 1:
- 'You have this trait at level 1.'
- 'To maintain this trait you must wear bimbo clothing / shoes and/or have regular sex.'
- 'Due to this trait you gain a very small bonus to appearance and a very small penalty to intelligence.'
- 'You have <<bimbo>> out of 20 points towards level 2.'
- if bimbowithdrawal = 0:
- 'You are not in withdrawal.'
- else
- 'You have <<bimbowithdrawal>> out of 30 points towards losing this trait.'
- end
- elseif bimbolevel = 2:
- 'You have this trait at level 2.'
- 'To maintain this trait you must wear bimbo clothing / shoes and/or have regular sex.'
- 'Due to this trait you gain a small bonus to appearance and a small penalty to intelligence.'
- 'You have <<bimbo>> out of 30 points towards level 3.'
- if bimbowithdrawal = 0:
- 'You are not in withdrawal.'
- else
- 'You have <<bimbowithdrawal>> out of 30 points towards losing this trait.'
- end
- else
- 'You have this trait at level 3.'
- 'To maintain this trait you must wear bimbo clothing / shoes and/or have regular sex.'
- 'Due to this trait you gain a moderate bonus to appearance and a moderate penalty to intelligence.'
- if bimbowithdrawal = 0:
- 'You are not in withdrawal.'
- else
- 'You have <<bimbowithdrawal>> out of 30 points towards losing this trait.'
- end
- end
- *nl
- '<center><b>Exhibitionist</b></center>'
- if Exhibitionist_lvl = 0 and exhib_cheat = 0:
- 'You do not have this trait.'
- 'To gain this trait you must have low enough inhibition and choose to expose your breasts in public.'
- 'You have <<pcs_exhib>> out of 10 points towards level 1. This will slowly decrease each day unless you expose yourself.'
- elseif Exhibitionist_lvl = 1:
- 'You have this trait at level 1.'
- 'To increase this trait you must choose to expose your breasts and/or bare bottom in public.'
- 'This trait grants you a small amount or excitement from exposing yourself.'
- 'You have <<pcs_exhib>> out of 50 points towards level 2.'
- elseif Exhibitionist_lvl = 2:
- 'You have this trait at level 2.'
- 'To increase this trait you must choose to expose your breasts, bare bottom and/or pussy in public.'
- 'This trait grants you a moderate amount or excitement from exposing yourself.'
- if pcs_exhib < 100:
- 'You have <<pcs_exhib>> out of 100 points towards level 3.'
- else
- 'You must trigger an event in the park to gain level 3.'
- end
- else
- 'You have this trait at level 3.'
- 'This is the highest level of this trait.'
- 'This trait grants you a large amount or excitement from exposing yourself.'
- end
- *nl
- '<center><b>Cumeater</b></center>'
- if trt_cumeater = 0 and cumeater_cheat = 0:
- 'You do not have this trait.'
- 'To gain this trait you must swallow cum 10 times.'
- 'You have swallowed cum <<swallow>> times.'
- elseif trt_cumeater = 0 and cumeater_cheat = 1:
- 'You do not have this trait.'
- else
- 'You have this trait.'
- 'It allows you to remove cum from certain locations and eat it'
- 'This trait cannot be lost.'
- end
- act 'Exit the menu': gt $loc, $metka
- '</td></tr></table></center>'
- end
- if $ARGS[0] = 'hourly':
- if swallow >= 10 and trt_cumeater = 0 and cumeater_cheat = 0:
- trt_cumeater = 1
- msg 'You have gained the trait "Cumeater"'
- end
- end
- if $ARGS[0] = 'overnight':
- end
- --- traits ---------------------------------
|