mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
79 lines
1.5 KiB
TypeScript
79 lines
1.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Neo Genesis'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Sneasel",
|
|
fr: "Farfuret",
|
|
de: "Sniebel"
|
|
},
|
|
|
|
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",
|
|
de: "Fury Swipes"
|
|
},
|
|
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.",
|
|
de: "Flip 3 coins. This attack does 10 damage times the number of heads."
|
|
},
|
|
damage: "10x",
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Darkness",
|
|
"Darkness",
|
|
],
|
|
name: {
|
|
en: "Beat Up",
|
|
fr: "Baston",
|
|
de: "Beat Up"
|
|
},
|
|
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.",
|
|
de: "Flip a coin for each of your Pokémon in play (including this one). This attack does 20 damage times the number of heads."
|
|
},
|
|
damage: "20x",
|
|
|
|
},
|
|
],
|
|
|
|
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
|