2022-05-16 23:48:22 +00:00
|
|
|
# To add new doll character just add it to this named set inside your mod file
|
|
|
|
init offset = 2
|
|
|
|
init python:
|
|
|
|
def wardrobe_init():
|
2023-04-11 19:36:22 +00:00
|
|
|
for c in states.dolls:
|
2022-05-16 23:48:22 +00:00
|
|
|
char = get_character_object(c)
|
|
|
|
|
2023-02-07 19:22:05 +00:00
|
|
|
body_default = get_character_body(c, type="default")
|
|
|
|
char.equip(body_default)
|
|
|
|
|
2022-05-16 23:48:22 +00:00
|
|
|
outfit_default = get_character_outfit(c, type="default")
|
|
|
|
char.equip(outfit_default)
|
|
|
|
|
|
|
|
outfit_last = outfit = get_character_outfit(c, type="last")
|
|
|
|
outfit_last.save()
|
2023-03-02 23:06:16 +00:00
|
|
|
|
2023-04-25 23:18:17 +00:00
|
|
|
char.set_face(mouth="base", eyes="base", eyebrows="base", pupils="mid", cheeks="none", tears="none")
|
2023-03-15 22:27:08 +00:00
|
|
|
|
2023-03-20 21:44:55 +00:00
|
|
|
def chibi_init():
|
|
|
|
# TODO: Perhaps it could be automated?
|
|
|
|
hooch_chibi.register("stand", 1, (600, 800))
|
|
|
|
hooch_chibi.register("walk", 8, (600, 800))
|
|
|
|
|
|
|
|
config.start_callbacks.extend([wardrobe_init, chibi_init])
|