mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-01 20:09:55 +00:00
59 lines
1.6 KiB
TypeScript
59 lines
1.6 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Triumphant Light"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Snover",
|
|
fr: "Blizzi",
|
|
es: "Snover",
|
|
it: "Snover",
|
|
de: "Shnebedeck",
|
|
'pt-br': "Snover",
|
|
ko: "눈쓰개"
|
|
},
|
|
|
|
illustrator: "otumami",
|
|
rarity: "One Diamond",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Water"],
|
|
|
|
description: {
|
|
en: "During cold seasons, it migrates to the mountain's lower reaches. It returns to the snow-covered summit in the spring.",
|
|
fr: "Il s'aventure jusqu'au pied des montagnes en hiver,\nmais se réfugie sur les pics neigeux au printemps.",
|
|
es: "En las estaciones frías baja al pie de la montaña,\npero regresa a las cimas nevadas en primavera.",
|
|
it: "In inverno scende fino ai piedi delle\nmontagne, ma in primavera se ne torna\nsulle cime montuose dove c'è ancora neve.",
|
|
de: "In der kalten Jahreszeit steigt es bis zum Fuß\nder Berge hinab. Im Frühjahr kehrt es auf die\nGipfel zurück, wo noch Schnee liegt.",
|
|
'pt-br': "Durante as temporadas frias, migra para as partes baixas\nda montanha. Na primavera, retorna para o cume nevado.",
|
|
ko: "추운 계절에는 산기슭까지\n내려오지만 봄이 되면\n눈이 남아 있는 산 정상으로 돌아간다."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Corkscrew Punch",
|
|
fr: "Poing Tire-Bouchon",
|
|
es: "Puño Tirabuzón",
|
|
it: "Pugno Rotante",
|
|
de: "Korkenzieherhieb",
|
|
'pt-br': "Soco Saca-rolha",
|
|
ko: "쥐어박기"
|
|
},
|
|
|
|
damage: 30,
|
|
cost: ["Water", "Colorless"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Metal",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 2
|
|
}
|
|
|
|
export default card
|