definitions, json & undefining golden ending dupe

This commit is contained in:
2022-11-03 20:23:15 +11:00
parent 5f00c4c97d
commit 626729bd0f
12 changed files with 142 additions and 10 deletions

View File

@ -826,7 +826,7 @@ image naomi prom lessblurred = im.Flip(im.Blur('images/naomi/naomi prom neutral.
#image naomifangcg = "images/cgs/naomifangcg.png" #image naomifangcg = "images/cgs/naomifangcg.png"
image naomifangcg blur = im.Blur("images/cgs/naomifangcg.jpg", 1.5) image naomifangcg blur = im.Blur("images/cgs/naomifangcg.jpg", 1.5)
image naomiletter = 'images/cgs/naomiletter.jpg' image naomiletter = 'images/cgs/naomiletter.jpg'
image ending_d_cg = 'images/cgs/golden ending.jpg' #image ending_d_cg = 'images/cgs/golden ending.jpg'
image photoviewfinder = 'images/other/photoviewfinder.png' image photoviewfinder = 'images/other/photoviewfinder.png'

View File

@ -2311,6 +2311,8 @@ label chapter_11:
with Dissolve(1) with Dissolve(1)
pause .5 pause .5
$ renpy.seen_image('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

View File

@ -45,6 +45,8 @@ label chapter_12C:
show kissu1 show kissu1
with dissolve with dissolve
$ renpy.seen_image('fullbody_kissu1')
Lucy "You're so good to me." Lucy "You're so good to me."
A "Thanks. F- Lucy." A "Thanks. F- Lucy."
@ -206,6 +208,8 @@ label chapter_12C:
with Dissolve(1) with Dissolve(1)
pause .5 pause .5
$ renpy.mark_image_seen('fullbody_kissu2')
Lucy "See? Getting better." Lucy "See? Getting better."
A "Mmm…" A "Mmm…"

View File

@ -2465,6 +2465,8 @@ label chapter_13D:
with dissolve with dissolve
pause 1 pause 1
$ renpy.seen_image('fullbody_dpromdance')
A "Alright, I think she said like this{cps=*.1}...{/cps}" A "Alright, I think she said like this{cps=*.1}...{/cps}"
show fanganon_promdance: show fanganon_promdance:
@ -3310,6 +3312,8 @@ label chapter_13D:
with Dissolve(1) with Dissolve(1)
pause 1 pause 1
$ renpy.seen_image('fullbody_christmas')
"Im sitting in my bed, looking through one of my favorite presents." "Im sitting in my bed, looking through one of my favorite presents."
"Fangs mom was right, I am happy about all those photos." "Fangs mom was right, I am happy about all those photos."

View File

@ -854,6 +854,8 @@ label chapter_14A:
ypos 0 ypos 0
with Dissolve(2) with Dissolve(2)
$ renpy.seen_image('fullbody_fang_shooter')
F "A-Anon{cps=*.1}...{/cps} WHY ARE YOU-!" F "A-Anon{cps=*.1}...{/cps} WHY ARE YOU-!"
A "Aaaah{cps=*.1}...{/cps}{w=.4} haaaah{cps=*.1}...{/cps} Fang{cps=*.1}...{/cps}{w=.4} why{cps=*.1}...{/cps}?" A "Aaaah{cps=*.1}...{/cps}{w=.4} haaaah{cps=*.1}...{/cps} Fang{cps=*.1}...{/cps}{w=.4} why{cps=*.1}...{/cps}?"

View File

@ -796,6 +796,8 @@ label chapter_14C:
with Dissolve(1) with Dissolve(1)
pause 1 pause 1
$ renpy.seen_image('fullbody_c06')
"I draw Lucy close to my chest." "I draw Lucy close to my chest."
"She snuggles up to me." "She snuggles up to me."
@ -862,6 +864,8 @@ label chapter_14C:
with dissolve with dissolve
pause 1 pause 1
$ renpy.seen_image('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."
"When I said that we're being together was all that mattered, she hugged me back." "When I said that we're being together was all that mattered, she hugged me back."
@ -979,6 +983,8 @@ label chapter_14C:
show c09 with Dissolve(1) show c09 with Dissolve(1)
pause 1.25 pause 1.25
$ renpy.seen_image('fullbody_c09')
A "Urgh-- it's ok, Lucy." A "Urgh-- it's ok, Lucy."
pause .5 pause .5

View File

@ -3865,6 +3865,8 @@ label chapter_5:
show fanganonhug show fanganonhug
with dissolve with dissolve
$ renpy.seen_image('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."
"Her voice is muffled by my jacket but she continues." "Her voice is muffled by my jacket but she continues."
@ -4203,6 +4205,8 @@ label chapter_5:
with Dissolve(1) with Dissolve(1)
pause .5 pause .5
$ renpy.seen_image('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."
"She blushes while she handles the acoustic bathroom pass." "She blushes while she handles the acoustic bathroom pass."

View File

@ -576,6 +576,8 @@ label chapter_8:
with dissolve with dissolve
pause 0.5 pause 0.5
$ renpy.seen_image('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."
F "Strumming along puts me at ease." F "Strumming along puts me at ease."
@ -702,6 +704,8 @@ label chapter_8:
with dissolve with dissolve
pause .5 pause .5
$ renpy.seen_image('fullbody_fanganonguitar')
"Shes standing RIGHT THE FUCK BEHIND ME!" "Shes standing RIGHT THE FUCK BEHIND ME!"
pause .5 pause .5

81
game/src/definitions.rpy Normal file
View File

@ -0,0 +1,81 @@
init offset = 1 #load later than the scripts folder
#dpromdance
# fang full body
image fullbody_hallpass = Composite(
(1920, 1080),
(0, 0), 'roof day',
(0, 0), 'hallpass')
image fullbody_fangguitar = Composite(
(1920, 1080),
(0, 0), 'fangroom',
(0, 0), 'fangguitar')
#full body fang anon wombo
image fullbody_fangarm = Composite(
(1920, 1080),
(-771, 0), 'room anon day alt', #check
(213, 0), 'fangarm')
image fullbody_fanganonguitar = Composite(
(1920, 1080),
(0, 0), 'fangroom',
(213, 0), 'fanganonguitar')
#path to true ending only
image fullbody_fanganonhug = Composite(
(1920, 1080),
(0, 0), 'roof day',
(0, 0), 'fanganonhug')
#crops
image fullbody_kissu1 = Composite(
(1920, 1080),
(0, 0), 'room anon night',
(-529, 0), 'kissu1')
image fullbody_kissu2 = Composite(
(1920, 1080),
(0, 0), 'room anon day',
(213, 0), 'kissu2')
# ENDING 4
image fullbody_dpromdance = Composite(
(1920, 1080),
(0, 0), 'park_night',
(0, 0), 'dpromdance')
image fullbody_christmas = Composite(
(1920, 1080),
(0, 0), 'room anon day',
(0, 0), 'anonchristmasmorning')
# ENDING 3
image fullbody_c06 = Composite(
(1920, 1080),
(0, 0), 'park night',
(0, 0), 'c06')
image fullbody_c07 = Composite(
(1920, 1080),
(0, 0), 'park night',
(0, 0), 'c07')
image fullbody_c09 = Composite(
(1920, 1080),
(0, 0), 'city morning',
(0, 0), 'c09')
# ENDING 1
image fullbody_fang_shooter = Composite(
(1920, 1080),
(0, 0), 'shooterroof',
(0, 0), 'fang shooter')

View File

@ -0,0 +1,25 @@
{
{
"tab_name": "Full Body Fang",
"items": {
{ "name": "hallpass", "image": "fullbody_hallpass" },
{ "name": "fangguitar", "image": "fullbody_fangguitar" },
{ "name": "fangshooter", "image": "fullbody_fangshooter" }
}
},
{
tab_name: "Full Body Fang & Anon",
"items": {
{ "name": "fanganonhug", "image": "fullbody_fanganonhug" },
{ "name": "fanganonguitar", "image": "fullbody_fanganonguitar" },
{ "name": "fangarm", "image": "fullbody_fangarm" },
{ "name": "kissu1", "image": "fullbody_kissu1" },
{ "name": "kissu2", "image": "fullbody_kissu2" },
{ "name": "c06", "image": "fullbody_c06" },
{ "name": "c07", "image": "fullbody_c07" },
{ "name": "c09", "image": "fullbody_c09" },
{ "name": "anonchristmasmorning", "image": "fullbody_christmas" }
}
}
}

View File

@ -89,7 +89,7 @@ label .ending:
scene black with Dissolve(2) scene black with Dissolve(2)
pause 1 pause 1
elif anonscore >= 4 and fangscore >= 4: elif anonscore >= 4 and fangscore >= 4:
scene ending_d_cg with Dissolve(1.5) scene golden ending with Dissolve(1.5)
pause 20 pause 20
scene black with Dissolve(2) scene black with Dissolve(2)
pause 1 pause 1

View File

@ -1,6 +1,6 @@
# TODO: Translation updated at 2022-10-21 13:48 # TODO: Translation updated at 2022-10-21 13:48
translate test strings: translate es strings:
# renpy/common/00accessibility.rpy:28 # renpy/common/00accessibility.rpy:28
old "Self-voicing disabled." old "Self-voicing disabled."