-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update CI scripts for beta (#707)
* refactor: clean up old types * chore: update ci scripts
- Loading branch information
Showing
8 changed files
with
14 additions
and
90 deletions.
There are no files selected for viewing
File renamed without changes.
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 |
---|---|---|
@@ -1,70 +1,9 @@ | ||
export type DataMineId = string // "60012" | ||
export type Unknown = unknown | ||
export type LANGUAGE = | ||
'zh' | | ||
'de' | | ||
'en' | | ||
'es' | | ||
'fr' | | ||
'id' | | ||
'jp' | | ||
'kr' | | ||
'pt' | | ||
'ru' | | ||
'th' | | ||
'vi' | ||
export type GUID = string // TODO: match to GUID format | ||
|
||
export type Rarity = 2 | 3 | 4 | 5 | ||
|
||
export type AssetRelativeUrl = string | ||
|
||
export type PathMap = { | ||
Warrior: 'Destruction' | ||
Warlock: 'Nihility' | ||
Knight: 'Preservation' | ||
Priest: 'Abundance' | ||
Rogue: 'Hunt' | ||
Shaman: 'Harmony' | ||
Mage: 'Erudition' | ||
} | ||
export type InternalPath = keyof PathMap | ||
export type ExternalPath = PathMap[InternalPath] | ||
|
||
export type Element = | ||
'Fire' | | ||
'Ice' | | ||
'Imaginary' | | ||
'Physical' | | ||
'Quantum' | | ||
'Thunder' | | ||
'Wind' | ||
|
||
export type Promotion = { | ||
'HP'?: number | ||
'ATK'?: number | ||
'CRIT Rate'?: number | ||
'CRIT DMG'?: number | ||
'DEF'?: number | ||
'SPD'?: number | ||
} | ||
|
||
export type Promotions = { | ||
[level: number]: Promotion | ||
} | ||
|
||
export type NumberToNumberMap = { | ||
[key: number]: number | ||
} | ||
|
||
export type StringToNumberMap = { | ||
[key: string]: number | ||
} | ||
|
||
export type StringToStringMap = { | ||
[key: string]: string | ||
} | ||
|
||
export type StringToBooleanMap = { | ||
[key: string]: string | ||
} |
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 was deleted.
Oops, something went wrong.