Compare commits

..

No commits in common. "5967c358ca89f9e542f3796052ee724cc1c33eed" and "3745fb46e91b8c23c84694d8163d7c2bf745d7ef" have entirely different histories.

14 changed files with 330 additions and 474 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -98,16 +98,8 @@ init python:
if redraw: if redraw:
show() show()
# Figure out nickname
if name_tonks_genie != "Tonks":
name_prefix = "Tonks {size=-20}\""
name_suffix = "\"{/size}"
else:
name_prefix = ""
name_suffix = ""
if what: if what:
character.tonks_say(what, who_prefix=name_prefix, who_suffix=name_suffix, **kwargs) character.tonks_say(what, **kwargs)
if temp_face: if temp_face:
tonks.set_face(**last_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" define gui.hover_muted_color = "#ee770044" # "#7a3d00"
# Fonts # Fonts
define gui.text_font = "gui/creamy_pumpkin_pie/fonts/creativeblock-bb.regular.ttf" define gui.text_font = "gui/CreativeBlockRegular.ttf"
define gui.bold_font = "gui/creamy_pumpkin_pie/fonts/creativeblock-bb.bold.ttf" define gui.bold_font = "gui/CreativeBlockBold.ttf"
define gui.glyph_font = "gui/creamy_pumpkin_pie/fonts/MaterialDesignIconsDesktop.ttf" define gui.glyph_font = "DejaVuSans.ttf"
# Main and game menus # Main and game menus
define gui.main_menu_background = "main_menu" define gui.main_menu_background = "main_menu"
@ -139,7 +139,3 @@ define gui.slider_tile = False
define gui.slider_borders = Borders(10, 10, 10, 10) define gui.slider_borders = Borders(10, 10, 10, 10)
define gui.unscrollable = "hide" 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