forked from Cavemanon/SnootGame
Merge branch 'bncf' into Monster-Update-6
This commit is contained in:
523
game/script.rpy
523
game/script.rpy
@ -1,5 +1,5 @@
|
||||
#TODO
|
||||
#add chadshark
|
||||
#<strike>add chadshark</strike>
|
||||
#The game needs something like a CG gallery, if only to track your progress.
|
||||
#remove sex
|
||||
#troll /adgd/
|
||||
@ -76,6 +76,8 @@ transform randPosition:
|
||||
yalign random.uniform(0.2,0.8)
|
||||
linear 0.6 alpha 1.0
|
||||
linear 1.0 alpha 0.0
|
||||
|
||||
|
||||
#python:
|
||||
# def Walking( name ):
|
||||
# show name:
|
||||
@ -134,7 +136,7 @@ image ctc_end_marker:
|
||||
# linear 0.5 alpha 0
|
||||
# repeat
|
||||
image ctc_mid_marker:
|
||||
"pickicon2"
|
||||
"pickicon_smaller"
|
||||
# xalign 0.925 yalign 0.98
|
||||
alpha 0
|
||||
linear 0.25 alpha 1
|
||||
@ -169,6 +171,9 @@ define MaitD = Character ('Maitre D', base, color="#AF9EFF", who_outlines=[(gui.
|
||||
define Moe = Character('Moe', base, color="#A5BEED", who_outlines=[(gui.name_text_thickness, '#1F253B')]) # Desaturated Blue
|
||||
define Vince = Character ('Vince', base, color="#FFECBC", who_outlines=[(gui.name_text_thickness, '#563010')]) # Yellow-Orange
|
||||
define Waitress = Character ('Waitress', base, color="#F691C8", who_outlines=[(gui.name_text_thickness, '#512040')]) # Pink
|
||||
define Riley = Character ('Riley', base, color="#B675E6", who_outlines=[(gui.name_text_thickness, '#1F0632')]) # TODO
|
||||
define Tana = Character ('Tana', base, color="#B675E6", who_outlines=[(gui.name_text_thickness, '#1F0632')]) # TODO
|
||||
define Trevor = Character ('Trevor', base, color="#B675E6", who_outlines=[(gui.name_text_thickness, '#1F0632')]) # TODO
|
||||
#long TB chars
|
||||
define AnonAndFang = Character('Anon and Fang', base, color="72DFA8", who_outlines=[(gui.name_text_thickness, '#113623')]) # Cyan
|
||||
define SV = Character ('Street Vendor', base, color="#F8E120", who_outlines=[(gui.name_text_thickness, '#58260C')]) # Yellow
|
||||
@ -213,6 +218,7 @@ image stella neutral flip = im.Flip("stella/stella neutral.png", horizontal=True
|
||||
image stella neutral alt flip = im.Flip("stella/stella neutral alt.png", horizontal=True)
|
||||
image stella prom neutral flip = im.Flip("stella/stella prom neutral.png", horizontal=True)
|
||||
image moe neutral flip = im.Flip("moe/moe neutral.png", horizontal=True)
|
||||
image moe alt flip = im.Flip("moe/moealt.png", horizontal=True)
|
||||
image rosa neutral flip = im.Flip("rosa/rosa neutral.png", horizontal=True)
|
||||
image rosa prom neutral flip = im.Flip("rosa/rosa prom neutral.png", horizontal=True)
|
||||
image reed neutral flip = im.Flip("reed/reed neutral.png", horizontal=True)
|
||||
@ -233,15 +239,18 @@ image trish angry flip = im.Flip("trish/trish angry.png", horizontal=True)
|
||||
image trish prom angry flip = im.Flip("trish/trish prom angry.png", horizontal=True)
|
||||
image trish fury flip = im.Flip("trish/trish fury.png", horizontal=True)
|
||||
image reed angry flip = im.Flip("reed/reed angry.png", horizontal=True)
|
||||
image stella mad flip = im.Flip("stella/stella mad.png", horizontal=True)
|
||||
|
||||
#very angry flips
|
||||
image anon angry flip = im.Flip("anon/emotive set/anon angry.png", horizontal=True)
|
||||
|
||||
#sad flips
|
||||
image anon sad flip = im.Flip("anon/emotive set/anon sad.png", horizontal=True)
|
||||
image anon prom sad flip = im.Flip("anon/prom set/anon prom sad.png", horizontal=True)
|
||||
image fang very sad flip = im.Flip("fang/emotive set/fang very sad.png", horizontal=True)
|
||||
image fang sad flip = im.Flip("fang/basic set/fang sad.png", horizontal=True)
|
||||
image fang pendant sad flip = im.Flip("fang/christmas/fang pendant sad.png", horizontal=True)
|
||||
image fang a prom sad flip = im.Flip("fang/prom sets/fang a prom sad.png", horizontal=True)
|
||||
image fang c prom sad flip = im.Flip("fang/prom sets/fang c prom sad.png", horizontal=True)
|
||||
image fang c sad flip = im.Flip("fang/future sets/fang c sad.png", horizontal=True)
|
||||
image fang c sad2 flip = im.Flip("fang/future sets/fang c sad2.png", horizontal=True)
|
||||
@ -256,18 +265,25 @@ image stella sad flip = im.Flip("stella/stella sad.png", horizontal=True)
|
||||
image stella prom sad flip = im.Flip("stella/stella prom sad.png", horizontal=True)
|
||||
image reed sad flip = im.Flip("reed/reed sad.png", horizontal=True)
|
||||
|
||||
#shocked flips
|
||||
#shocked flip
|
||||
# WHY IS THERE NO CONSISTENCY BETWEEN 'SHOCK' AND 'SHOCKED' I SWEAR TO FUCK
|
||||
# TODO: these should all go into another .rpy file to keep this one clean, sorted by character rather than pose
|
||||
image anon shocked flip = im.Flip("anon/emotive set/anon shocked.png", horizontal=True)
|
||||
image anon ohshit flip = im.Flip("anon/base set/anon ohshit.png", horizontal=True)
|
||||
image anon prom shock flip = im.Flip("anon/prom set/anon prom shock.png", horizontal=True)
|
||||
image fang shocked flip = im.Flip("fang/emotive set/fang shocked.png", horizontal=True)
|
||||
image fang c shocked flip = im.Flip("fang/future sets/fang c shocked.png", horizontal=True)
|
||||
image reed shocked flip = im.Flip("reed/reed shocked.png", horizontal=True)
|
||||
image naser shocked flip = im.Flip("naser/naser shocked.png", horizontal=True)
|
||||
image naomi shocked flip = im.Flip("naomi/naomi shocked.png", horizontal=True)
|
||||
image stella shock alt flip = im.Flip("stella/stella shock alt.png", horizontal=True)
|
||||
image rosa shocked flip = im.Flip("rosa/rosa shocked.png", horizontal=True)
|
||||
image trish shock flip = im.Flip("trish/trish shock.png", horizontal=True)
|
||||
image fang prom d shocked flip = im.Flip("fang/prom sets/fang d prom shock.png", horizontal=True)
|
||||
|
||||
#considering flips
|
||||
image fang considering flip = im.Flip("fang/basic set/fang considering.png", horizontal=True)
|
||||
image fang a prom considering flip = im.Flip("fang/prom sets/fang a prom considering.png", horizontal=True)
|
||||
image reed considering flip = im.Flip("reed/reed considering.png", horizontal=True)
|
||||
image naser considering flip = im.Flip("naser/naser considering.png", horizontal=True)
|
||||
image naomi considering flip = im.Flip("naomi/naomi considering.png", horizontal=True)
|
||||
@ -292,10 +308,14 @@ image reed happy sunglasses flip = im.Flip("reed/reed happy sunglasses.png", hor
|
||||
image anon face happy flip = im.Flip("anon/base set/anon face happy.png", horizontal=True)
|
||||
image anon happy flip = im.Flip("anon/emotive set/anon happy.png", horizontal=True)
|
||||
image anon grin flip = im.Flip("anon/base set/anon grin.png", horizontal=True)
|
||||
image anon prom grin flip = im.Flip("anon/prom set/anon prom grin.png", horizontal=True)
|
||||
image trish future smug flip = im.Flip("trish/trish future smug.png", horizontal=True)
|
||||
image trish prom happy flip = im.Flip("trish/trish prom happy.png", horizontal=True)
|
||||
image trish smile flip = im.Flip("trish/trish smile.png", horizontal=True)
|
||||
image stella happy flip = im.Flip("stella/stella happy.png", horizontal=True)
|
||||
image stella happy alt flip = im.Flip("stella/stella happy alt.png", horizontal=True)
|
||||
image fangdad happy flip = im.Flip("fangparents/fangdad happy.png", horizontal=True)
|
||||
image fang very happy flip = im.Flip("fang/emotive set/fang very happy.png", horizontal=True)
|
||||
|
||||
#fear flips
|
||||
image anon fear flip = im.Flip("anon/emotive set/anon fear.png", horizontal=True)
|
||||
@ -313,10 +333,13 @@ image naomi explanatory flip = im.Flip("naomi/naomi explanatory.png", horizontal
|
||||
|
||||
#unimpressed flip
|
||||
image fang unimpressed flip = im.Flip("fang/basic set/fang unimpressed.png", horizontal=True)
|
||||
image fang a prom unimpressed flip = im.Flip("fang/prom sets/fang a prom unimpressed.png", horizontal=True)
|
||||
image fang d prom unimpressed flip = im.Flip("fang/prom sets/fang d prom unimpressed.png", horizontal=True)
|
||||
image reed unimpressed flip = im.Flip("reed/reed unimpressed.png", horizontal=True)
|
||||
image anon unimpressed flip = im.Flip("anon/base set/anon unimpressed.png", horizontal=True)
|
||||
image anon prom unimpressed flip = im.Flip("anon/prom set/anon prom unimpressed.png", horizontal=True)
|
||||
image naser unimpressed flip = im.Flip("naser/naser unimpressed.png", horizontal=True)
|
||||
image naser prom unimpressed flip = im.Flip("naser/naser prom unimpressed.png", horizontal=True)
|
||||
image trish unimpressed flip = im.Flip("trish/trish unimpressed.png", horizontal=True)
|
||||
image naomi unimpressed flip = im.Flip("naomi/naomi unimpressed.png", horizontal=True)
|
||||
image stella unimpressed flip = im.Flip("stella/stella unimpressed.png", horizontal=True)
|
||||
@ -342,7 +365,7 @@ image trish indignant flip = im.Flip("trish/trish indignant.png", horizontal=Tru
|
||||
#surprised flip
|
||||
image fang surprised flip = im.Flip("fang/basic set/fang surprised.png", horizontal=True)
|
||||
image trish surprised flip = im.Flip("trish/trish surprised.png", horizontal=True)
|
||||
|
||||
image naser surprised flip = im.Flip("naser/naser surprised.png", horizontal=True)
|
||||
|
||||
#other flips
|
||||
image spears happy flip = im.Flip("spears/spears happy.png", horizontal=True)
|
||||
@ -353,18 +376,487 @@ image rosa prom closed flip = im.Flip("rosa/rosa prom closed.png", horizontal=Tr
|
||||
image reed sunglasses flip = im.Flip("reed/reed sunglasses.png", horizontal=True)
|
||||
image trish prom bass flip = im.Flip("trish/trish prom bass.png", horizontal=True)
|
||||
image trish smug flip = im.Flip("trish/trish smug.png", horizontal=True)
|
||||
image naser smug flip = im.Flip("naser/naser smug.png", horizontal=True)
|
||||
image rosa future flip = im.Flip("rosa/rosa future.png", horizontal=True)
|
||||
image jinflip = im.Flip("other/jin.png", horizontal=True)
|
||||
image farnsworth flip = im.Flip("other/farnsworth.png", horizontal=True)
|
||||
image carldelewski flip = im.Flip("other/carldelewski.png", horizontal=True)
|
||||
image fangdad unimpressed flip = im.Flip("fangparents/fangdad unimpressed.png", horizontal=True)
|
||||
image naser handout flip = im.Flip("naser/naser handout.png", horizontal=True)
|
||||
#b's
|
||||
image naomi keikaku flip = im.Flip("naomi/naomi keikaku.png", horizontal=True)
|
||||
image anon shrug flip = im.Flip("anon/emotive set/anon shrug.png", horizontal=True)
|
||||
image fang hug flip = im.Flip("fang/emotive set/fang hug.png", horizontal=True)
|
||||
image naser brooding flip = im.Flip("naser/naser brooding.png", horizontal=True)
|
||||
image anon concerned flip = im.Flip("anon/base set/anon concerned.png", horizontal=True)
|
||||
image rosa excited flip = im.Flip("rosa/rosa excited.png", horizontal=True)
|
||||
image fang anguish flip = im.Flip("fang/emotive set/fang anguish.png", horizontal=True)
|
||||
image fang embarass flip = im.Flip("fang/emotive set/fang embarass.png", horizontal=True)
|
||||
#n's
|
||||
image fang adorable flip = im.Flip("fang/emotive set/fang adorable.png", horizontal=True)
|
||||
image anon concerned flip = im.Flip("images/anon/base set/anon concerned.png", horizontal=True)
|
||||
|
||||
# trish fam flips
|
||||
image chondra neutral flip = im.Flip("trishfam/chondra neutral.png", horizontal=True)
|
||||
image chondra happy flip = im.Flip("trishfam/chondra happy.png", horizontal=True)
|
||||
image riley neutral flip = im.Flip("trishfam/riley neutral.png", horizontal=True)
|
||||
image riley conspiratorial flip = im.Flip("trishfam/riley conspiratorial.png", horizontal=True)
|
||||
image riley smirk flip = im.Flip("trishfam/riley smirk.png", horizontal=True)
|
||||
image tali neutral flip = im.Flip("trishfam/tali neutral.png", horizontal=True)
|
||||
image tali happy flip = im.Flip("trishfam/tali happy.png", horizontal=True)
|
||||
image tana neutral flip = im.Flip("trishfam/tana neutral.png", horizontal=True)
|
||||
image tana cheer flip = im.Flip("trishfam/tana cheer.png", horizontal=True)
|
||||
image trevor neutral flip = im.Flip("trishfam/trevor neutral.png", horizontal=True)
|
||||
image trevor awe flip = im.Flip("trishfam/trevor awe.png", horizontal=True)
|
||||
|
||||
# scene flips
|
||||
image moes pizza mirrored = im.Flip("backgrounds/moes pizza.jpg", horizontal=True)
|
||||
|
||||
# vfx
|
||||
image black = "#000"
|
||||
image white = "#FFF"
|
||||
image blue = "#BECBFF"
|
||||
image dimmer_lighter = "#00000033"
|
||||
image dimmer_light = "#00000066"
|
||||
image dimmer_darker = "#00000088"
|
||||
image dimmer_darker2 = "#00000088"
|
||||
image lighter_freeze = '#1E90FF05'
|
||||
image light_freeze = '#1E90FF08' #11
|
||||
image dark_freeze = '#1E90FF08'
|
||||
image darker_freeze = '#1E90FF08'
|
||||
|
||||
#Images for effects
|
||||
image door blurred flip = im.Flip(im.Blur("/images/other/door.png", 1.5), horizontal=True)
|
||||
image guitarpick = "/images/other/pickthrown.png"
|
||||
image projector9 blurred = im.Blur("images/cgs/projector9.jpg", 1.5)
|
||||
image projector9 normal = "images/cgs/projector9.jpg"
|
||||
image fangonamp = "images/cgs/finalamp.png"
|
||||
image schooloutside normal = "images/backgrounds/outside school.jpg"
|
||||
image schooloutside blurred = im.Blur("images/backgrounds/outside school.jpg", 1.8)
|
||||
image sodacan blurred = im.Blur("images/other/sodacan.png", 1.8)
|
||||
image fangdadlarge = "images/fangparents/fangdad neutral large.png"
|
||||
image fangdadunimpressedlarge = "images/fangparents/fangdad unimpressed large.png"
|
||||
image lighter = "images/other/lighter.png"
|
||||
image amberpendant = "images/other/amberpendant1.png"
|
||||
image fangphone = "images/other/fangphone.png"
|
||||
image fangphonelayer1 = "images/other/fangphonelayer1.png"
|
||||
image fangphonelayer2 = im.Alpha("images/other/fangphonelayer2.png", 0.4)
|
||||
image nonalcoholic = "images/other/soda.png"
|
||||
image amberpendant = "images/other/amberpendant1.png"
|
||||
image amberpendant6veryhappy = 'images/other/amberpendant6veryhappy.png'
|
||||
image amberpendant4shock = 'images/other/amberpendant4shock.png'
|
||||
image chillicheesefries = 'images/other/chilli cheese fries.png'
|
||||
image ccf_rstain = 'images/other/rstain base set for composites.png'
|
||||
image ccf_lstain = 'images/other/lstain base set for composites.png'
|
||||
|
||||
#additional character images
|
||||
#naser gets a stain
|
||||
image naser rstained unimpressed = Composite(
|
||||
(1412, 1500),
|
||||
(0, 0), "naser unimpressed",
|
||||
(0, 0), "ccf_rstain"
|
||||
)
|
||||
|
||||
image naser rstained sad = Composite(
|
||||
(1412, 1500),
|
||||
(0, 0), "naser sad",
|
||||
(0, 0), "ccf_rstain"
|
||||
)
|
||||
|
||||
image naser rstained neutral = Composite(
|
||||
(1412, 1500),
|
||||
(0, 0), "naser neutral",
|
||||
(0, 0), "ccf_rstain"
|
||||
)
|
||||
|
||||
image naser rstained shocked = Composite(
|
||||
(1412, 1500),
|
||||
(0, 0), "naser shocked",
|
||||
(-40, -20), "ccf_rstain"
|
||||
)
|
||||
|
||||
image naser rstained explanatory = Composite(
|
||||
(1412, 1500),
|
||||
(0, 0), "naser explanatory",
|
||||
(20, 0), "ccf_rstain"
|
||||
)
|
||||
|
||||
#naser got two stains
|
||||
image naser fullystained happy = Composite(
|
||||
(1412, 1500),
|
||||
(0, 0), "naser happy",
|
||||
(0, 0), "ccf_rstain",
|
||||
(-175, 0), "ccf_lstain"
|
||||
)
|
||||
|
||||
image naser fullystained unimpressed = Composite(
|
||||
(1412, 1500),
|
||||
(0, 0), "naser unimpressed",
|
||||
(0, 0), "ccf_rstain",
|
||||
(-175, 0), "ccf_lstain"
|
||||
)
|
||||
|
||||
image naser fullystained surprised = Composite(
|
||||
(1412, 1500),
|
||||
(0, 0), "naser surprised",
|
||||
(-15, -15), "ccf_rstain",
|
||||
(-235, -20), "ccf_lstain"
|
||||
)
|
||||
|
||||
image naser fullystained explanatory = Composite(
|
||||
(1412, 1500),
|
||||
(0, 0), "naser explanatory",
|
||||
(20, 0), "ccf_rstain",
|
||||
(-175, 0), "ccf_lstain"
|
||||
)
|
||||
|
||||
image naser fullystained sad = Composite(
|
||||
(1412, 1500),
|
||||
(0, 0), "naser sad",
|
||||
(0, 0), "ccf_rstain",
|
||||
(-175, 0), "ccf_lstain"
|
||||
)
|
||||
|
||||
image naser fullystained considering = Composite(
|
||||
(1412, 1500),
|
||||
(0, 0), "naser considering",
|
||||
(0, 0), "ccf_rstain",
|
||||
(-175, 0), "ccf_lstain"
|
||||
)
|
||||
|
||||
image naser fullystained shocked = Composite(
|
||||
(1412, 1500),
|
||||
(0, 0), "naser shocked",
|
||||
(-280, -20), "ccf_lstain",
|
||||
(-40, -20), "ccf_rstain"
|
||||
)
|
||||
|
||||
#fang w pendant ending D
|
||||
image fang nonxmas pendant happy = Composite(
|
||||
# (1412, 1500),
|
||||
(1412, 1500),
|
||||
(0, 0), "fang happy",
|
||||
(0, 0), "amberpendant"
|
||||
)
|
||||
|
||||
image fang nonxmas pendant sad = Composite(
|
||||
# (1412, 1500),
|
||||
(1412, 1500),
|
||||
(0, 0), "fang sad",
|
||||
(0, 0), "amberpendant"
|
||||
)
|
||||
|
||||
image fang nonxmas pendant unimpressed = Composite(
|
||||
# (1412, 1500),
|
||||
(1412, 1500),
|
||||
(0, 0), "fang unimpressed",
|
||||
(0, 0), "amberpendant"
|
||||
)
|
||||
|
||||
image fang nonxmas pendant surprised = Composite(
|
||||
# (1412, 1500),
|
||||
(1412, 1500),
|
||||
(0, 0), "fang surprised",
|
||||
(0, 0), "amberpendant"
|
||||
)
|
||||
|
||||
image fang nonxmas pendant angry = Composite(
|
||||
# (1412, 1500),
|
||||
(1412, 1500),
|
||||
(0, 0), "fang angry",
|
||||
(0, 0), "amberpendant"
|
||||
)
|
||||
|
||||
image fang nonxmas pendant neutral = Composite(
|
||||
# (1412, 1500),
|
||||
(1412, 1500),
|
||||
(0, 0), "fang neutral",
|
||||
(0, 0), "amberpendant"
|
||||
)
|
||||
|
||||
image fang nonxmas pendant considering = Composite(
|
||||
# (1412, 1500),
|
||||
(1412, 1500),
|
||||
(0, 0), "fang considering",
|
||||
(0, 0), "amberpendant"
|
||||
)
|
||||
|
||||
image fang nonxmas pendant very happy = Composite(
|
||||
# (1412, 1500),
|
||||
(1412, 1500),
|
||||
(0, 0), "fang very happy",
|
||||
(0, 0), "amberpendant6veryhappy"
|
||||
)
|
||||
|
||||
image fang nonxmas pendant very happy = Composite(
|
||||
# (1412, 1500),
|
||||
(1412, 1500),
|
||||
(0, 0), "fang very happy",
|
||||
(0, 0), "amberpendant6veryhappy"
|
||||
)
|
||||
|
||||
image fang nonxmas pendant shocked = Composite(
|
||||
# (1412, 1500),
|
||||
(1412, 1500),
|
||||
(0, 0), "fang shocked",
|
||||
(0, 0), "amberpendant4shock"
|
||||
)
|
||||
|
||||
image fang nonxmas pendant flip off happy = Composite(
|
||||
# (1412, 1500),
|
||||
(1412, 1500),
|
||||
(0, 0), "fang flip off happy",
|
||||
(0, 0), "amberpendant"
|
||||
)
|
||||
|
||||
#phone gallery effect
|
||||
|
||||
image anoninsideship = "images/other/phonegallery/anoninsideship.png"
|
||||
image anonmushroom = "images/other/phonegallery/anonmushroom.png"
|
||||
image fanghugsanonbylake = "images/other/phonegallery/fanghugsanonbylake.png"
|
||||
image fangrebel = "images/other/phonegallery/fangrebel.png"
|
||||
image museumbones = "images/other/phonegallery/museumbones.png"
|
||||
image peachesfangshy = "images/other/phonegallery/peachesfangshy.png"
|
||||
image reeddoesscienceclass = "images/other/phonegallery/reeddoesscience class.png"
|
||||
image rosastellacampsite = "images/other/phonegallery/rosastellacampsite.png"
|
||||
image trishgarden = "images/other/phonegallery/trishflower garden.png"
|
||||
image warship = "images/other/phonegallery/warship.png"
|
||||
image fangreedbandroom = "images/other/phonegallery/tfangreedbandroom.png"
|
||||
image fangtrishoutsideschool = "images/other/phonegallery/fangtrishoutside school.png"
|
||||
image reedkingrexauditorium = "images/other/phonegallery/reedkingrexauditorium.png"
|
||||
image reedtrishfanghallway = "images/other/phonegallery/reedtrishfanghallway.png"
|
||||
|
||||
image fangphonegallery1:
|
||||
"peachesfangshy" with dissolve
|
||||
pause 2.0
|
||||
"anonmushroom" with dissolve
|
||||
pause 2.0
|
||||
"warship" with dissolve
|
||||
pause 2.0
|
||||
"anoninsideship" with dissolve
|
||||
pause 2.0
|
||||
"fangrebel" with dissolve
|
||||
pause 2.0
|
||||
"museumbones" with dissolve
|
||||
pause 2.0
|
||||
repeat
|
||||
|
||||
image fangphonegallery2:
|
||||
"rosastellacampsite" with dissolve
|
||||
pause 0.7
|
||||
"reeddoesscienceclass" with dissolve
|
||||
pause 0.7
|
||||
"trishgarden" with dissolve
|
||||
pause 0.7
|
||||
"rosastellacampsite" with dissolve
|
||||
pause 0.7
|
||||
"reedkingrexauditorium" with dissolve
|
||||
pause 0.7
|
||||
"fangtrishoutsideschool" with dissolve
|
||||
pause 0.7
|
||||
"fangreedbandroom" with dissolve
|
||||
pause 0.7
|
||||
"reedtrishfanghallway" with dissolve
|
||||
pause 0.7
|
||||
repeat
|
||||
|
||||
#end of phone gallery effect
|
||||
|
||||
image chadshark flip = im.Flip("stella/chadshark.png", horizontal=True)
|
||||
image chadshark = "stella/chadshark.png"
|
||||
image naser tablehit = "naser/naser table hit.png"
|
||||
image naser tablehit flip = im.Flip("naser/naser table hit.png", horizontal=True)
|
||||
image naomi future flip = im.Flip('images/naomi/naomi future.png', horizontal=True)
|
||||
image fang d happy flip = im.Flip('images/fang/future sets/fang d happy.png', horizontal=True)
|
||||
image naser neckhold flip = im.Flip('images/naser/naserneckhold.png', horizontal=True)
|
||||
image anon grin = 'images/anon/base set/anon grin.png'
|
||||
image anon grin flip = im.Flip('images/anon/base set/anon grin.png', horizontal=True)
|
||||
image tracy neutral flip = im.Flip('images/tracy/tracy neutral.png', horizontal=True)
|
||||
image tracy tease flip = im.Flip('images/tracy/tracy tease.png', horizontal=True)
|
||||
image tracy unimpressed flip = im.Flip('images/tracy/tracy unimpressed.png', horizontal=True)
|
||||
|
||||
|
||||
#extra chapters other images
|
||||
image home fang night blurred = im.Blur('images/backgrounds/home fang night.jpg', 2.0)
|
||||
image home fang night lessblurred = im.Blur('images/backgrounds/home fang night.jpg', 1.5)
|
||||
image home fang night barelyblurred = im.Blur('images/backgrounds/home fang night.jpg', 0.5)
|
||||
image d01_blur = im.Blur('images/cgs/d01.jpg', 1.5)
|
||||
|
||||
image fangroomfuture = "images/backgrounds/fangroomfuture.png"
|
||||
image livingroomdayalt = "images/backgrounds/livingroomdayalt.png"
|
||||
image emptyroomnight = "images/backgrounds/emptyroomnight.png"
|
||||
|
||||
image naomifangcg = "images/cgs/naomifangcg.png"
|
||||
image naomifangcg blur = im.Blur("images/cgs/naomifangcg.png", 1.5)
|
||||
image naomiletter = 'images/cgs/naomiletter.png'
|
||||
image ending_d_cg = 'images/cgs/golden ending.png'
|
||||
|
||||
image photoviewfinder = 'images/other/photoviewfinder.png'
|
||||
|
||||
image projector9_blur:
|
||||
"projector9 normal" with dissolve
|
||||
pause 1
|
||||
"projector9 blurred" with dissolve
|
||||
pause 1
|
||||
repeat
|
||||
|
||||
image schooloutside_blur:
|
||||
"schooloutside normal" with dissolve
|
||||
pause 1
|
||||
"schooloutside blurred" with dissolve
|
||||
pause 1
|
||||
repeat
|
||||
|
||||
#phone bgs for video calls
|
||||
#caller bgs
|
||||
image anonday_videocall_bg = im.Crop(im.FactorScale("images/backgrounds/foodcourt.jpg", 0.9),(0,40,576,920))
|
||||
image anonnight_videocall_bg = im.Crop(im.FactorScale("images/backgrounds/room anon dark.jpg", 0.9),(100,40,576,920))
|
||||
image fangphonebg = im.Crop(im.FactorScale("images/backgrounds/anonroomday2.png", 0.9),(400,40,576,920))
|
||||
image fpvcblack = im.Scale("images/other/black.png", 565, 1100)
|
||||
image call_ended = im.Scale("images/other/black.png", 656, 700)
|
||||
image caller_black = im.Scale("images/other/blackwtransp.png", 656, 700)
|
||||
|
||||
#callers
|
||||
image anon_vc_neutral = im.Flip(im.Crop(im.FactorScale("images/anon/base set/anon neutral.png", 2.0),(900,250,653,800)), horizontal=True)
|
||||
image anon_vc_angry = im.Crop(im.FactorScale("images/anon/emotive set/anon angry.png", 2.0),(900,250,653,800))
|
||||
image anon_vc_sad = im.Flip(im.Crop(im.FactorScale("images/anon/emotive set/anon sad.png", 2.0),(900,250,653,800)), horizontal=True)
|
||||
image anon_vc_neutral_alt1 = im.Crop(im.FactorScale("images/anon/base set/anon neutral.png", 2.0),(800,250,653,800))
|
||||
image anon_vc_concerned = im.Flip(im.Crop(im.FactorScale("images/anon/base set/anon concerned.png", 2.0),(900,250,653,800)), horizontal=True)
|
||||
image anon_vc_happy = im.Flip(im.Crop(im.FactorScale("images/anon/base set/anon happy.png", 2.0),(900,250,653,800)), horizontal=True)
|
||||
image anon_vc_grin = im.Flip(im.Crop(im.FactorScale("images/anon/base set/anon grin.png", 2.0),(900,250,653,800)), horizontal=True)
|
||||
image anon_vc_unimpressed = im.Flip(im.Crop(im.FactorScale("images/anon/base set/anon unimpressed.png", 2.0),(900,250,653,800)), horizontal=True)
|
||||
image no_caller = im.Alpha('images/other/black.png', 0)
|
||||
image anonfangfor_phonebg = im.Crop(im.FactorScale("images/other/anon_fang_xmas.png", 1.0),(650,140,653,800))
|
||||
|
||||
#fangphone effect - video call with Anon mainly
|
||||
layeredimage fangphonevideocall:
|
||||
group midlayer:
|
||||
# pos (370, -20)
|
||||
pos (370, -20)
|
||||
rotate 1
|
||||
attribute blackmid default:
|
||||
"fpvcblack"
|
||||
|
||||
group talkerbg:
|
||||
# pos (446, -35)
|
||||
pos (440, -25)
|
||||
rotate 1
|
||||
# xzoom 1.3 #anon's cam is shitty?
|
||||
attribute bgday default:
|
||||
"anonday_videocall_bg"
|
||||
|
||||
attribute bgnight:
|
||||
"anonnight_videocall_bg"
|
||||
|
||||
attribute call_ended_bg:
|
||||
"fangphonebg"
|
||||
|
||||
attribute call_ended_bg_black:
|
||||
"caller_black"
|
||||
|
||||
group talker:
|
||||
pos (417, 65)
|
||||
rotate 3
|
||||
attribute anonneutral:
|
||||
"anon_vc_neutral"
|
||||
|
||||
attribute anonneutralalt1:
|
||||
"anon_vc_neutral_alt1"
|
||||
|
||||
attribute anonconcerned:
|
||||
"anon_vc_concerned"
|
||||
|
||||
attribute anonhappy:
|
||||
"anon_vc_happy"
|
||||
|
||||
attribute anongrin:
|
||||
"anon_vc_grin"
|
||||
|
||||
attribute anonsad:
|
||||
"anon_vc_sad"
|
||||
|
||||
attribute anonangry:
|
||||
"anon_vc_angry"
|
||||
|
||||
attribute anonunimpressed:
|
||||
"anon_vc_unimpressed"
|
||||
|
||||
attribute call_ended:
|
||||
"anonfangfor_phonebg"
|
||||
|
||||
attribute call_ended_poff:
|
||||
"caller_black"
|
||||
|
||||
attribute galleryapp1:
|
||||
"fangphonegallery1"
|
||||
|
||||
attribute galleryapp2:
|
||||
"fangphonegallery2"
|
||||
|
||||
always:
|
||||
"fangphonelayer1"
|
||||
|
||||
group toplayer:
|
||||
attribute basic default:
|
||||
"fangphonelayer2"
|
||||
|
||||
#Dual actor images
|
||||
image fangcarriesanon = "images/anon/Other/fanganoncarry.png"
|
||||
image fanganon_promdance = "images/anon/Other/dpromdance.png"
|
||||
image fanganonhug = "images/fang/fullbody/fanganonhug.png"
|
||||
|
||||
image anon smiley = "images/anon/base set/anon face happy.png"
|
||||
|
||||
#additional CGs
|
||||
image gold_fang_home_prom_stars = "images/cgs/stair3.png"
|
||||
image good_fang_home_prom_stars = "images/cgs/stair2.png"
|
||||
image other_fang_home_prom_stars = "images/cgs/stair1.png"
|
||||
image anonfang_xmasmorningbed = "images/cgs/anonchristmasmorning.png"
|
||||
|
||||
#sepia effect for flashbacks
|
||||
image grainf0 = "images/other/grain/frame_00.png"
|
||||
image grainf1 = "images/other/grain/frame_01.png"
|
||||
image grainf2 = "images/other/grain/frame_08.png"
|
||||
image grainf3 = "images/other/grain/frame_09.png"
|
||||
image grainf4 = "images/other/grain/frame_10.png"
|
||||
image grainf5 = "images/other/grain/frame_13.png"
|
||||
|
||||
image grain_effect:
|
||||
"grainf0" with dissolve
|
||||
pause 0.2
|
||||
"grainf1" with dissolve
|
||||
pause 0.2
|
||||
"grainf2" with dissolve
|
||||
pause 0.2
|
||||
"grainf3" with dissolve
|
||||
pause 0.2
|
||||
"grainf4" with dissolve
|
||||
pause 0.2
|
||||
"grainf5" with dissolve
|
||||
pause 0.2
|
||||
repeat
|
||||
|
||||
image sepiagarden = im.Sepia("images/backgrounds/garden.jpg")
|
||||
image sepiaanon neutral = im.Sepia("images/anon/base set/anon neutral.png")
|
||||
image sepiaanon concerned flip= im.Sepia(im.Flip("images/anon/base set/anon concerned.png", horizontal=True))
|
||||
image sepiaanon neutral flip= im.Sepia(im.Flip("images/anon/base set/anon neutral.png", horizontal=True))
|
||||
image sepiarosa neutral flip = im.Sepia(im.Flip("images/rosa/rosa neutral.png", horizontal=True))
|
||||
image sepiastella explanatory flip = im.Sepia(im.Flip("images/stella/stella explanatory.png", horizontal=True))
|
||||
image sepiastella unimpressed flip = im.Sepia(im.Flip("images/stella/stella unimpressed.png", horizontal=True))
|
||||
image sepiastella neutral flip = im.Sepia(im.Flip("images/stella/stella neutral.png", horizontal=True))
|
||||
image sepiafang happy = im.Sepia("images/fang/basic set/fang happy.png")
|
||||
image sepiafang sad = im.Sepia("images/fang/basic set/fang sad.png")
|
||||
image flashbacktitlecard = "images/other/grain/flashbacktitlecard.png"
|
||||
image flashbackfincard = "images/other/grain/flashbackfincard.png"
|
||||
|
||||
|
||||
#additional BGs
|
||||
image park_night = "images/backgrounds/park night.jpg"
|
||||
image home_fang_dim = "images/backgrounds/home fang dim.jpg"
|
||||
image bus_stop = "images/backgrounds/Bus_Stop.jpg"
|
||||
image hotel = "images/backgrounds/hotellobby.jpg"
|
||||
image airport = "images/backgrounds/airport.jpg"
|
||||
image fromairplane = "images/backgrounds/fromairplane.jpg"
|
||||
|
||||
#WAOH ITS THE TITLE SCREEN!!!!
|
||||
label splashscreen:
|
||||
@ -436,6 +928,29 @@ transform rleft:
|
||||
transform rright:
|
||||
xalign 1.7 yalign 0.1
|
||||
|
||||
#misc transforms
|
||||
transform shudder:
|
||||
subpixel True
|
||||
around (.5, .5) alignaround (.5, .5) xalign .5 yalign .5
|
||||
rotate 0
|
||||
linear 0.0 rotate -0.75
|
||||
block:
|
||||
linear 0.04 rotate 0.75
|
||||
linear 0.05 rotate -0.75
|
||||
linear 0.07 rotate 0
|
||||
|
||||
transform turnaround:
|
||||
linear 0.1 xzoom -1.0
|
||||
|
||||
transform wiggle:
|
||||
subpixel True
|
||||
block:
|
||||
xpos 0.5 ypos 1.0 xanchor 0.5 yanchor 1.0 zoom 1.02
|
||||
alignaround (.5, .5)
|
||||
linear 10.0 yalign 1.0 clockwise circles 1
|
||||
repeat
|
||||
|
||||
|
||||
label start:
|
||||
$ fangscore = 0
|
||||
$ anonscore = 0
|
||||
|
Reference in New Issue
Block a user