Advertisement
Guest User

layercode

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