mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-02 15:42:11 +00:00
58 lines
795 B
TypeScript
58 lines
795 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Obsidian Flames"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Toutombe",
|
|
en: "Greavard",
|
|
es: "Greavard",
|
|
it: "Greavard",
|
|
pt: "Greavard",
|
|
de: "Gruff"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Psychic"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Psychic"],
|
|
|
|
name: {
|
|
fr: "Ronge",
|
|
en: "Gnaw",
|
|
es: "Roer",
|
|
it: "Rosicchiamento",
|
|
pt: "Roída",
|
|
de: "Nagen"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Psychic", "Colorless"],
|
|
|
|
name: {
|
|
fr: "Tir Effrayant",
|
|
en: "Spooky Shot",
|
|
es: "Disparo Embrujado",
|
|
it: "Colpomistero",
|
|
pt: "Tiro Assustador",
|
|
de: "Spukschuss"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |