Skip to content

Commit

Permalink
chore: remove default value on cards
Browse files Browse the repository at this point in the history
  • Loading branch information
zyr17 committed Sep 2, 2023
1 parent d5af7c5 commit 91623de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions server/card/support/companions.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class CompanionBase(SupportBase):


class Timmie(CompanionBase):
name: Literal['Timmie'] = 'Timmie'
name: Literal['Timmie']
desc: str = (
'Triggers automatically once per Round: This card gains 1 Pigeon. '
'When this card gains 3 Pigeons, discard this card, then draw 1 card '
Expand Down Expand Up @@ -93,7 +93,7 @@ def event_handler_CHANGE_OBJECT_USAGE(


class Rana(CompanionBase):
name: Literal['Rana'] = 'Rana'
name: Literal['Rana']
desc: str = (
'After your character uses an Elemental Skill: '
'Create 1 Elemental Die of the same Type as your next off-field '
Expand Down
2 changes: 1 addition & 1 deletion server/charactor/hydro/mona.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def value_modifier_COMBAT_ACTION(


class ProphecyOfSubmersion(SkillTalent):
name: Literal['Prophecy of Submersion'] = 'Prophecy of Submersion'
name: Literal['Prophecy of Submersion']
desc: str = (
'Combat Action: When your active character is Mona, equip this card. '
'When Mona equips this card, immediately use Stellaris Phantasm once. '
Expand Down

0 comments on commit 91623de

Please sign in to comment.