forked from gridhead/gi-loadouts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new character information from v5.2 Phase 1
-Chasca -Ororon Signed-off-by: Shounak Dey <[email protected]>
- Loading branch information
1 parent
baa4990
commit 7cfc7d9
Showing
27 changed files
with
83,433 additions
and
14,019 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
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
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
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
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,22 @@ | ||
from gi_loadouts.type.char import BaseStat, Char | ||
from gi_loadouts.type.rare import Rare | ||
from gi_loadouts.type.stat import STAT | ||
from gi_loadouts.type.vson import Vision | ||
from gi_loadouts.type.weap import WeaponType | ||
|
||
|
||
class Chasca(Char): | ||
__statdata__: dict = {0: 0.0, 1: 0.0, 2: 4.8, 3: 9.6, 4: 9.6, 5: 14.4, 6: 19.2} | ||
__statname__: STAT = STAT.critical_rate_perc | ||
name: str = "Chasca" | ||
rare: Rare = Rare.Star_5 | ||
""" | ||
TODO: Change the default values after the values are updated in Genshin Impact Wiki | ||
""" | ||
base: BaseStat = BaseStat(attack=0.0, defense=0.0, health_points=0.0) | ||
ascn: BaseStat = BaseStat(attack=0.0, defense=0.0, health_points=0.0) | ||
weapon: WeaponType = WeaponType.bow | ||
vision: Vision = Vision.anemo | ||
cons_name: str = "Vultur Gryphus" | ||
afln: str = "Flower-Feather Clan" | ||
head: str = "Skyborne Arbiter" |
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,22 @@ | ||
from gi_loadouts.type.char import BaseStat, Char | ||
from gi_loadouts.type.rare import Rare | ||
from gi_loadouts.type.stat import STAT | ||
from gi_loadouts.type.vson import Vision | ||
from gi_loadouts.type.weap import WeaponType | ||
|
||
|
||
class Ororon(Char): | ||
__statdata__: dict = {0: 0.0, 1: 0.0, 2: 6.0, 3: 12.0, 4: 12.0, 5: 18.0, 6: 24.0} | ||
__statname__: STAT = STAT.attack_perc | ||
name: str = "Ororon" | ||
rare: Rare = Rare.Star_4 | ||
""" | ||
TODO: Change the default values after the values are updated in Genshin Impact Wiki | ||
""" | ||
base: BaseStat = BaseStat(attack=0.0, defense=0.0, health_points=0.0) | ||
ascn: BaseStat = BaseStat(attack=0.0, defense=0.0, health_points=0.0) | ||
weapon: WeaponType = WeaponType.bow | ||
vision: Vision = Vision.electro | ||
cons_name: str = "Vampyrum Spectrum" | ||
afln: str = "Masters of the Night-Wind" | ||
head: str = "Shadow of the Night-Wind" |
Oops, something went wrong.