Add Spanish Credit

This commit is contained in:
nutbuster 2022-11-12 21:45:52 +11:00
parent 54f5c7b857
commit 3cf909a782
2 changed files with 19 additions and 13 deletions

View file

@ -71,10 +71,16 @@ init python:
'Character Design\nContest Winner:': [ 'Character Design\nContest Winner:': [
'Mono Anon', 'Mono Anon',
], ],
'Translators (Spanish)': [ 'Translators (Spanish):': [
'Sample Text', 'Queso2033 Anon',
'Sample Text 2', 'TheShadowTrAnon'
'Sample Text C' ],
'Proofreader (Spanish):': [
'ElBan Anón',
'GMAnon'
],
'Asset help (Spanish):': [
'Arkiangelo Anon'
] ]
} }

View file

@ -55,37 +55,37 @@ label storyline:
return return
image b_credits = Composite( image b_credits = Composite(
(1920, 11000+1000), (1920, 11000+3000),
(0, 0), "credits_base", (0, 0), "credits_base",
(0, 0), "credits_hbox", (0, 0), "credits_hbox",
(0, 10060+1000), "b_sketch" (0, 10060+3000), "b_sketch"
) )
image c_credits = Composite( image c_credits = Composite(
(1920, 11000+1000), (1920, 11000+3000),
(0, 0), "credits_base", (0, 0), "credits_base",
(0, 0), "credits_hbox", (0, 0), "credits_hbox",
(0, 10060+1000), "c_sketch" (0, 10060+3000), "c_sketch"
) )
image d_credits = Composite( image d_credits = Composite(
(1920, 11000+1000), (1920, 11000+3000),
(0, 0), "credits_base", (0, 0), "credits_base",
(0, 0), "credits_hbox", (0, 0), "credits_hbox",
(0, 10060+1000), "d_sketch" (0, 10060+3000), "d_sketch"
) )
label .ending: label .ending:
call get_ending call get_ending
if _return == 4: if _return == 4:
show d_credits at Pan((0, -500),(0, 9850), 65) with fade show d_credits at Pan((0, -800),(0, 9850+3000), 65) with fade
elif _return == 3: elif _return == 3:
play music "audio/OST/Dino Destiny Reader.ogg" play music "audio/OST/Dino Destiny Reader.ogg"
show c_credits at Pan((0, -500),(0, 9850), 65) with fade show c_credits at Pan((0, -800),(0, 9850+3000), 65) with fade
else: else:
play music "audio/OST/Dino Destiny Reader.ogg" play music "audio/OST/Dino Destiny Reader.ogg"
show b_credits at Pan((0, -500),(0, 9850), 65) with fade show b_credits at Pan((0, -800),(0, 9850+3000), 65) with fade
pause pause
stop music fadeout 5 stop music fadeout 5
scene black with Dissolve(3) scene black with Dissolve(3)