1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 18:09:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,72 @@
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: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card