1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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

61 lines
912 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Lost Origin"
const card: Card = {
dexId: [459],
set: Set,
name: {
en: "Snover",
fr: "Blizzi",
es: "Snover",
it: "Snover",
pt: "Snover",
de: "Shnebedeck"
},
rarity: "Common",
category: "Pokemon",
hp: 80,
types: ["Water"],
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
en: "Corkscrew Punch",
fr: "Poing Tire-Bouchon",
es: "Puño Tirabuzón",
it: "Pugno Rotante",
pt: "Soco Saca-rolha",
de: "Korkenzieherhieb"
},
damage: 10
}, {
cost: ["Water", "Water", "Colorless"],
name: {
en: "Icicle Missile",
fr: "Missile Stalactite",
es: "Misil Carámbano",
it: "Missilghiaccio",
pt: "Míssil Gélido",
de: "Eiszapfenrakete"
},
damage: 60
}],
retreat: 3,
regulationMark: "F",
variants: {
"normal": true,
"reverse": true,
"holo": false
}
}
export default card