1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 15:42:11 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

42 lines
624 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"
}
export default card