From 3cf909a78227d6eaeaa3764ed352ae9eb27303e3 Mon Sep 17 00:00:00 2001 From: nutbuster Date: Sat, 12 Nov 2022 21:45:52 +1100 Subject: [PATCH] Add Spanish Credit --- game/src/credits.rpy | 14 ++++++++++---- game/storyline.rpy | 18 +++++++++--------- 2 files changed, 19 insertions(+), 13 deletions(-) diff --git a/game/src/credits.rpy b/game/src/credits.rpy index 1e60adb..c3cd40c 100644 --- a/game/src/credits.rpy +++ b/game/src/credits.rpy @@ -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' ] } diff --git a/game/storyline.rpy b/game/storyline.rpy index f8544b5..c34e97b 100644 --- a/game/storyline.rpy +++ b/game/storyline.rpy @@ -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)