mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
82 lines
1.0 KiB
TypeScript
82 lines
1.0 KiB
TypeScript
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
|