shoe_attributes.qsrc 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # shoe_attributes
  2. !! **Shoe Organization
  3. !! Shoe Categories: moncheri, bomba, dolls, fetish, gm, danilovich
  4. !!
  5. !! ShoExhibit: 0-100 Exhibitionism value required to wear the outfit
  6. !!
  7. !! **Shoe Variables
  8. !!
  9. !! ShoStyle = 1-3 Different styles of footwear which might give bonuses to certain npcs or events (0 if it does not fit these styles)
  10. !! 1 Stripper - the kind of thing a stripper would wear, good for stripping and whoring
  11. !! 2 Bimbo - bonus to bimbo point gains
  12. !! 3 Alternative - For all good rebels might help your willpower
  13. !! ShoQuality = 1-7 scale, based on the general expensiveness of the shoe. Higher is more expensive.
  14. !! Notes: 7 is for shoes 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. !! ShoHeels = 1-6 scale, with higher values being taller heels.
  19. !! Ex: 6 Fetish heel over 15cm (6")
  20. !! 5 Ultra high heel around 15cm (6")
  21. !! 4 High heel around 10cm (4")
  22. !! 3 Mid heel around 7.6cm (3")
  23. !! 2 low heel around 5cm (2")
  24. !! 1 Flats less than 5cm (2")
  25. !! ShoCut = 1-6 scale from shoe to groin high boots
  26. !! Ex: 6 groin high
  27. !! 5 Thigh high
  28. !! 4 for approx. knee high
  29. !! 3 for calf high
  30. !! 2 for ankle high
  31. !! 1 for shoes
  32. ShoStyle = 0
  33. ShoQuality = 0
  34. ShoHeels = 0
  35. ShoCut = 0
  36. if $ARGS[0] = 'moncheri':
  37. *P FUNC('$attributes_moncheri_shoes', $ARGS[0], ARGS[1])
  38. elseif $ARGS[0] = 'bomba':
  39. *P FUNC('$attributes_bomba_shoes', $ARGS[0], ARGS[1])
  40. elseif $ARGS[0] = 'dolls':
  41. *P FUNC('$attributes_dolls_shoes', $ARGS[0], ARGS[1])
  42. elseif $ARGS[0] = 'fetish':
  43. *P FUNC('$attrib_shoe_fetish', $ARGS[0], ARGS[1])
  44. elseif $ARGS[0] = 'gm':
  45. *P FUNC('$attributes_gm_shoes', $ARGS[0], ARGS[1])
  46. elseif $ARGS[0] = 'danilovich':
  47. *P FUNC('$attributes_danilovich_shoes', $ARGS[0], ARGS[1])
  48. end
  49. --- shoe_attributes ---------------------------------