This commit is contained in:
nutbuster 2022-11-12 21:50:06 +11:00
parent 3cf909a782
commit ef5115dc2c

View file

@ -6,7 +6,7 @@ init python:
#then iterate the list_credits #then iterate the list_credits
list_credits = { list_credits = {
'Coded By:': [ _('Coded By:'): [
'/dev/non', '/dev/non',
"[[Untitled]] Anon", "[[Untitled]] Anon",
'Schizodev Anon', 'Schizodev Anon',
@ -15,7 +15,7 @@ init python:
'Inhumanon', 'Inhumanon',
'Spigot the Bear Anon' 'Spigot the Bear Anon'
], ],
'Written by:': [ _('Written by:'): [
'AVGN Anon', 'AVGN Anon',
'Coomer Anon', 'Coomer Anon',
'/trash/ Anon', '/trash/ Anon',
@ -26,17 +26,17 @@ init python:
'Punished Anon', 'Punished Anon',
'Finn Anon' 'Finn Anon'
], ],
'Story by:': [ _('Story by:'): [
'AVGN Anon', 'AVGN Anon',
'Coomer Anon', 'Coomer Anon',
'Alex Anon', 'Alex Anon',
'Singularity Anon', 'Singularity Anon',
'Tombstone Anon' 'Tombstone Anon'
], ],
'Production Designer': [ _('Production Designer'): [
'Alex Anon' 'Alex Anon'
], ],
'Artwork by:': [ _('Artwork by:'): [
'Alex Anon', 'Alex Anon',
'Mormon Anon', 'Mormon Anon',
'Ccp Anon', 'Ccp Anon',
@ -50,7 +50,7 @@ init python:
'Multi Anon', 'Multi Anon',
'Ionanon' 'Ionanon'
], ],
'Additional Artwork by:': [ _('Additional Artwork by:'): [
'Backup Anon 1', 'Backup Anon 1',
'Backup Anon 2', 'Backup Anon 2',
'Backup Anon 3', 'Backup Anon 3',
@ -58,28 +58,28 @@ init python:
'Backup Anon 5', 'Backup Anon 5',
'Backup Anon 6', 'Backup Anon 6',
], ],
"\"Love theme\" by:": [ _("\"Love theme\" by:"): [
'Only Person In The Team With A\nPortfolio/Experience Anon', 'Only Person In The Team With A\nPortfolio/Experience Anon',
], ],
'Music By': [ _('Music By'): [
'Shampoo Anon', 'Shampoo Anon',
'Melo Anon' 'Melo Anon'
], ],
'Egg Hunt Contest\nWinner:': [ _('Egg Hunt Contest\nWinner:'): [
'Olivia Anon' 'Olivia Anon'
], ],
'Character Design\nContest Winner:': [ _('Character Design\nContest Winner:'): [
'Mono Anon', 'Mono Anon',
], ],
'Translators (Spanish):': [ _('Translators (Spanish):'): [
'Queso2033 Anon', 'Queso2033 Anon',
'TheShadowTrAnon' 'TheShadowTrAnon'
], ],
'Proofreader (Spanish):': [ _('Proofreader (Spanish):'): [
'ElBan Anón', 'ElBan Anón',
'GMAnon' 'GMAnon'
], ],
'Asset help (Spanish):': [ _('Asset help (Spanish):'): [
'Arkiangelo Anon' 'Arkiangelo Anon'
] ]
} }
@ -95,11 +95,11 @@ init python:
SIZE_ENDER = 52*3+10 SIZE_ENDER = 52*3+10
#there is line_spacing but don't usei t #there is line_spacing but don't usei t
textlist.append(Text("Snoot Game", size=SIZE_SNOT_GAMES, **alignargs)) textlist.append(Text(_("Snoot Game"), size=SIZE_SNOT_GAMES, **alignargs)
textlist.append(Null(1, 16*1)) textlist.append(Null(1, 16*1))
textlist.append(Text("By CaveManon", size=SIZE_TITLE, **alignargs)) textlist.append(Text(_("By CaveManon"), size=SIZE_TITLE, **alignargs)
textlist.append(Null(1, 16*12)) textlist.append(Null(1, 16*12))
textlist.append(Text("developed in Ren'py", size=SIZE_ENTRY, **alignargs)) textlist.append(Text(_("developed in Ren'py"), size=SIZE_ENTRY, **alignargs))
textlist.append(Null(1, 16*12)) textlist.append(Null(1, 16*12))
for key, arr in list_credits.items(): for key, arr in list_credits.items():
@ -111,9 +111,9 @@ init python:
textlist.append(Text(concatstr, size=SIZE_ENTRY, **alignargs)) textlist.append(Text(concatstr, size=SIZE_ENTRY, **alignargs))
textlist.append(Null(1, 16*2)) textlist.append(Null(1, 16*2))
textlist.append(Text("T H E E N D", size=SIZE_ENDER, **alignargs)) textlist.append(Text(_("T H E E N D"), size=SIZE_ENDER, **alignargs))
textlist.append(Null(1, 16*18)) textlist.append(Null(1, 16*18))
textlist.append(Text("Snoot game started development\n on June 19 2020", size=SIZE_ENTRY, **alignargs)) textlist.append(Text(_("Snoot game started development\n on June 19 2020"), size=SIZE_ENTRY, **alignargs))
credits_hbox = Fixed(VBox(*textlist, xalign=0.5), xalign=0.5) credits_hbox = Fixed(VBox(*textlist, xalign=0.5), xalign=0.5)
renpy.image('credits_hbox', credits_hbox) renpy.image('credits_hbox', credits_hbox)