This commit is contained in:
LoafyLemon 2024-05-14 21:54:03 +01:00
parent 3745fb46e9
commit d9d9a2bacb
14 changed files with 469 additions and 331 deletions

Binary file not shown.

BIN
game/gui/creamy_pumpkin_pie/fonts/creativeblock-bb.bold.ttf (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
game/gui/creamy_pumpkin_pie/namebox.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
game/gui/creamy_pumpkin_pie/textbox.png (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -83,8 +83,16 @@ init python:
if redraw:
show()
# Figure out nickname
if name_astoria_genie != "Astoria":
name_prefix = "Astoria {size=-20}\""
name_suffix = "\"{/size}"
else:
name_prefix = ""
name_suffix = ""
if what:
character.astoria_say(what, **kwargs)
character.astoria_say(what, who_prefix=name_prefix, who_suffix=name_suffix, **kwargs)
if temp_face:
astoria.set_face(**last_face)

View File

@ -81,8 +81,16 @@ init python in character:
if redraw:
show()
# Figure out nickname
if name_cho_genie != "Cho":
name_prefix = "Cho {size=-20}\""
name_suffix = "\"{/size}"
else:
name_prefix = ""
name_suffix = ""
if what:
cho_say(what, **kwargs)
cho_say(what, who_prefix=name_prefix, who_suffix=name_suffix, **kwargs)
if temp_face:
renpy.store.cho.set_face(**last_face)

View File

@ -76,8 +76,16 @@ init python:
if redraw:
show()
# Figure out nickname
if name_hermione_genie != "Hermione":
name_prefix = "Hermione {size=-20}\""
name_suffix = "\"{/size}"
else:
name_prefix = ""
name_suffix = ""
if what:
character.hermione_say(what, **kwargs)
character.hermione_say(what, who_prefix=name_prefix, who_suffix=name_suffix, **kwargs)
if temp_face:
hermione.set_face(**last_face)

View File

@ -79,8 +79,16 @@ init python:
if redraw:
show()
# Figure out nickname
if name_luna_genie != "Luna":
name_prefix = "Luna {size=-20}\""
name_suffix = "\"{/size}"
else:
name_prefix = ""
name_suffix = ""
if what:
character.luna_say(what, **kwargs)
character.luna_say(what, who_prefix=name_prefix, who_suffix=name_suffix, **kwargs)
if temp_face:
luna.set_face(**last_face)

View File

@ -78,8 +78,16 @@ init python:
if redraw:
show()
# Figure out nickname
if name_susan_genie != "Susan":
name_prefix = "Susan {size=-20}\""
name_suffix = "\"{/size}"
else:
name_prefix = ""
name_suffix = ""
if what:
character.susan_say(what, **kwargs)
character.susan_say(what, who_prefix=name_prefix, who_suffix=name_suffix, **kwargs)
if temp_face:
susan.set_face(**last_face)

View File

@ -98,8 +98,16 @@ init python:
if redraw:
show()
# Figure out nickname
if name_tonks_genie != "Tonks":
name_prefix = "Tonks {size=-20}\""
name_suffix = "\"{/size}"
else:
name_prefix = ""
name_suffix = ""
if what:
character.tonks_say(what, **kwargs)
character.tonks_say(what, who_prefix=name_prefix, who_suffix=name_suffix, **kwargs)
if temp_face:
tonks.set_face(**last_face)

View File

@ -97,9 +97,9 @@ define gui.muted_color = "#88888844" # "#512800"
define gui.hover_muted_color = "#ee770044" # "#7a3d00"
# Fonts
define gui.text_font = "gui/CreativeBlockRegular.ttf"
define gui.bold_font = "gui/CreativeBlockBold.ttf"
define gui.glyph_font = "DejaVuSans.ttf"
define gui.text_font = "gui/creamy_pumpkin_pie/fonts/creativeblock-bb.regular.ttf"
define gui.bold_font = "gui/creamy_pumpkin_pie/fonts/creativeblock-bb.bold.ttf"
define gui.glyph_font = "gui/creamy_pumpkin_pie/fonts/MaterialDesignIconsDesktop.ttf"
# Main and game menus
define gui.main_menu_background = "main_menu"
@ -139,3 +139,7 @@ define gui.slider_tile = False
define gui.slider_borders = Borders(10, 10, 10, 10)
define gui.unscrollable = "hide"
style default:
font gui.text_font
color "#ffffff"

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff