mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 02:42:09 +00:00
* feat: Add static data for Journey Together Signed-off-by: Avior <git@avior.me> * feat: finish naming Signed-off-by: Avior <git@avior.me> * should be done Signed-off-by: Avior <git@avior.me> * Update index.ts --------- Signed-off-by: Avior <git@avior.me>
43 lines
607 B
TypeScript
43 lines
607 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Journey Together"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Wailmer",
|
|
fr: "Wailmer",
|
|
es: "Wailmer",
|
|
de: "Wailmer",
|
|
it: "Wailmer",
|
|
pt: "Wailmer",
|
|
'es-mx': "Wailmer"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 130,
|
|
types: ["Water"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Surf",
|
|
fr: "Surf",
|
|
es: "Surf",
|
|
de: "Surfer",
|
|
it: "Surf",
|
|
pt: "Surfar",
|
|
'es-mx': "Surf"
|
|
},
|
|
|
|
damage: 60
|
|
}],
|
|
|
|
retreat: 3,
|
|
regulationMark: "I"
|
|
}
|
|
|
|
export default card |