1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00

41 lines
598 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paradox Rift"
const card: Card = {
set: Set,
name: {
en: "Vanillish",
fr: "Sorboul",
es: "Vanillish",
it: "Vanillish",
pt: "Vanillish",
de: "Gelatroppo"
},
rarity: "Common",
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"
}
export default card