1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
TCGdex [Bot] e7ceb7ac59
editor: correct variants for Paradox Rift (#513)
Co-authored-by: Avior <git@avior.me>
2024-07-03 22:09:39 +02:00

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