Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- layeredimage moku:
- default moku_outfit = "uni"
- init python:
- def show_moku(expression, transition=None):
- attrs = [moku_outfit]
- if moku_outfit == "casual":
- attrs.extend(["apron", "ban"])
- attrs.extend(expression.split())
- renpy.show("moku " + " ".join(attrs), transition=transition)
- always:
- "moku hairback"
- group pony:
- attribute pony:
- "moku ponyback"
- always:
- "moku base"
- group blush:
- attribute blush:
- "moku blush"
- group outfits:
- attribute uni default:
- "moku fit1"
- attribute casual:
- "moku fit2"
- group apron:
- attribute apron:
- "moku apron"
- always:
- "moku hairfront"
- group ban:
- attribute ban:
- "moku bandana"
- group eyes:
- attribute op default:
- "moku op"
- attribute side:
- "moku side"
- attribute wide:
- "moku wide"
- attribute closed:
- "moku closed"
- attribute sclosed:
- "moku closed2"
- group eyebrows:
- attribute neutral default:
- "moku eyebrow1"
- attribute worry:
- "moku eyebrow2"
- attribute mad:
- "moku eyebrow3"
- attribute up:
- "moku eyebrow4"
- group mouth:
- attribute smile default:
- "moku mouth1"
- attribute happy:
- "moku mouth2"
- attribute frown:
- "moku mouth3"
- attribute shout:
- "moku mouth4"
- attribute talk:
- "moku mouth5"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement