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

73 lines
938 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Burning Shadows'
const card: Card = {
name: {
en: "Sneasel",
fr: "Farfuret",
},
illustrator: "Hasuno",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
215,
],
hp: 70,
types: [
"Darkness",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Hone Claws",
fr: "Aiguisage",
},
effect: {
en: "During your next turn, this Pokémon's Slash attack's base damage is 80.",
fr: "Pendant votre prochain tour, les dégâts de base de lattaque Tranche de ce Pokémon sont de 80.",
},
},
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Slash",
fr: "Tranche",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card