1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-15 21:19:55 +00:00

54 lines
740 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Brilliant Stars"
const card: Card = {
set: Set,
name: {
en: "Sneasel",
fr: "Farfuret",
es: "Sneasel",
it: "Sneasel",
pt: "Sneasel",
de: "Sniebel"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Darkness"],
stage: "Basic",
attacks: [{
cost: ["Darkness"],
name: {
en: "Scratch",
fr: "Griffe",
es: "Arañazo",
it: "Graffio",
pt: "Arranhão",
de: "Kratzer"
},
damage: 10
}, {
cost: ["Colorless", "Colorless"],
name: {
en: "Slash",
fr: "Tranche",
es: "Cuchillada",
it: "Lacerazione",
pt: "Talho",
de: "Schlitzer"
},
damage: 20
}],
retreat: 1,
regulationMark: "F"
}
export default card