_pube_image.qsrc 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. # $pube_image
  2. !!use with - <img <<$set_imgh>> src="<<FUNC(''$pube_image'')>>">
  3. !! Expanded use that can call specific lengths, colours and styles (for shave menu):
  4. !! func('$pube_image', [pube length], [pube colour num], [pube style])
  5. $RESULT = 'images/pc/body/pussy/'
  6. if ARGS[0] ! 0: temp_pubes = ARGS[0] else temp_pubes = pcs_pubes
  7. if ARGS[1] ! 0: temp_pubecol = ARGS[1] else temp_pubecol = pcs_pubecol[2]
  8. if ARGS[2] ! 0: temp_pubestyle = ARGS[2] else temp_pubestyle = pubestyle
  9. if temp_pubecol = 0:
  10. $temp_pubecol = 'black'
  11. elseif temp_pubecol = 1:
  12. $temp_pubecol = 'brunette'
  13. elseif temp_pubecol = 2:
  14. $temp_pubecol = 'ginger'
  15. elseif temp_pubecol = 3:
  16. $temp_pubecol = 'blonde'
  17. elseif temp_pubecol = 4:
  18. $temp_pubecol = 'red'
  19. elseif temp_pubecol = 5:
  20. $temp_pubecol = 'blue'
  21. elseif temp_pubecol = 6:
  22. $temp_pubecol = 'green'
  23. elseif temp_pubecol = 7:
  24. $temp_pubecol = 'pink'
  25. elseif temp_pubecol = 8:
  26. $temp_pubecol = 'purple'
  27. end
  28. if $ARGS[0] = 0 and lashair = 0:
  29. if temp_pubes <= 3:
  30. $RESULT += 'hair/pussy'
  31. elseif temp_pubes <= 10:
  32. $RESULT += 'hair/stubble'
  33. elseif temp_pubes <= 15:
  34. $RESULT += 'hair/very_short'
  35. elseif temp_pubes <= 25:
  36. if temp_pubestyle = 2:
  37. $RESULT += 'shave/<<$temp_pubecol>>_v'
  38. elseif temp_pubestyle = 3:
  39. $RESULT += 'shave/<<$temp_pubecol>>_triangle'
  40. elseif temp_pubestyle = 4:
  41. $RESULT += 'shave/<<$temp_pubecol>>_landing'
  42. elseif temp_pubestyle = 5:
  43. $RESULT += 'shave/<<$temp_pubecol>>_heart'
  44. elseif temp_pubestyle = 6:
  45. $RESULT += 'shave/<<$temp_pubecol>>_flame'
  46. elseif temp_pubestyle = 7:
  47. $RESULT += 'shave/<<$temp_pubecol>>_cross'
  48. elseif temp_pubestyle = 8:
  49. $RESULT += 'shave/<<$temp_pubecol>>_trimmed'
  50. elseif temp_pubestyle = 12:
  51. $RESULT += 'shave/<<$temp_pubecol>>_mini'
  52. elseif temp_pubestyle = 13:
  53. $RESULT += 'shave/<<$temp_pubecol>>_strip'
  54. elseif temp_pubestyle = 14:
  55. $RESULT += 'shave/<<$temp_pubecol>>_rectangle'
  56. else
  57. $RESULT += 'hair/<<$temp_pubecol>>_small'
  58. end
  59. elseif temp_pubes <= 35:
  60. $RESULT += 'hair/<<$temp_pubecol>>_mid'
  61. else
  62. $RESULT += 'hair/<<$temp_pubecol>>_full'
  63. end
  64. else
  65. $RESULT += 'hair/pussy'
  66. end
  67. killvar 'temp_pubes' & killvar 'temp_pubecol' & killvar 'temp_pubestyle'
  68. $RESULT += '.jpg'
  69. --- $pube_image ---------------------------------