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:': [
'Mono Anon',
],
'Translators (Spanish)': [
'Sample Text',
'Sample Text 2',
'Sample Text C'
'Translators (Spanish):': [
'Queso2033 Anon',
'TheShadowTrAnon'
],
'Proofreader (Spanish):': [
'ElBan Anón',
'GMAnon'
],
'Asset help (Spanish):': [
'Arkiangelo Anon'
]
}

View File

@ -55,37 +55,37 @@ label storyline:
return
image b_credits = Composite(
(1920, 11000+1000),
(1920, 11000+3000),
(0, 0), "credits_base",
(0, 0), "credits_hbox",
(0, 10060+1000), "b_sketch"
(0, 10060+3000), "b_sketch"
)
image c_credits = Composite(
(1920, 11000+1000),
(1920, 11000+3000),
(0, 0), "credits_base",
(0, 0), "credits_hbox",
(0, 10060+1000), "c_sketch"
(0, 10060+3000), "c_sketch"
)
image d_credits = Composite(
(1920, 11000+1000),
(1920, 11000+3000),
(0, 0), "credits_base",
(0, 0), "credits_hbox",
(0, 10060+1000), "d_sketch"
(0, 10060+3000), "d_sketch"
)
label .ending:
call get_ending
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:
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:
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
stop music fadeout 5
scene black with Dissolve(3)