Add types to move translations
This commit is contained in:
parent
b116828b07
commit
0758c44670
|
@ -1,4 +1,13 @@
|
|||
export const move = {
|
||||
interface MoveTranslationEntry {
|
||||
name: string,
|
||||
effect: string
|
||||
}
|
||||
|
||||
interface MoveTranslations {
|
||||
[key: string]: MoveTranslationEntry
|
||||
}
|
||||
|
||||
export const move: MoveTranslations = {
|
||||
"pound": {
|
||||
name: "Pound",
|
||||
effect: "The target is physically pounded with a long tail, a foreleg, or the like."
|
||||
|
|
Loading…
Reference in New Issue