2022-05-16 23:48:22 +00:00
|
|
|
|
|
|
|
label update_hermione:
|
|
|
|
|
|
|
|
$ hermione_chibi.update()
|
|
|
|
$ hermione.xzoom = 1
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
label end_hermione_event:
|
|
|
|
call her_chibi("hide")
|
|
|
|
hide hermione_main
|
|
|
|
with d3
|
|
|
|
pause.5
|
|
|
|
|
|
|
|
call update_hermione
|
|
|
|
|
2023-03-31 22:41:48 +00:00
|
|
|
$ states.last_girl = states.active_girl
|
|
|
|
$ states.active_girl = None
|
|
|
|
$ states.her.busy = True
|
2022-05-16 23:48:22 +00:00
|
|
|
$ hermione.wear("all")
|
|
|
|
$ hermione.set_cum(None)
|
2023-07-08 17:30:36 +00:00
|
|
|
$ hermione.set_face(tears=False, cheeks=False)
|
2022-05-16 23:48:22 +00:00
|
|
|
|
|
|
|
call music_block
|
|
|
|
jump main_room_menu
|
|
|
|
|
2023-03-01 22:14:00 +00:00
|
|
|
define character.hermione_say = Character("name_hermione_genie", show_icon="hermione", dynamic=True)
|
2022-05-16 23:48:22 +00:00
|
|
|
|
|
|
|
init python:
|
2023-03-04 20:59:39 +00:00
|
|
|
def her(what, mouth=None, eyes=None, eyebrows=None, pupils=None, cheeks=None, tears=None,
|
2022-05-16 23:48:22 +00:00
|
|
|
emote=None, face=None, xpos=None, ypos=None, pos=None, flip=None, trans=None, animation=False, **kwargs):
|
|
|
|
|
2023-04-25 23:18:17 +00:00
|
|
|
def show():
|
2023-07-23 16:40:03 +00:00
|
|
|
hermione.show(force=True)
|
2023-04-25 23:18:17 +00:00
|
|
|
|
|
|
|
if not renpy.in_rollback():
|
|
|
|
renpy.with_statement(trans or d2)
|
|
|
|
|
|
|
|
face = {"mouth": mouth, "eyes": eyes, "eyebrows": eyebrows, "pupils": pupils, "cheeks": cheeks, "tears": tears}
|
|
|
|
temp_face = renpy.game.context().temporary_attributes
|
2022-05-16 23:48:22 +00:00
|
|
|
redraw = False
|
|
|
|
tag = hermione.tag
|
|
|
|
layer = hermione.layer
|
|
|
|
|
2023-04-25 23:18:17 +00:00
|
|
|
if xpos is not None or ypos is not None:
|
2023-05-02 20:14:38 +00:00
|
|
|
xpos = hermione.pos[0] if xpos is None else sprite_pos.get("x").get(xpos, xpos)
|
|
|
|
ypos = hermione.pos[1] if ypos is None else sprite_pos.get("y").get(ypos, ypos)
|
2022-05-16 23:48:22 +00:00
|
|
|
hermione.pos = (xpos, ypos)
|
|
|
|
redraw = True
|
|
|
|
|
|
|
|
head_only = hermione.pos[1] == sprite_pos.get("y").get("head")
|
|
|
|
|
2023-04-25 23:18:17 +00:00
|
|
|
if any(face.values()):
|
|
|
|
hermione.set_face(**face)
|
|
|
|
redraw = True
|
|
|
|
|
|
|
|
if temp_face:
|
|
|
|
last_face = hermione.get_face()
|
|
|
|
|
|
|
|
d = dict(zip(temp_face[::2], temp_face[1::2]))
|
|
|
|
hermione.set_face(**d)
|
2022-05-16 23:48:22 +00:00
|
|
|
redraw = True
|
|
|
|
|
2023-04-19 21:17:01 +00:00
|
|
|
if emote:
|
|
|
|
hermione.set_emote(emote)
|
|
|
|
redraw = True
|
2022-05-16 23:48:22 +00:00
|
|
|
|
|
|
|
if animation != False:
|
2022-06-24 17:32:41 +00:00
|
|
|
hermione.animation = animation
|
2022-05-16 23:48:22 +00:00
|
|
|
redraw = True
|
|
|
|
|
2023-11-16 16:53:29 +00:00
|
|
|
if flip is not None:
|
2022-05-16 23:48:22 +00:00
|
|
|
hermione.xzoom = -1 if flip else 1
|
|
|
|
redraw = True
|
|
|
|
|
|
|
|
if redraw:
|
2023-04-25 23:18:17 +00:00
|
|
|
show()
|
2022-05-16 23:48:22 +00:00
|
|
|
|
|
|
|
if what:
|
|
|
|
character.hermione_say(what, **kwargs)
|
|
|
|
|
2023-04-25 23:18:17 +00:00
|
|
|
if temp_face:
|
|
|
|
hermione.set_face(**last_face)
|
|
|
|
|
2022-05-16 23:48:22 +00:00
|
|
|
if head_only:
|
|
|
|
hermione.hide()
|
|
|
|
|
|
|
|
label too_much:
|
|
|
|
stop music fadeout 2.0
|
2023-03-01 22:14:00 +00:00
|
|
|
her "[name_genie_hermione]??!" ("shock", "wide", "base", "stare",xpos="mid",trans=fade)
|
2022-05-16 23:48:22 +00:00
|
|
|
her "How could you ask for such a thing!?"
|
|
|
|
her "I think I better leave." ("angry", "happyCl", "worried", "mid",emote="sweat")
|
|
|
|
|
|
|
|
call her_walk(action="leave")
|
|
|
|
|
2023-03-28 17:47:52 +00:00
|
|
|
random:
|
|
|
|
gen "(*Hmm*... I guess it was a little too soon for that.)" ("base", xpos="far_left", ypos="head")
|
|
|
|
gen "(Did I say something wrong...?)" ("base", xpos="far_left", ypos="head")
|
|
|
|
gen "(Welp, was worth a shot I guess.)" ("base", xpos="far_left", ypos="head")
|
|
|
|
gen "(Perhaps I should rethink my approach...)" ("base", xpos="far_left", ypos="head")
|
|
|
|
gen "(Judging by her reaction she's not yet ready for it...)" ("base", xpos="far_left", ypos="head")
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2023-03-31 22:41:48 +00:00
|
|
|
$ states.her.mood += 6
|
2022-05-16 23:48:22 +00:00
|
|
|
|
|
|
|
jump end_hermione_event
|
|
|
|
|
|
|
|
label too_much_public:
|
|
|
|
stop music fadeout 2.0
|
2023-03-01 22:14:00 +00:00
|
|
|
her "[name_genie_hermione]??!" ("shock", "wide", "base", "stare",xpos="mid",trans=fade)
|
2022-05-16 23:48:22 +00:00
|
|
|
her "How could you ask for such a thing!?"
|
|
|
|
her "People would take me for a whore, I cannot let it happen!"
|
|
|
|
her "I think I better leave." ("angry", "happyCl", "worried", "mid",emote="sweat")
|
|
|
|
|
|
|
|
call her_walk(action="leave")
|
|
|
|
|
2023-03-28 17:47:52 +00:00
|
|
|
random:
|
|
|
|
gen "(*Hmm*... Maybe I should start with some easier tasks to lower her reputation first.)" ("base", xpos="far_left", ypos="head")
|
|
|
|
gen "(I guess she still cares too much about her precious reputation.)" ("base", xpos="far_left", ypos="head")
|
|
|
|
gen "(Silly girl still doesn't understand that her *reputation* isn't as important as she thinks.)" ("base", xpos="far_left", ypos="head")
|
|
|
|
gen "(Did I ask too much of her...?)" ("base", xpos="far_left", ypos="head")
|
|
|
|
gen "(She doesn't seem to be ready for this just yet.)" ("base", xpos="far_left", ypos="head")
|
2022-05-16 23:48:22 +00:00
|
|
|
|
2023-03-31 22:41:48 +00:00
|
|
|
$ states.her.mood += 6
|
2022-05-16 23:48:22 +00:00
|
|
|
|
|
|
|
jump end_hermione_event
|