forked from SilverStudioGames/WTS
Public end dialogue check
* Added additional checks for public end dialogue writing.
This commit is contained in:
parent
ce435cb69c
commit
ac85848ce5
@ -129,13 +129,13 @@ label end_hg_pr_flash:
|
||||
pause.2
|
||||
|
||||
# Inner monologue
|
||||
if not _events_completed_any:
|
||||
if states.her.tier <= 3 and not _events_completed_any:
|
||||
|
||||
her "(Stupid Slytherins...)" ("angry", "narrow", "angry", "mid", xpos="far_right", flip=True, trans=d3)
|
||||
her "(I {b}HATE{/b} them!)" ("angry", "closed", "worried", "mid")
|
||||
|
||||
elif not states.her.ev.admire_breasts.monologue:
|
||||
$ states.her.ev.admire_breasts.monologue = True
|
||||
if states.her.ev.admire_breasts.monologue:
|
||||
$ states.her.ev.admire_breasts.monologue = False
|
||||
|
||||
her "(I can't believe I did that today...)" ("upset", "closed", "base", "mid", xpos="far_right", flip=True, trans=d3)
|
||||
her "(What if Harry or Ron saw me like that?)" ("angry", "wide", "base", "stare")
|
||||
@ -444,6 +444,8 @@ label hg_pr_flash_T4_E3:
|
||||
gen "*Hmm*..." ("base", xpos="far_left", ypos="head")
|
||||
gen "Well, alright... In that case, I suppose it counts..." ("base", xpos="far_left", ypos="head")
|
||||
|
||||
$ states.her.ev.admire_breasts.monologue = True
|
||||
|
||||
jump end_hg_pr_flash
|
||||
|
||||
### Tier 5 ###
|
||||
|
@ -99,7 +99,7 @@ label end_hg_pr_flirt:
|
||||
pause.2
|
||||
|
||||
# Inner monologue
|
||||
if not _events_completed_any:
|
||||
if states.her.tier <= 1 and not _events_completed_any:
|
||||
|
||||
her "(........)" ("disgust", "base", "worried", "down", ypos="base", xpos="base", flip=True, trans=d3)
|
||||
her "(I'll need to read about this whole \"flirting\" thing...)" ("annoyed", "base", "angry", "L")
|
||||
|
@ -132,7 +132,7 @@ label end_hg_pr_handjob:
|
||||
pause.2
|
||||
|
||||
# Inner monologue
|
||||
if not _events_completed_any:
|
||||
if states.her.tier <= 4 and not _events_completed_any:
|
||||
her ".........." ("upset", "narrow", "angry", "R", ypos="base", xpos="base", flip=True, trans=d3)
|
||||
her "(Do I really have to do this?)" ("upset", "closed", "angry", "mid")
|
||||
her "*Sigh*" ("soft", "closed", "angry", "mid")
|
||||
|
@ -104,7 +104,7 @@ label end_hg_pr_kiss:
|
||||
pause.2
|
||||
|
||||
# Inner monologue
|
||||
if not _events_completed_any:
|
||||
if states.her.tier <= 3 and not _events_completed_any:
|
||||
|
||||
her "(*Tsk*)" ("mad", "base", "angry", "R", ypos="base", xpos="base", flip=True, trans=d3)
|
||||
|
||||
|
@ -123,7 +123,7 @@ label end_hg_pr_grope:
|
||||
pause.2
|
||||
|
||||
# Inner monologue
|
||||
if not _events_completed_any:
|
||||
if states.her.tier <= 2 and not _events_completed_any:
|
||||
|
||||
her "(Why did I agree to this...)" ("disgust", "base", "worried", "down", ypos="base", xpos="base", flip=True, trans=d3)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user