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

82 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Neo Revelation'
const card: Card = {
name: {
en: "Swinub",
fr: "Marcacrin",
de: "Quiekel"
},
illustrator: "Miki Tanaka",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
220,
],
hp: 40,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Tackle",
fr: "Charge",
de: "Tackle"
},
damage: 10,
},
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Take Down",
fr: "Bélier",
de: "Take Down"
},
effect: {
en: "Swinub does 10 damage to itself.",
fr: "Marcacrin s'inflige 30 dégâts.",
de: "Swinub does 10 damage to itself."
},
damage: 30,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
resistances: [
{
type: "Lightning",
value: "-30"
},
],
description: {
fr: "S'il sent quelque chose d'alléchant, il se précipite vers la source de l'arôme."
}
}
export default card