-
Notifications
You must be signed in to change notification settings - Fork 3
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
2 changed files
with
128 additions
and
4 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,12 +1,27 @@ | ||
from typing import Literal | ||
from typing import Any, List, Literal | ||
|
||
from ....action import Actions | ||
|
||
from ....struct import Cost | ||
from .element_artifacts import SmallElementalArtifact as SEA_4_0 | ||
from .others import GamblersEarrings as GE_3_8 | ||
|
||
|
||
class SmallElementalArtifact(SEA_4_0): | ||
version: Literal['3.3'] | ||
cost: Cost = Cost(same_dice_number = 2) | ||
|
||
|
||
OldVersionArtifacts = SmallElementalArtifact | SmallElementalArtifact | ||
class GamblersEarrings(GE_3_8): | ||
version: Literal['3.3'] | ||
usage: int = 999 | ||
|
||
def equip(self, match: Any) -> List[Actions]: | ||
""" | ||
Equip this artifact. Reset usage. | ||
""" | ||
self.usage = 999 | ||
return [] | ||
|
||
|
||
OldVersionArtifacts = SmallElementalArtifact | GamblersEarrings |
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