mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
85 lines
1.1 KiB
TypeScript
85 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
dexId: [459],
|
||
name: {
|
||
en: "Snover",
|
||
fr: "Blizzi",
|
||
es: "Snover",
|
||
it: "Snover",
|
||
pt: "Snover",
|
||
de: "Shnebedeck"
|
||
},
|
||
|
||
illustrator: "Shibuzoh.",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Beat",
|
||
fr: "Bataille",
|
||
es: "Toque",
|
||
it: "Battuta",
|
||
pt: "Pulso",
|
||
de: "Verprügler"
|
||
},
|
||
|
||
damage: 20,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Razor Leaf",
|
||
fr: "Tranch'Herbe",
|
||
es: "Hoja Afilada",
|
||
it: "Foglielama",
|
||
pt: "Folha Navalha",
|
||
de: "Rasierblatt"
|
||
},
|
||
|
||
damage: 50,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 3,
|
||
hp: 90,
|
||
types: ["Grass"],
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
description: {
|
||
en: "It lives on snowy mountains. It sinks its legs into the snow to absorb water and keep its own temperature down."
|
||
}
|
||
}
|
||
|
||
export default card
|