Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Enable automatic Christmas theme in December #1538

Merged
merged 6 commits into from
Nov 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions game/character.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,51 +19,51 @@ def __init__(self, pk, name, en_face, top_down, width, height):
CHARACTER_DATA = {
"Van": Character(
pk=1,
name=u"Van",
name="Van",
# FUTURE: add external branding option
en_face=u"characters/front_view/Van.svg",
top_down=u"characters/top_view/Van.svg",
en_face="characters/front_view/Van.svg",
top_down="characters/top_view/Van.svg",
height="20",
width="40",
),
"Dee": Character(
pk=2,
name=u"Dee",
name="Dee",
# FUTURE: add external branding option
en_face=u"characters/front_view/Dee.svg",
top_down=u"characters/top_view/Dee.svg",
en_face="characters/front_view/Dee.svg",
top_down="characters/top_view/Dee.svg",
height="28",
width="52",
),
"Nigel": Character(
pk=3,
name=u"Nigel",
en_face=u"characters/front_view/Nigel.svg",
top_down=u"characters/top_view/Nigel.svg",
name="Nigel",
en_face="characters/front_view/Nigel.svg",
top_down="characters/top_view/Nigel.svg",
height="32",
width="56",
),
"Kirsty": Character(
pk=4,
name=u"Kirsty",
en_face=u"characters/front_view/Kirsty.svg",
top_down=u"characters/top_view/Kirsty.svg",
name="Kirsty",
en_face="characters/front_view/Kirsty.svg",
top_down="characters/top_view/Kirsty.svg",
height="32",
width="60",
),
"Wes": Character(
pk=5,
name=u"Wes",
en_face=u"characters/front_view/Wes.svg",
top_down=u"characters/top_view/Wes.svg",
name="Wes",
en_face="characters/front_view/Wes.svg",
top_down="characters/top_view/Wes.svg",
height="20",
width="40",
),
"Phil": Character(
pk=6,
name=u"Phil",
en_face=u"characters/front_view/Phil.svg",
top_down=u"characters/top_view/Phil.svg",
name="Phil",
en_face="characters/front_view/Phil.svg",
top_down="characters/top_view/Phil.svg",
height="40",
width="40",
),
Expand Down
Loading