12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- # shoe_attributes
- !! **Shoe Organization
- !! Shoe Categories: moncheri, bomba, dolls, eroto, gm, danilovich
- !!
- !! ShoExhibit: 0-100 Exhibitionism value required to wear the outfit
- !!
- !! **Shoe Variables
- !!
- !! ShoStyle = 1-3 Different styles of footwear which might give bonuses to certain npcs or events (0 if it does not fit these styles)
- !! 1 Stripper - the kind of thing a stripper would wear, good for stripping and whoring
- !! 2 Bimbo - bonus to bimbo point gains
- !! 3 Alternative - For all good rebels might help your willpower
- !! ShoQuality = 1-7 scale, based on the general expensiveness of the shoe. Higher is more expensive.
- !! Notes: 7 is for shoes that might only be found on celebrities or millionaires at red carpet events.
- !! Ex: 6-5 are the higher and lower levels of the expensive category
- !! 4-3 are the same for average category
- !! 2-1 are the same for cheap category.
- !! ShoHeels = 1-6 scale, with higher values being taller heels.
- !! Ex: 6 eroto heel over 15cm (6")
- !! 5 Ultra high heel around 15cm (6")
- !! 4 High heel around 10cm (4")
- !! 3 Mid heel around 7.6cm (3")
- !! 2 low heel around 5cm (2")
- !! 1 Flats less than 5cm (2")
- !! ShoCut = 1-6 scale from shoe to groin high boots
- !! Ex: 6 groin high
- !! 5 Thigh high
- !! 4 for approx. knee high
- !! 3 for calf high
- !! 2 for ankle high
- !! 1 for shoes
- ShoStyle = 0
- ShoQuality = 0
- ShoHeels = 0
- ShoCut = 0
- if $ARGS[0] = 'moncheri':
- *P FUNC('$attributes_moncheri_shoes', $ARGS[0], ARGS[1])
- elseif $ARGS[0] = 'bomba':
- *P FUNC('$attributes_bomba_shoes', $ARGS[0], ARGS[1])
- elseif $ARGS[0] = 'cats':
- *P FUNC('$attributes_cats_shoes', $ARGS[0], ARGS[1])
- elseif $ARGS[0] = 'dolls':
- *P FUNC('$attributes_dolls_shoes', $ARGS[0], ARGS[1])
- elseif $ARGS[0] = 'eroto':
- *P FUNC('$attributes_eroto_shoes', $ARGS[0], ARGS[1])
- elseif $ARGS[0] = 'scandalicious':
- *P FUNC('$attributes_scandalicious_shoes', $ARGS[0], ARGS[1])
- elseif $ARGS[0] = 'gm':
- *P FUNC('$attributes_gm_shoes', $ARGS[0], ARGS[1])
- elseif $ARGS[0] = 'danilovich':
- *P FUNC('$attributes_danilovich_shoes', $ARGS[0], ARGS[1])
- end
- --- shoe_attributes ---------------------------------
|