1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

42 lines
599 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldea Evolved"
const card: Card = {
dexId: [215],
set: Set,
name: {
fr: "Farfuret",
en: "Sneasel",
es: "Sneasel",
it: "Sneasel",
pt: "Sneasel",
de: "Sniebel"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Darkness"],
stage: "Basic",
attacks: [{
cost: ["Darkness"],
name: {
fr: "Creusogriffes",
en: "Dig Claws",
es: "Hundir Garras",
it: "Scavazanne",
pt: "Fincar Garras",
de: "Schaufelkrallen"
},
damage: 20
}],
retreat: 1,
regulationMark: "G"
}
export default card