1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00
2021-11-12 17:24:19 +01:00

78 lines
940 B
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"
},
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"
},
damage: 10,
},
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Take Down",
fr: "Bélier"
},
effect: {
en: "Swinub does 10 damage to itself.",
fr: "Marcacrin s'inflige 30 dégâts."
},
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