1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

90 lines
1.6 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Stormfront'
const card: Card = {
name: {
en: "Swinub",
fr: "Marcacrin",
de: "Quiekel"
},
illustrator: "Yukiko Baba",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
220,
],
hp: 50,
types: [
"Fighting",
],
evolveFrom: {
fr: "Marcacrin",
},
stage: "Basic",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Freezing Breath",
fr: "Souffle glacial",
de: "Eisatem"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed. If tails, the Defending Pokémon is now Asleep.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé. Si c'est pile, le Pokémon Défenseur est maintenant Endormi.",
de: "Wirf 1 Münze. Bei \"Kopf\" ist das Verteidigende Pokémon jetzt gelähmt. Bei \"Zahl\" schläft das Verteidigende Pokémon jetzt."
},
},
{
cost: [
"Fighting",
],
name: {
en: "Take Down",
fr: "Bélier",
de: "Bodycheck"
},
effect: {
en: "Flip a coin. If tails, Swinub does 10 damage to itself.",
fr: "Lancez une pièce. Si c'est pile, Marcacrin s'inflige 10 dégâts.",
de: "Wirf 1 Münze. Bei \"Zahl\" fügt sich Quiekel selbst 10 Schadenspunkte zu."
},
damage: 20,
},
],
weaknesses: [
{
type: "Grass",
value: "+10"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 1,
description: {
fr: "Il adore les champignons qui poussent sous l'herbe morte. Il trouve aussi des sources chaudes."
}
}
export default card