12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- # shoe_attributes
- !! **Clothing Organization
- !! Shoe Categories: boutique, Cats, Dolls, fetish, G&M, Trainers
- !!
- !! ShoExhibit: 0-100 Exhibitionism value required to wear the outfit
- !!
- !! **Clothing Variables
- !!
- !! ShoStlye = 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 clothing. 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 Fetish 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
- !! 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.
- !! 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] = 'boutique':
- *P FUNC('$attrib_shoe_boutique', $ARGS[0], ARGS[1])
- elseif $ARGS[0] = 'pussy':
- *P FUNC('$attrib_shoe_pussy', $ARGS[0], ARGS[1])
- elseif $ARGS[0] = 'dolls':
- *P FUNC('$attrib_shoe_dolls', $ARGS[0], ARGS[1])
- elseif $ARGS[0] = 'fetish':
- *P FUNC('$attrib_shoe_fetish', $ARGS[0], ARGS[1])
- elseif $ARGS[0] = 'gandm':
- *P FUNC('$attrib_shoe_gandm', $ARGS[0], ARGS[1])
- elseif $ARGS[0] = 'trainers':
- *P FUNC('$attrib_shoe_trainers', $ARGS[0], ARGS[1])
- end
- --- shoe_attributes ---------------------------------
|