1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

77 lines
1.2 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Stormfront'
const card: Card = {
name: {
en: "Swinub",
fr: "Swinub",
},
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",
},
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.",
},
},
{
cost: [
"Fighting",
],
name: {
en: "Take Down",
fr: "Bélier",
},
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.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Grass",
value: "+10"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 1,
}
export default card