14 lines
419 B
Plaintext
14 lines
419 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)
|
|
|
|
outfit_default = get_character_outfit(c, type="default")
|
|
char.equip(outfit_default)
|
|
|
|
outfit_last = outfit = get_character_outfit(c, type="last")
|
|
outfit_last.save()
|
|
|