mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
47 lines
676 B
TypeScript
47 lines
676 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Paradox Rift"
|
|
|
|
const card: Card = {
|
|
dexId: [583],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Vanillish",
|
|
fr: "Sorboul",
|
|
es: "Vanillish",
|
|
it: "Vanillish",
|
|
pt: "Vanillish",
|
|
de: "Gelatroppo"
|
|
},
|
|
|
|
rarity: "Illustration rare",
|
|
category: "Pokemon",
|
|
hp: 90,
|
|
types: ["Water"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Water", "Water"],
|
|
|
|
name: {
|
|
en: "Frost Smash",
|
|
fr: "Impact Glacial",
|
|
es: "Golpe Gélido",
|
|
it: "Gelocolpo",
|
|
pt: "Pancada Congelada",
|
|
de: "Frostschlag"
|
|
},
|
|
|
|
damage: 60
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
normal: false,
|
|
reverse: false
|
|
}
|
|
}
|
|
|
|
export default card |