clothing_attributes 5.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. # clothing_attributes
  2. ! **Clothing Organization
  3. ! CloCategory: 1 Cheap, 2 Average, 3 Expensive, 4 Formal, 5 Office, 6 School, 7 Exercise, 8 Naughty, 9 Exhibit, 10 Uniform, 11 Coat, 12 Swimwear
  4. ! Notes: 1-3 are general purpose clothing, 4-7 are self-explanitory, 8 is basically all the stuff youd get at a lingere and sex shop (fetishwear, latex, underwear), 9 is more extreme stuff than 8 that would get you arrested on sight for indecent exposure. 10 is waitress and maid uniforms.
  5. ! CloStyle: 1 Girly, 2 Rebel, 3 Wealthy, 4 Exhibitionist, 5 is Loosefit
  6. ! Notes: 1 is clothing themed to give the impression of innocence of youth. 2 is for sterotypical punks; ripped clothing, leather jackets, etc. 3 gives the impression that theyre debutanttes or rich at first glance. 4 is stuff only worn only by exhibitionists (exposes privates, etc). 5 is formless clothing that doesnt requiring refitting.
  7. ! CloStyle2: 1 Maid, 2 Server
  8. ! Notes: Used to distinguish between the main types of uniform.
  9. !
  10. ! **Clothing Variables
  11. ! Scales use a 1-5 ramge. with 6 being a special case thats esssentialy nudity.
  12. !
  13. ! CloQuality = 1-7 scale, based on the general expensiveness of the clothing. Higher is more expensive.
  14. ! Notes: 7 is reserved for ballroom gowns, and other clothing that might only be found on celebrities or millionaires at red carpet events.
  15. ! Ex: 6-5 are the higher and lower levels of the expensive category
  16. ! 4-3 are the same for average category
  17. ! 2-1 are the same for cheap category.
  18. ! CloThinness = 1-6 scale, with higher values being made of thinner material and/or being more tightly fitting.
  19. ! Notes: Clothing with large cut-away sections or transparent sections should have a decreased CloThinness score
  20. ! Ex: 6 intentionally reveals breast or pubic areas, with translucent or transparent areas and should trigger some sort of indecent exposure/arrest event if worn in public without underwear.
  21. ! 5 is thin enough to be seen through only in bright light, or is otherwise tight enough to show the body in detail if opaque.
  22. ! 4 is thin or tight enough to be flirty and fine in most places except the most conservative (church, school, etc).
  23. ! 3-2 is the range of clothing that is modest enough to be worn in all public places.
  24. ! 1 does not follow the curves of the body in great detail, and makes it hard to see the body shape.
  25. ! CloTopCut = 1-4 scale* (with an additional +0-3 based on player breast sizes, for an effective 1-7 scale). System is based on based on how much skin on the torso is shown (including navel, not just above the breasts), with larger breasts implicitly making the outfit smaller and more revealing.
  26. ! Notes: Need to add modifiers based on breast size, where larger breasts end up forcing the player to show more cleavage than those with smaller breasts.
  27. ! Ex: 4 reveals over half the skin on the torso area,
  28. ! 3 has a deep neckline that reaches the cleavage between the breasts,
  29. ! 2 is a cut high enough to be considered appropriate in most places (above the cleavage, or just below where it starts),
  30. ! 1 is a neckline that ends very near the neck or higher.
  31. ! CloSkirtShortness = 1-6 scale. Higher values are shorter.
  32. ! Notes: Loose skirts sometimes rank higher than tight skirts of the same length, since they are more likely to flash others.
  33. ! Ex: 6 is short enough to reveal pubic areas at all times
  34. ! 5 is ~20% thigh length or less (microskirt), and can reveal underwear frequently
  35. ! 4 is ~40% thigh length (miniskirt) and may show underwear if bending over
  36. ! 3 is up to ~60% thigh length (skirt) and normally never reveals underwear
  37. ! 2 is ending immediately above, at or below the knees (knee-length)
  38. ! 1 is ankle-length.
  39. ! CloPantsShortness = 1-6 scale. Higher values are shorter.
  40. ! Notes: Intentionally seperate variable from skirt length to prevent wording confusion during events (e.g., lifting a dress or skirt versus pulling down pants or shorts)
  41. ! Ex: 6 are high-cut shorts (legs end significantly above the crotch, usually reveals a large amount of the ass cheek)
  42. ! 5 is mini shorts (legs do not reach below the crotch)
  43. ! 4 are shorts (close to mid thigh)
  44. ! 3 is knee-length shorts
  45. ! 2 is calf length
  46. ! 1 is ankle length
  47. ! CloOnePiece = 1
  48. ! Notes: Flag for event writing; excludes skirted/dress outfits. Denotes that in order to have sex, the clothing must be pulled to the side, unlike shorts which can be pulled down, or skirts which may be lifted.
  49. ! CloBimbo = 1
  50. ! Notes: Flag for bimboification gain. All exceptionally slutty clothing (the kind almost never seen outside of porn, strip clubs, or on street hookers) should have this flag.
  51. CloQuality = 0
  52. CloThinness = 0
  53. CloTopCut = 0
  54. CloPantsShortness = 0
  55. CloSkirtShortness = 0
  56. CloStyle = 0
  57. CloBimbo = 0
  58. if $ARGS[0] = 'cheap':
  59. *P FUNC('$attributes_cheap', $ARGS[0], ARGS[1])
  60. elseif $ARGS[0] = 'average':
  61. *P FUNC('$attributes_average', $ARGS[0], ARGS[1])
  62. elseif $ARGS[0] = 'expensive':
  63. *P FUNC('$attributes_expensive', $ARGS[0], ARGS[1])
  64. elseif $ARGS[0] = 'formal':
  65. *P FUNC('$attributes_formal', $ARGS[0], ARGS[1])
  66. elseif $ARGS[0] = 'office':
  67. *P FUNC('$attributes_office', $ARGS[0], ARGS[1])
  68. elseif $ARGS[0] = 'school':
  69. *P FUNC('$attributes_school', $ARGS[0], ARGS[1])
  70. elseif $ARGS[0] = 'exercise':
  71. *P FUNC('$attributes_exercise', $ARGS[0], ARGS[1])
  72. elseif $ARGS[0] = 'naughty':
  73. *P FUNC('$attributes_naughty', $ARGS[0], ARGS[1])
  74. elseif $ARGS[0] = 'exhibit':
  75. *P FUNC('$attributes_exhibit', $ARGS[0], ARGS[1])
  76. elseif $ARGS[0] = 'uniform':
  77. *P FUNC('$attributes_uniform', $ARGS[0], ARGS[1])
  78. elseif $ARGS[0] = 'coat':
  79. *P FUNC('$attributes_coat', $ARGS[0], ARGS[1])
  80. elseif $ARGS[0] = 'swimwear':
  81. *P FUNC('$attributes_swimwear', $ARGS[0], ARGS[1])
  82. end
  83. --- clothing_attributes ---------------------------------