Skip to content

Commit

Permalink
feat: Enable automatic Christmas theme in December (#1538)
Browse files Browse the repository at this point in the history
* feat: Enable automatic Christmas theme in December

* Add test

* Merge branch 'master' into automatic_rudolph

* Update CFC xmas URL for grass theme

* Merge branch 'master' into automatic_rudolph

* Merge branch 'master' into automatic_rudolph
  • Loading branch information
faucomte97 authored Nov 30, 2023
1 parent e412665 commit 8cb7edd
Show file tree
Hide file tree
Showing 28 changed files with 38,134 additions and 559 deletions.
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

0 comments on commit 8cb7edd

Please sign in to comment.