LoafyLemon
2acccbea5a
* Added DollBodypart class to allow more extensive modding support for characters, along with dedicates layers for breasts, hips and so on... * Added more bangs into DollClothDynamic, allowing tracking of singular objects and the ability to chainload the IDs * Added get_character_body global method * Added istype global method * Improved caching, layering for dynamic clothes * Improved hashing for Doll instances * Improved readability and improved internal naming convention for Doll-type classes * Removed dedicated buttplug slot (superseded by multislot reimplementation) * Fixed clothing supplied skin layer issues with zorders * Fixed DollClothDynamic __repr__ lack of quotes * Fixed Hermione's open_wide_tongue mouth * Fixed Hermione's tattoos missing images * Fixed Cho's 'goodbye' after-summon skit using wrong number of expressions
16 lines
521 B
Plaintext
16 lines
521 B
Plaintext
# To add new doll character just add it to this named set inside your mod file
|
|
init offset = 2
|
|
init python:
|
|
def wardrobe_init():
|
|
for c in CHARACTERS:
|
|
char = get_character_object(c)
|
|
|
|
body_default = get_character_body(c, type="default")
|
|
char.equip(body_default)
|
|
|
|
outfit_default = get_character_outfit(c, type="default")
|
|
char.equip(outfit_default)
|
|
|
|
outfit_last = outfit = get_character_outfit(c, type="last")
|
|
outfit_last.save()
|