-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
454 additions
and
12 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
genius_invocation/card/action/equipment/talent/talents/HearMe.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from genius_invocation.card.action.equipment.talent.import_head import * | ||
from genius_invocation.card.character.characters.Furina import * | ||
|
||
class HearMe(TalentCard): | ||
id: int = 212111 | ||
name: str = "Hear Me — Let Us Raise the Chalice of Love!" | ||
name_ch = "「诸君听我颂,共举爱之杯!」" | ||
is_action = True | ||
cost = [{'cost_num': 3, 'cost_type': CostType.HYDRO.value}] | ||
cost_power = 0 | ||
character = Furina | ||
def __init__(self) -> None: | ||
super().__init__() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.