Compare commits
4 Commits
c3f753a460
...
eae844ef0b
Author | SHA1 | Date | |
---|---|---|---|
eae844ef0b | |||
070d14a685 | |||
a36c0ba222 | |||
fbe8035c43 |
@ -1709,8 +1709,7 @@ label ag_st_imperio_E5:
|
|||||||
ton "I..." ("open", "base", "worried", "down")
|
ton "I..." ("open", "base", "worried", "down")
|
||||||
gen "Say it!" ("angry", xpos="far_left", ypos="head")
|
gen "Say it!" ("angry", xpos="far_left", ypos="head")
|
||||||
|
|
||||||
$ menu_y = 0.7
|
menu (menu_yalign=0.7):
|
||||||
menu:
|
|
||||||
"\"You're a selfish slut!\"":
|
"\"You're a selfish slut!\"":
|
||||||
ton @ hair horny "Yes!" ("mad", "wide", "shocked", "stare")
|
ton @ hair horny "Yes!" ("mad", "wide", "shocked", "stare")
|
||||||
ton @ hair horny "I'm a selfish slut!" ("open_wide_tongue", "closed", "worried", "mid")
|
ton @ hair horny "I'm a selfish slut!" ("open_wide_tongue", "closed", "worried", "mid")
|
||||||
@ -1720,7 +1719,6 @@ label ag_st_imperio_E5:
|
|||||||
"\"You're nothing more than a whore!\"":
|
"\"You're nothing more than a whore!\"":
|
||||||
ton @ hair horny "Yes!" ("mad", "base", "worried", "mid")
|
ton @ hair horny "Yes!" ("mad", "base", "worried", "mid")
|
||||||
ton @ hair horny "I'm nothing but a cheap,{w=0.6} {b}fucking{/b}{w=0.4} whore!" ("open_wide_tongue", "closed", "worried", "mid")
|
ton @ hair horny "I'm nothing but a cheap,{w=0.6} {b}fucking{/b}{w=0.4} whore!" ("open_wide_tongue", "closed", "worried", "mid")
|
||||||
call reset_menu_position
|
|
||||||
|
|
||||||
ton "... {w}This is what I want!" ("mad", "wide", "annoyed", "down")
|
ton "... {w}This is what I want!" ("mad", "wide", "annoyed", "down")
|
||||||
gen "Good, you're doing this for yourself, and nobody else..." ("base", xpos="far_left", ypos="head")
|
gen "Good, you're doing this for yourself, and nobody else..." ("base", xpos="far_left", ypos="head")
|
||||||
|
@ -14,8 +14,6 @@ label summon_astoria:
|
|||||||
|
|
||||||
label astoria_requests:
|
label astoria_requests:
|
||||||
|
|
||||||
# Reset
|
|
||||||
call reset_menu_position
|
|
||||||
ast "" (xpos="base",ypos="base")
|
ast "" (xpos="base",ypos="base")
|
||||||
|
|
||||||
menu:
|
menu:
|
||||||
|
@ -147,8 +147,6 @@ label cc_ht_talk:
|
|||||||
call cho_chibi("stand", "mid", "base")
|
call cho_chibi("stand", "mid", "base")
|
||||||
call gen_chibi("sit_behind_desk")
|
call gen_chibi("sit_behind_desk")
|
||||||
|
|
||||||
call reset_menu_position
|
|
||||||
|
|
||||||
hide screen blkfade
|
hide screen blkfade
|
||||||
cho "" ("base", "base", "base", "mid", xpos="base", ypos="base", trans=fade)
|
cho "" ("base", "base", "base", "mid", xpos="base", ypos="base", trans=fade)
|
||||||
|
|
||||||
|
@ -194,17 +194,16 @@ label cho_quid_E2:
|
|||||||
with d3
|
with d3
|
||||||
|
|
||||||
# Tutorial menu
|
# Tutorial menu
|
||||||
$ _selected = [False, False, False]
|
$ renpy.dynamic(__chosen1=set())
|
||||||
$ menu_y = 0.8
|
|
||||||
|
|
||||||
label .choices:
|
label .choices:
|
||||||
|
|
||||||
if not all(x == True for x in _selected): # Has selected every position once? Loop if the answer is no.
|
if len(__chosen1) < 3: # needed because of the bld
|
||||||
call bld
|
call bld
|
||||||
menu:
|
menu (menu_yalign=.8):
|
||||||
|
set __chosen1
|
||||||
gen "Could you..." ("base", xpos="far_left", ypos="head")
|
gen "Could you..." ("base", xpos="far_left", ypos="head")
|
||||||
"\"Fly in front of me.\"" if not _selected[0]:
|
"\"Fly in front of me.\"":
|
||||||
$ _selected[0] = True
|
|
||||||
call bld("hide")
|
call bld("hide")
|
||||||
|
|
||||||
if not cho_chibi.action == "fly":
|
if not cho_chibi.action == "fly":
|
||||||
@ -224,8 +223,7 @@ label cho_quid_E2:
|
|||||||
|
|
||||||
jump cho_quid_E2.choices
|
jump cho_quid_E2.choices
|
||||||
|
|
||||||
"\"Fly above me.\"" if not _selected[1]:
|
"\"Fly above me.\"":
|
||||||
$ _selected[1] = True
|
|
||||||
call bld("hide")
|
call bld("hide")
|
||||||
|
|
||||||
if not cho_chibi.action == "fly":
|
if not cho_chibi.action == "fly":
|
||||||
@ -239,8 +237,7 @@ label cho_quid_E2:
|
|||||||
|
|
||||||
jump cho_quid_E2.choices
|
jump cho_quid_E2.choices
|
||||||
|
|
||||||
"\"Fly close to me.\"" if not _selected[2]:
|
"\"Fly close to me.\"":
|
||||||
$ _selected[2] = True
|
|
||||||
call bld("hide")
|
call bld("hide")
|
||||||
|
|
||||||
if not cho_chibi.action == "fly":
|
if not cho_chibi.action == "fly":
|
||||||
@ -254,8 +251,6 @@ label cho_quid_E2:
|
|||||||
cho "..." ("soft", "narrow", "raised", "mid", ypos="head", flip=False)
|
cho "..." ("soft", "narrow", "raised", "mid", ypos="head", flip=False)
|
||||||
|
|
||||||
jump cho_quid_E2.choices
|
jump cho_quid_E2.choices
|
||||||
else:
|
|
||||||
pass
|
|
||||||
|
|
||||||
gen "That should be enough..." ("base", xpos="far_left", ypos="head")
|
gen "That should be enough..." ("base", xpos="far_left", ypos="head")
|
||||||
gen "I presume you're able to hold these positions during movement?" ("base", xpos="far_left", ypos="head")
|
gen "I presume you're able to hold these positions during movement?" ("base", xpos="far_left", ypos="head")
|
||||||
@ -323,17 +318,16 @@ label cho_quid_E3:
|
|||||||
cho "No... Someone has to announce the points after all." ("annoyed", "narrow", "base", "mid")
|
cho "No... Someone has to announce the points after all." ("annoyed", "narrow", "base", "mid")
|
||||||
gen "I see..." ("base", xpos="far_left", ypos="head")
|
gen "I see..." ("base", xpos="far_left", ypos="head")
|
||||||
|
|
||||||
$ _selected = [False, False]
|
$ renpy.dynamic(__chosen2=set())
|
||||||
|
|
||||||
label .choices:
|
label .choices:
|
||||||
menu:
|
menu:
|
||||||
|
set __chosen2
|
||||||
gen "How about we ask..." ("base", xpos="far_left", ypos="head")
|
gen "How about we ask..." ("base", xpos="far_left", ypos="head")
|
||||||
"\"Hermione\"":
|
"\"Hermione\"":
|
||||||
pass
|
pass
|
||||||
|
|
||||||
"\"Astoria\"" if states.ast.unlocked and not _selected[0]:
|
"\"Astoria\"" if states.ast.unlocked:
|
||||||
$ _selected[0] = True
|
|
||||||
|
|
||||||
cho "That mischievous little..." ("clench", "wide", "raised", "mid")
|
cho "That mischievous little..." ("clench", "wide", "raised", "mid")
|
||||||
cho "Not a chance!" ("open", "closed", "angry", "mid")
|
cho "Not a chance!" ("open", "closed", "angry", "mid")
|
||||||
cho "Besides, [name_genie_cho]. Did you forget that she's a Slytherin?" ("open", "narrow", "angry", "mid")
|
cho "Besides, [name_genie_cho]. Did you forget that she's a Slytherin?" ("open", "narrow", "angry", "mid")
|
||||||
@ -342,9 +336,7 @@ label cho_quid_E3:
|
|||||||
|
|
||||||
jump cho_quid_E3.choices
|
jump cho_quid_E3.choices
|
||||||
|
|
||||||
"\"Luna\"" if states.lun.unlocked and not _selected[1]:
|
"\"Luna\"" if states.lun.unlocked:
|
||||||
$ _selected[1] = True
|
|
||||||
|
|
||||||
cho "Luna? Luna Lovegood, [name_genie_cho]?" ("open", "narrow", "raised", "mid")
|
cho "Luna? Luna Lovegood, [name_genie_cho]?" ("open", "narrow", "raised", "mid")
|
||||||
gen "Yes?" ("base", xpos="far_left", ypos="head")
|
gen "Yes?" ("base", xpos="far_left", ypos="head")
|
||||||
cho "Surely{w=0.3}, nobody in their right mind would let Luna Lovegood commentate." ("grin", "happyCl", "base", "mid") # Book quote.
|
cho "Surely{w=0.3}, nobody in their right mind would let Luna Lovegood commentate." ("grin", "happyCl", "base", "mid") # Book quote.
|
||||||
|
@ -398,8 +398,6 @@ label cho_training:
|
|||||||
call cho_chibi("stand", "mid", "base")
|
call cho_chibi("stand", "mid", "base")
|
||||||
call gen_chibi("sit_behind_desk")
|
call gen_chibi("sit_behind_desk")
|
||||||
|
|
||||||
call reset_menu_position
|
|
||||||
|
|
||||||
hide screen blkfade
|
hide screen blkfade
|
||||||
cho "" ("base", "base", "base", "mid", xpos="base", ypos="base", trans=fade)
|
cho "" ("base", "base", "base", "mid", xpos="base", ypos="base", trans=fade)
|
||||||
jump cho_requests
|
jump cho_requests
|
||||||
@ -414,9 +412,7 @@ label cho_tactics:
|
|||||||
call hide_characters
|
call hide_characters
|
||||||
call bld
|
call bld
|
||||||
|
|
||||||
$ menu_y = 0.74
|
menu (menu_yalign=.74):
|
||||||
|
|
||||||
menu:
|
|
||||||
gen "(What directions should I give her?)" ("base", xpos="far_left", ypos="head")
|
gen "(What directions should I give her?)" ("base", xpos="far_left", ypos="head")
|
||||||
"\"Fly in front of me.\"" if states.cho.ev.quidditch.position != "front":
|
"\"Fly in front of me.\"" if states.cho.ev.quidditch.position != "front":
|
||||||
jump cho_tactics.change_front
|
jump cho_tactics.change_front
|
||||||
|
@ -32,8 +32,6 @@ label summon_cho:
|
|||||||
|
|
||||||
label cho_requests:
|
label cho_requests:
|
||||||
|
|
||||||
# Reset
|
|
||||||
call reset_menu_position
|
|
||||||
cho "" (xpos="base", ypos="base")
|
cho "" (xpos="base", ypos="base")
|
||||||
|
|
||||||
menu:
|
menu:
|
||||||
@ -195,4 +193,3 @@ label cho_favor_menu:
|
|||||||
label not_available:
|
label not_available:
|
||||||
$ TBA_message("This feature is currently not available as of version %s." % config.version)
|
$ TBA_message("This feature is currently not available as of version %s." % config.version)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
@ -4,8 +4,6 @@
|
|||||||
|
|
||||||
label hg_pf_look_at_ass: #LV.3 (Whoring = 9 - 11)
|
label hg_pf_look_at_ass: #LV.3 (Whoring = 9 - 11)
|
||||||
|
|
||||||
call reset_menu_position
|
|
||||||
|
|
||||||
if hg_pf_look_at_ass.points == 0:
|
if hg_pf_look_at_ass.points == 0:
|
||||||
gen "{size=-4}(I feel like checking out that ass.){/size}" ("base", xpos="far_left", ypos="head")
|
gen "{size=-4}(I feel like checking out that ass.){/size}" ("base", xpos="far_left", ypos="head")
|
||||||
else:
|
else:
|
||||||
|
@ -18,8 +18,6 @@ label summon_hermione:
|
|||||||
|
|
||||||
label hermione_requests:
|
label hermione_requests:
|
||||||
|
|
||||||
# Reset
|
|
||||||
call reset_menu_position
|
|
||||||
her "" (xpos="base",ypos="base")
|
her "" (xpos="base",ypos="base")
|
||||||
|
|
||||||
menu:
|
menu:
|
||||||
|
@ -100,15 +100,16 @@ label lun_chibi_scene(action="reset", xpos="mid", ypos="base"):
|
|||||||
$ chair_left_OBJ.hidden = True
|
$ chair_left_OBJ.hidden = True
|
||||||
|
|
||||||
if action == "reset":
|
if action == "reset":
|
||||||
$ menu_y = 0.5
|
|
||||||
call lun_chibi("stand", xpos, ypos)
|
call lun_chibi("stand", xpos, ypos)
|
||||||
call gen_chibi("sit_behind_desk")
|
call gen_chibi("sit_behind_desk")
|
||||||
|
|
||||||
elif action in ("sit_on_lap", "sit_on_lap_grope"):
|
elif action in ("sit_on_lap", "sit_on_lap_grope"):
|
||||||
show screen luna_chibi_scene("ch_lun_scene " + action, pos=(218, 205))
|
show screen luna_chibi_scene("ch_lun_scene " + action, pos=(218, 205))
|
||||||
|
|
||||||
elif action in ("inspect_idle", "inspect_idle_naked", "inspect_lean_idle_naked", "inspect_grope_breasts_naked",
|
elif action in (
|
||||||
"inspect_grope_vagina_naked", "inspect_lean_grope_breasts_naked", "inspect_lean_grope_vagina_naked"):
|
"inspect_idle", "inspect_idle_naked", "inspect_lean_idle_naked", "inspect_grope_breasts_naked",
|
||||||
|
"inspect_grope_vagina_naked", "inspect_lean_grope_breasts_naked", "inspect_lean_grope_vagina_naked"
|
||||||
|
):
|
||||||
show screen luna_chibi_scene("ch_lun_scene " + action, pos=(218, 205))
|
show screen luna_chibi_scene("ch_lun_scene " + action, pos=(218, 205))
|
||||||
|
|
||||||
return
|
return
|
||||||
|
@ -22,8 +22,6 @@ label summon_luna:
|
|||||||
|
|
||||||
label luna_requests:
|
label luna_requests:
|
||||||
|
|
||||||
# Reset
|
|
||||||
call reset_menu_position
|
|
||||||
lun "" (xpos="base",ypos="base")
|
lun "" (xpos="base",ypos="base")
|
||||||
|
|
||||||
menu:
|
menu:
|
||||||
|
@ -157,10 +157,7 @@ label ton_chibi_scene(action="reset", xpos="mid", ypos="base", trans=None):
|
|||||||
call ton_chibi("hide")
|
call ton_chibi("hide")
|
||||||
call gen_chibi("hide")
|
call gen_chibi("hide")
|
||||||
|
|
||||||
$ menu_y = 0.75
|
|
||||||
|
|
||||||
if action == "reset":
|
if action == "reset":
|
||||||
$ menu_y = 0.5
|
|
||||||
call ton_chibi("stand", xpos, ypos)
|
call ton_chibi("stand", xpos, ypos)
|
||||||
call gen_chibi("sit_behind_desk")
|
call gen_chibi("sit_behind_desk")
|
||||||
|
|
||||||
|
@ -18,8 +18,6 @@ label summon_tonks:
|
|||||||
|
|
||||||
label tonks_requests:
|
label tonks_requests:
|
||||||
|
|
||||||
# Reset
|
|
||||||
call reset_menu_position
|
|
||||||
ton "" (xpos="base",ypos="base")
|
ton "" (xpos="base",ypos="base")
|
||||||
|
|
||||||
menu:
|
menu:
|
||||||
|
@ -3,7 +3,6 @@ default states.active_girl = None
|
|||||||
default states.last_girl = None
|
default states.last_girl = None
|
||||||
|
|
||||||
default states.room = "main_room"
|
default states.room = "main_room"
|
||||||
default states.menu_pos = (0.5, 0.5)
|
|
||||||
|
|
||||||
default states.map.unlocked = False
|
default states.map.unlocked = False
|
||||||
default states.map.seventh_floor.unlocked = False
|
default states.map.seventh_floor.unlocked = False
|
||||||
|
@ -122,7 +122,7 @@ style quick_button_text is default:
|
|||||||
#
|
#
|
||||||
# https://www.renpy.org/doc/html/screen_special.html#choice
|
# https://www.renpy.org/doc/html/screen_special.html#choice
|
||||||
|
|
||||||
screen choice(items):
|
screen choice(items, menu_yalign=.6):
|
||||||
tag menu
|
tag menu
|
||||||
modal True
|
modal True
|
||||||
zorder 30
|
zorder 30
|
||||||
@ -138,7 +138,7 @@ screen choice(items):
|
|||||||
|
|
||||||
window at fade_show_hide(0.15):
|
window at fade_show_hide(0.15):
|
||||||
style "empty"
|
style "empty"
|
||||||
align states.menu_pos
|
yalign menu_yalign
|
||||||
|
|
||||||
vbox:
|
vbox:
|
||||||
spacing 0
|
spacing 0
|
||||||
|
@ -210,14 +210,10 @@ label letter(text, lbl):
|
|||||||
show screen letter(text)
|
show screen letter(text)
|
||||||
with d3
|
with d3
|
||||||
|
|
||||||
$ states.menu_pos = (0.5, 0.9)
|
menu (menu_yalign=.9):
|
||||||
|
|
||||||
menu:
|
|
||||||
"-Done reading-":
|
"-Done reading-":
|
||||||
pass
|
pass
|
||||||
|
|
||||||
call reset_menu_position
|
|
||||||
|
|
||||||
hide screen letter
|
hide screen letter
|
||||||
hide screen blktone
|
hide screen blktone
|
||||||
hide screen bld1
|
hide screen bld1
|
||||||
|
@ -55,7 +55,6 @@ screen main_room():
|
|||||||
|
|
||||||
label main_room:
|
label main_room:
|
||||||
call room("main_room", stop_sound=False)
|
call room("main_room", stop_sound=False)
|
||||||
call reset_menu_position
|
|
||||||
call gen_walk(action="enter", xpos="desk", ypos="base", speed=1.5)
|
call gen_walk(action="enter", xpos="desk", ypos="base", speed=1.5)
|
||||||
call gen_chibi("sit_behind_desk")
|
call gen_chibi("sit_behind_desk")
|
||||||
with d3
|
with d3
|
||||||
@ -71,8 +70,6 @@ label main_room_menu:
|
|||||||
hide screen bld1
|
hide screen bld1
|
||||||
with d3
|
with d3
|
||||||
|
|
||||||
call reset_menu_position
|
|
||||||
|
|
||||||
if game.daytime:
|
if game.daytime:
|
||||||
jump day_resume
|
jump day_resume
|
||||||
else:
|
else:
|
||||||
|
@ -29,7 +29,6 @@ screen seventh_floor():
|
|||||||
|
|
||||||
label seventh_floor:
|
label seventh_floor:
|
||||||
call room("seventh_floor")
|
call room("seventh_floor")
|
||||||
call reset_menu_position
|
|
||||||
play music "music/the-chamber-by-kevin-macleod.ogg" fadein 1 fadeout 3 if_changed
|
play music "music/the-chamber-by-kevin-macleod.ogg" fadein 1 fadeout 3 if_changed
|
||||||
call gen_chibi("stand", -100, "base")
|
call gen_chibi("stand", -100, "base")
|
||||||
call gen_walk(xpos="left_mid", ypos="base", speed=1.5)
|
call gen_walk(xpos="left_mid", ypos="base", speed=1.5)
|
||||||
|
@ -11,13 +11,6 @@ label hide_characters:
|
|||||||
# Do not add transitions. Use one after return.
|
# Do not add transitions. Use one after return.
|
||||||
return
|
return
|
||||||
|
|
||||||
# Reset menu
|
|
||||||
label reset_menu_position:
|
|
||||||
|
|
||||||
$ states.menu_pos = (0.5, 0.6)
|
|
||||||
|
|
||||||
return
|
|
||||||
|
|
||||||
label bld(action=None):
|
label bld(action=None):
|
||||||
if action == "hide":
|
if action == "hide":
|
||||||
hide screen bld1
|
hide screen bld1
|
||||||
@ -90,13 +83,11 @@ label music_block:
|
|||||||
|
|
||||||
label unlock_clothing(text="", item="interface/icons/box_blue_1.webp"):
|
label unlock_clothing(text="", item="interface/icons/box_blue_1.webp"):
|
||||||
|
|
||||||
$ states.menu_pos = (0.5, 0.75)
|
|
||||||
|
|
||||||
show screen clothing_unlock(item)
|
show screen clothing_unlock(item)
|
||||||
show screen blktone
|
show screen blktone
|
||||||
with d3
|
with d3
|
||||||
|
|
||||||
menu:
|
menu (menu_yalign=.75):
|
||||||
"[text]"
|
"[text]"
|
||||||
"-Done Reading-":
|
"-Done Reading-":
|
||||||
pass
|
pass
|
||||||
@ -107,8 +98,6 @@ label unlock_clothing(text="", item="interface/icons/box_blue_1.webp"):
|
|||||||
|
|
||||||
$ item.unlock()
|
$ item.unlock()
|
||||||
|
|
||||||
call reset_menu_position
|
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user