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

74 lines
1.3 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 Genesis'
const card: Card = {
name: {
en: "Sneasel",
fr: "Farfuret"
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
215,
],
hp: 60,
types: [
"Darkness",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Fury Swipes",
fr: "Combo-griffe"
},
effect: {
en: "Flip 3 coins. This attack does 10 damage times the number of heads.",
fr: "Lancez 3 pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de faces."
},
damage: "10×",
},
{
cost: [
"Darkness",
"Darkness",
],
name: {
en: "Beat Up",
fr: "Baston"
},
effect: {
en: "Flip a coin for each of your Pokémon in play (including this one). This attack does 20 damage times the number of heads.",
fr: "Lancez une pièce pour chacun de vos Pokémon en jeu (y compris celui-là). Cette attaque inflige 20 dégâts multipliés par le nombre de faces."
},
damage: "20×",
},
],
resistances: [
{
type: "Psychic",
value: "-30"
},
],
description: {
fr: "Ses pattes cachent des griffes aiguisées. S'il est attaqué, il sort ses griffes et transperce son ennemi."
}
}
export default card