mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-28 06:49:18 +00:00
feat: Add sv10 - Destined Rivals (#751)
This commit is contained in:
57
data/Scarlet & Violet/Destined Rivals/059.ts
Normal file
57
data/Scarlet & Violet/Destined Rivals/059.ts
Normal file
@ -0,0 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Destined Rivals"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Snover",
|
||||
fr: "Blizzi",
|
||||
de: "Shnebedeck",
|
||||
it: "Snover",
|
||||
es: "Snover",
|
||||
pt: "Snover",
|
||||
'es-mx': "Snover"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Water"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Light Punch",
|
||||
fr: "Poing Léger",
|
||||
de: "Leichter Hieb",
|
||||
it: "Pugnetto",
|
||||
es: "Puño Ligero",
|
||||
pt: "Soco de Luz",
|
||||
'es-mx': "Puño Ligero"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}, {
|
||||
cost: ["Water", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Icicle",
|
||||
fr: "Concrétion Glacée",
|
||||
de: "Eiszapfen",
|
||||
it: "Stalattite",
|
||||
es: "Témpano",
|
||||
pt: "Pingente de Gelo",
|
||||
'es-mx': "Témpano de Hielo"
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user