mirror of
https://git.cavemanon.xyz/Cavemanon/SnootGame.git
synced 2025-03-25 19:34:51 +01:00
fix gallery & rename seen_image -> mark_image_seen
This commit is contained in:
parent
02051ba08b
commit
54f5c7b857
8 changed files with 20 additions and 20 deletions
|
@ -2311,7 +2311,7 @@ label chapter_11:
|
||||||
with Dissolve(1)
|
with Dissolve(1)
|
||||||
pause .5
|
pause .5
|
||||||
|
|
||||||
$ renpy.seen_image('fullbody_fangarm')
|
$ renpy.mark_image_seen('fullbody_fangarm')
|
||||||
|
|
||||||
"She lays her head on my arm, very carefully. It was fast becoming her preferred pillow here."
|
"She lays her head on my arm, very carefully. It was fast becoming her preferred pillow here."
|
||||||
pause .5
|
pause .5
|
||||||
|
|
|
@ -45,7 +45,7 @@ label chapter_12C:
|
||||||
show kissu1
|
show kissu1
|
||||||
with dissolve
|
with dissolve
|
||||||
|
|
||||||
$ renpy.seen_image('fullbody_kissu1')
|
$ renpy.mark_image_seen('fullbody_kissu1')
|
||||||
|
|
||||||
Lucy "You're so good to me."
|
Lucy "You're so good to me."
|
||||||
|
|
||||||
|
|
|
@ -2465,7 +2465,7 @@ label chapter_13D:
|
||||||
with dissolve
|
with dissolve
|
||||||
pause 1
|
pause 1
|
||||||
|
|
||||||
$ renpy.seen_image('fullbody_dpromdance')
|
$ renpy.mark_image_seen('fullbody_dpromdance')
|
||||||
|
|
||||||
A "Alright, I think she said like this{cps=*.1}...{/cps}"
|
A "Alright, I think she said like this{cps=*.1}...{/cps}"
|
||||||
|
|
||||||
|
@ -3312,7 +3312,7 @@ label chapter_13D:
|
||||||
with Dissolve(1)
|
with Dissolve(1)
|
||||||
pause 1
|
pause 1
|
||||||
|
|
||||||
$ renpy.seen_image('fullbody_christmas')
|
$ renpy.mark_image_seen('fullbody_christmas')
|
||||||
|
|
||||||
"I’m sitting in my bed, looking through one of my favorite presents."
|
"I’m sitting in my bed, looking through one of my favorite presents."
|
||||||
|
|
||||||
|
|
|
@ -854,7 +854,7 @@ label chapter_14A:
|
||||||
ypos 0
|
ypos 0
|
||||||
with Dissolve(2)
|
with Dissolve(2)
|
||||||
|
|
||||||
$ renpy.seen_image('fullbody_fang_shooter')
|
$ renpy.mark_image_seen('fullbody_fang_shooter')
|
||||||
|
|
||||||
F "A-Anon{cps=*.1}...{/cps} WHY ARE YOU-!"
|
F "A-Anon{cps=*.1}...{/cps} WHY ARE YOU-!"
|
||||||
|
|
||||||
|
|
|
@ -796,7 +796,7 @@ label chapter_14C:
|
||||||
with Dissolve(1)
|
with Dissolve(1)
|
||||||
pause 1
|
pause 1
|
||||||
|
|
||||||
$ renpy.seen_image('fullbody_c06')
|
$ renpy.mark_image_seen('fullbody_c06')
|
||||||
|
|
||||||
"I draw Lucy close to my chest."
|
"I draw Lucy close to my chest."
|
||||||
|
|
||||||
|
@ -864,7 +864,7 @@ label chapter_14C:
|
||||||
with dissolve
|
with dissolve
|
||||||
pause 1
|
pause 1
|
||||||
|
|
||||||
$ renpy.seen_image('fullbody_c07')
|
$ renpy.mark_image_seen('fullbody_c07')
|
||||||
|
|
||||||
"I embrace her, I could tell she was getting tense, but slowly she relaxes in my arms."
|
"I embrace her, I could tell she was getting tense, but slowly she relaxes in my arms."
|
||||||
|
|
||||||
|
@ -983,7 +983,7 @@ label chapter_14C:
|
||||||
show c09 with Dissolve(1)
|
show c09 with Dissolve(1)
|
||||||
pause 1.25
|
pause 1.25
|
||||||
|
|
||||||
$ renpy.seen_image('fullbody_c09')
|
$ renpy.mark_image_seen('fullbody_c09')
|
||||||
|
|
||||||
A "Urgh-- it's ok, Lucy."
|
A "Urgh-- it's ok, Lucy."
|
||||||
pause .5
|
pause .5
|
||||||
|
|
|
@ -3269,14 +3269,14 @@ label chapter_5:
|
||||||
pause .5
|
pause .5
|
||||||
|
|
||||||
python:
|
python:
|
||||||
choices = [(_('Stay quiet...'), None),
|
choices = [(_('Stay quiet...'), 'Snot'),
|
||||||
(_('Interrupt'), 'linterrupt4')]
|
(_('Interrupt'), 'linterrupt4')]
|
||||||
choices = randomize_choices(choices)
|
choices = randomize_choices(choices)
|
||||||
_value = renpy.display_menu(choices)
|
_value = renpy.display_menu(choices)
|
||||||
_tick = 1
|
_tick = 1
|
||||||
|
|
||||||
renpy.pause(0.5)
|
renpy.pause(0.5)
|
||||||
if _value != None:
|
if _value != 'Snot':
|
||||||
renpy.jump(_value+chr(0x61+_tick))
|
renpy.jump(_value+chr(0x61+_tick))
|
||||||
|
|
||||||
"There’s a time to speak and a time to listen."
|
"There’s a time to speak and a time to listen."
|
||||||
|
@ -3411,7 +3411,7 @@ label chapter_5:
|
||||||
_value = renpy.display_menu(choices)
|
_value = renpy.display_menu(choices)
|
||||||
_tick += 1
|
_tick += 1
|
||||||
renpy.pause(0.5)
|
renpy.pause(0.5)
|
||||||
if _value != None:
|
if _value != "Snot":
|
||||||
renpy.jump(_value+chr(0x61+_tick))
|
renpy.jump(_value+chr(0x61+_tick))
|
||||||
|
|
||||||
$ wingStory = True
|
$ wingStory = True
|
||||||
|
@ -3500,7 +3500,7 @@ label chapter_5:
|
||||||
_value = renpy.display_menu(choices)
|
_value = renpy.display_menu(choices)
|
||||||
_tick += 1
|
_tick += 1
|
||||||
renpy.pause(0.5)
|
renpy.pause(0.5)
|
||||||
if _value != None:
|
if _value != "Snot":
|
||||||
renpy.jump(_value+chr(0x61+_tick))
|
renpy.jump(_value+chr(0x61+_tick))
|
||||||
|
|
||||||
show fang:
|
show fang:
|
||||||
|
@ -3582,7 +3582,7 @@ label chapter_5:
|
||||||
_value = renpy.display_menu(choices)
|
_value = renpy.display_menu(choices)
|
||||||
_tick += 1
|
_tick += 1
|
||||||
renpy.pause(0.5)
|
renpy.pause(0.5)
|
||||||
if _value != None:
|
if _value != "Snot":
|
||||||
renpy.jump(_value+chr(0x61+_tick))
|
renpy.jump(_value+chr(0x61+_tick))
|
||||||
|
|
||||||
$ fangscore += 1
|
$ fangscore += 1
|
||||||
|
@ -3865,7 +3865,7 @@ label chapter_5:
|
||||||
show fanganonhug
|
show fanganonhug
|
||||||
with dissolve
|
with dissolve
|
||||||
|
|
||||||
$ renpy.seen_image('fullbody_fanganonhug')
|
$ renpy.mark_image_seen('fullbody_fanganonhug')
|
||||||
|
|
||||||
"Without a second thought I draw her into a hug, comforting her."
|
"Without a second thought I draw her into a hug, comforting her."
|
||||||
|
|
||||||
|
@ -4205,7 +4205,7 @@ label chapter_5:
|
||||||
with Dissolve(1)
|
with Dissolve(1)
|
||||||
pause .5
|
pause .5
|
||||||
|
|
||||||
$ renpy.seen_image('fullbody_hallpass')
|
$ renpy.mark_image_seen('fullbody_hallpass')
|
||||||
|
|
||||||
"She takes it from my hands, our fingers brushing for a second."
|
"She takes it from my hands, our fingers brushing for a second."
|
||||||
|
|
||||||
|
|
|
@ -576,7 +576,7 @@ label chapter_8:
|
||||||
with dissolve
|
with dissolve
|
||||||
pause 0.5
|
pause 0.5
|
||||||
|
|
||||||
$ renpy.seen_image('fullbody_fangguitar')
|
$ renpy.mark_image_seen('fullbody_fangguitar')
|
||||||
|
|
||||||
F "Uhm{cps=*.1}...{/cps} This is just how I get ready for studying."
|
F "Uhm{cps=*.1}...{/cps} This is just how I get ready for studying."
|
||||||
|
|
||||||
|
@ -704,7 +704,7 @@ label chapter_8:
|
||||||
with dissolve
|
with dissolve
|
||||||
pause .5
|
pause .5
|
||||||
|
|
||||||
$ renpy.seen_image('fullbody_fanganonguitar')
|
$ renpy.mark_image_seen('fullbody_fanganonguitar')
|
||||||
|
|
||||||
"She’s standing RIGHT THE FUCK BEHIND ME!"
|
"She’s standing RIGHT THE FUCK BEHIND ME!"
|
||||||
pause .5
|
pause .5
|
||||||
|
|
|
@ -172,11 +172,11 @@ init 2 python:
|
||||||
path = cp #cp['path']
|
path = cp #cp['path']
|
||||||
_str = path+str+"."+ext
|
_str = path+str+"."+ext
|
||||||
|
|
||||||
print(_str)
|
#print(_str)
|
||||||
if renpy.loadable(_str): #brute force
|
if renpy.loadable(_str): #brute force
|
||||||
add_(str, _str, ext, tab_name) #cp['name'])
|
add_(str, _str, ext, tab_name) #cp['name'])
|
||||||
|
|
||||||
print(data)
|
#print(data)
|
||||||
pass
|
pass
|
||||||
|
|
||||||
jsonloadandpop()
|
jsonloadandpop()
|
||||||
|
@ -299,7 +299,7 @@ if/else flow control & extra parameters for Buttons
|
||||||
"""
|
"""
|
||||||
screen flag_button(item, yoffset, origin):
|
screen flag_button(item, yoffset, origin):
|
||||||
python:
|
python:
|
||||||
flag = True #renpy.seen_image(item['item'])
|
flag = renpy.seen_image(item['item'])
|
||||||
|
|
||||||
if flag:
|
if flag:
|
||||||
button:
|
button:
|
||||||
|
|
Loading…
Add table
Reference in a new issue