1
0

shoe_attributes.qsrc 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. # shoe_attributes
  2. !! **Shoe Organization
  3. !! Shoe Categories: moncheri, bomba, dolls, eroto, gm, danilovich
  4. !!
  5. !! ShoExhibit: 0-100 Exhibitionism value required to wear the outfit
  6. !!
  7. !! **Shoe Variables
  8. !!
  9. !! ShoStyle = 1 Different styles of footwear which might give bonuses to certain npcs or events (0 if it does not fit these styles)
  10. !! 1 Alternative - For all good rebels might help your willpower
  11. !!
  12. !! ShoStyle2: 1 Stripper, 2 Exercise
  13. !!
  14. !! ShoQuality = 1-7 scale, based on the general expensiveness of the shoe. Higher is more expensive.
  15. !! Notes: 7 is for shoes that might only be found on celebrities or millionaires at red carpet events.
  16. !! Ex: 6-5 are the higher and lower levels of the expensive category
  17. !! 4-3 are the same for average category
  18. !! 2-1 are the same for cheap category.
  19. !!
  20. !! ShoHeels = 1-6 scale, with higher values being taller heels.
  21. !! Ex: 6 eroto heel over 15cm (6")
  22. !! 5 Ultra high heel around 15cm (6")
  23. !! 4 High heel around 10cm (4")
  24. !! 3 Mid heel around 7.6cm (3")
  25. !! 2 low heel around 5cm (2")
  26. !! 1 Flats less than 5cm (2")
  27. !!
  28. !! ShoCut = 1-6 scale from shoe to groin high boots
  29. !! Ex: 6 groin high
  30. !! 5 Thigh high
  31. !! 4 for approx. knee high
  32. !! 3 for calf high
  33. !! 2 for ankle high
  34. !! 1 for shoes
  35. !!
  36. !! ShoBimbo = 1: Bimbo shoes
  37. !! ShoGoth = 1: Goth shoes
  38. !! ShoPunk = 1: Punk shoes
  39. ShoStyle = 0
  40. ShoStyle2 = 0
  41. ShoQuality = 0
  42. ShoHeels = 0
  43. ShoCut = 0
  44. ShoBimbo = 0
  45. ShoGoth = 0
  46. ShoPunk = 0
  47. if $ARGS[0] = 'moncheri':
  48. *P FUNC('$attributes_moncheri_shoes', $ARGS[0], ARGS[1])
  49. elseif $ARGS[0] = 'bomba':
  50. *P FUNC('$attributes_bomba_shoes', $ARGS[0], ARGS[1])
  51. elseif $ARGS[0] = 'cats':
  52. *P FUNC('$attributes_cats_shoes', $ARGS[0], ARGS[1])
  53. elseif $ARGS[0] = 'dolls':
  54. *P FUNC('$attributes_dolls_shoes', $ARGS[0], ARGS[1])
  55. elseif $ARGS[0] = 'eroto':
  56. *P FUNC('$attributes_eroto_shoes', $ARGS[0], ARGS[1])
  57. elseif $ARGS[0] = 'scandalicious':
  58. *P FUNC('$attributes_scandalicious_shoes', $ARGS[0], ARGS[1])
  59. elseif $ARGS[0] = 'gm':
  60. *P FUNC('$attributes_gm_shoes', $ARGS[0], ARGS[1])
  61. elseif $ARGS[0] = 'danilovich':
  62. *P FUNC('$attributes_danilovich_shoes', $ARGS[0], ARGS[1])
  63. end
  64. --- shoe_attributes ---------------------------------