traits.qsrc 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. # traits
  2. if $ARGS[0] = 'menu':
  3. clr
  4. pl '<center>Traits Menu</center>'
  5. pl'<a href="exec:gs ''stat''">Leave</a>'
  6. nl
  7. pl '<b>Bimbo</b>'
  8. if bimbolevel = 0:
  9. pl 'You do not have this trait.'
  10. pl 'To gain this trait you must wear bimbo clothing / shoes for a few days.'
  11. pl 'You have <<bimbo>> out of 10 points towards level 1.'
  12. elseif bimbolevel = 1:
  13. pl 'You have this trait at level 1.'
  14. pl 'To maintain this trait you must wear bimbo clothing / shoes and/or have regular sex.'
  15. pl 'Due to this trait you gain a very small bonus to appearance and a very small penalty to intelligence.'
  16. pl 'You have <<bimbo>> out of 20 points towards level 2.'
  17. if bimbowithdrawal = 0:
  18. pl 'You are not in withdrawal.'
  19. else
  20. pl 'You have <<bimbowithdrawal>> out of 30 points towards losing this trait.'
  21. end
  22. elseif bimbolevel = 2:
  23. pl 'You have this trait at level 2.'
  24. pl 'To maintain this trait you must wear bimbo clothing / shoes and/or have regular sex.'
  25. pl 'Due to this trait you gain a small bonus to appearance and a small penalty to intelligence.'
  26. pl 'You have <<bimbo>> out of 30 points towards level 3.'
  27. if bimbowithdrawal = 0:
  28. pl 'You are not in withdrawal.'
  29. else
  30. pl 'You have <<bimbowithdrawal>> out of 30 points towards losing this trait.'
  31. end
  32. else
  33. pl 'You have this trait at level 3.'
  34. pl 'To maintain this trait you must wear bimbo clothing / shoes and/or have regular sex.'
  35. pl 'Due to this trait you gain a moderate bonus to appearance and a moderate penalty to intelligence.'
  36. if bimbowithdrawal = 0:
  37. pl 'You are not in withdrawal.'
  38. else
  39. pl 'You have <<bimbowithdrawal>> out of 30 points towards losing this trait.'
  40. end
  41. end
  42. nl
  43. pl '<b>Exhibitionist</b>'
  44. if Exhibitionist_lvl = 0:
  45. pl 'You do not have this trait.'
  46. pl 'To gain this trait you must have low enough inhibition and choose to expose your breasts in public.'
  47. pl 'You have <<pcs_exhib>> out of 10 points towards level 1. This will slowly decrease each day unless you expose yourself.'
  48. elseif Exhibitionist_lvl = 1:
  49. pl 'You have this trait at level 1.'
  50. pl 'To increase this trait you must choose to expose your breasts and/or bare bottom in public.'
  51. pl 'This trait grants you a small amount or excitement from exposing yourself.'
  52. pl 'You have <<pcs_exhib>> out of 50 points towards level 2.'
  53. elseif Exhibitionist_lvl = 2:
  54. pl 'You have this trait at level 2.'
  55. pl 'To increase this trait you must choose to expose your breasts, bare bottom and/or pussy in public.'
  56. pl 'This trait grants you a moderate amount or excitement from exposing yourself.'
  57. if pcs_exhib < 100:
  58. pl 'You have <<pcs_exhib>> out of 100 points towards level 3.'
  59. else
  60. pl 'You must trigger an event in the park to gain level 3.'
  61. end
  62. else
  63. pl 'You have this trait at level 3.'
  64. pl 'This is the highest level of this trait.'
  65. pl 'This trait grants you a large amount or excitement from exposing yourself.'
  66. end
  67. nl
  68. pl '<b>Cumeater</b>'
  69. if trt_cumeater = 0:
  70. pl 'You do not have this trait.'
  71. pl 'To gain this trait you must swallow cum 10 times.'
  72. pl 'You have swallowed cum <<swallow>> times.'
  73. else
  74. pl 'You have this trait.'
  75. pl 'It allows you to remove cum from certain locations and eat it'
  76. pl 'This trait cannot be lost.'
  77. end
  78. end
  79. if $ARGS[0] = 'hourly':
  80. if swallow >= 10 and trt_cumeater = 0:
  81. trt_cumeater = 1
  82. msg 'You have gained the trait "Cumeater"'
  83. end
  84. end
  85. if $ARGS[0] = 'overnight':
  86. end
  87. --- traits ---------------------------------