mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
71 lines
1.3 KiB
TypeScript
71 lines
1.3 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Astral Radiance"
|
|
|
|
const card: Card = {
|
|
dexId: [220],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Swinub",
|
|
fr: "Marcacrin",
|
|
es: "Swinub",
|
|
it: "Swinub",
|
|
pt: "Swinub",
|
|
de: "Quiekel"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Water"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Stampede",
|
|
fr: "Ruée",
|
|
es: "Estampida",
|
|
it: "Fuggi Fuggi",
|
|
pt: "Estouro",
|
|
de: "Zertrampeln"
|
|
},
|
|
|
|
damage: 20
|
|
}, {
|
|
cost: ["Water", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Icy Wind",
|
|
fr: "Vent Glace",
|
|
es: "Viento Hielo",
|
|
it: "Ventogelato",
|
|
pt: "Vento Congelante",
|
|
de: "Eissturm"
|
|
},
|
|
|
|
effect: {
|
|
en: "Your opponent's Active Pokémon is now Asleep.",
|
|
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
|
|
es: "El Pokémon Activo de tu rival pasa a estar Dormido.",
|
|
it: "Il Pokémon attivo del tuo avversario viene addormentato.",
|
|
pt: "O Pokémon Ativo do seu oponente agora está Adormecido.",
|
|
de: "Das Aktive Pokémon deines Gegners schläft jetzt."
|
|
},
|
|
|
|
damage: 40
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "F",
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |