Advertisement
Guest User

Untitled

a guest
Mar 6th, 2025
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. layeredimage moku:
  2. always:
  3. "moku hairback"
  4.  
  5. group pony:
  6. attribute pony:
  7. "moku ponyback"
  8.  
  9. always:
  10. "moku base"
  11.  
  12. group blush:
  13. attribute blush:
  14. "moku blush"
  15.  
  16. group outfits:
  17. attribute uni default:
  18. "moku fit1"
  19. attribute casual:
  20. "moku fit2"
  21.  
  22. group apron:
  23. attribute apron:
  24. "moku apron"
  25.  
  26. always:
  27. "moku hairfront"
  28.  
  29. group ban:
  30. attribute ban:
  31. "moku bandana"
  32.  
  33. group eyes:
  34. attribute op default:
  35. "moku op"
  36. attribute side:
  37. "moku side"
  38. attribute wide:
  39. "moku wide"
  40. attribute closed:
  41. "moku closed"
  42. attribute sclosed:
  43. "moku closed2"
  44.  
  45.  
  46. group eyebrows:
  47. attribute neutral default:
  48. "moku eyebrow1"
  49. attribute worry:
  50. "moku eyebrow2"
  51. attribute mad:
  52. "moku eyebrow3"
  53. attribute up:
  54. "moku eyebrow4"
  55.  
  56. group mouth:
  57. attribute smile default:
  58. "moku mouth1"
  59. attribute happy:
  60. "moku mouth2"
  61. attribute frown:
  62. "moku mouth3"
  63. attribute shout:
  64. "moku mouth4"
  65. attribute talk:
  66. "moku mouth5"
  67.  
  68. default moku_outfit = "uni"
  69.  
  70. init python:
  71. def show_moku(expression, transition=None):
  72. attrs = [moku_outfit]
  73. if moku_outfit == "casual":
  74. attrs.extend(["apron", "ban"])
  75. attrs.extend(expression.split())
  76. renpy.show("moku " + " ".join(attrs), transition=transition)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement