-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'radical-red' of https://github.com/andrewbenington/Open…
…Home into radical-red
- Loading branch information
Showing
8 changed files
with
49 additions
and
39 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
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,23 +1,18 @@ | ||
import { AllPKMFields, Stats } from 'pokemon-files' | ||
import { PK3RR } from "./SAVTypes/radicalred/PK3RR" | ||
|
||
export interface OfficialPKMInterface extends PKMInterface { | ||
pluginName?: undefined | ||
pluginIdentifier?: undefined | ||
pluginOrigin?: undefined | ||
} | ||
|
||
export interface PluginPKMInterface extends PKMInterface { | ||
pluginName: string | ||
pluginIdentifier: string | ||
pluginOrigin: string | ||
} | ||
|
||
export type PKMInterface = AllPKMFields & { | ||
getStats(): Stats | ||
pluginName?: string | ||
pluginIdentifier?: string | ||
pluginOrigin?: string | ||
isLocked?: boolean | ||
} | ||
|
||
export type PluginPKM = | ||
| PK3RR | ||
|
||
|
||
export type PluginPKMType = | ||
| typeof PK3RR |
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