1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +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

70 lines
1.1 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
dexId: [210],
set: Set,
name: {
en: "Granbull",
fr: "Granbull",
es: "Granbull",
it: "Granbull",
pt: "Granbull",
de: "Granbull"
},
rarity: "Rare",
category: "Pokemon",
hp: 120,
types: ["Psychic"],
evolveFrom: {
en: "Snubbull",
fr: "Snubbull",
es: "Snubbull",
it: "Snubbull",
pt: "Snubbull",
de: "Snubbull"
},
stage: "Stage1",
retreat: 2,
regulationMark: "E",
illustrator: "Akira Komayama",
description: {
en: "Although it's popular with young people, Granbull is timid and sensitive, so it's totally incompetent as a watchdog."
},
abilities: [{
type: "Ability",
name: {
en: "Dig Up"
},
effect: {
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may put up to 2 Pokémon Tool cards from your discard pile into your hand."
}
}],
attacks: [{
cost: ["Colorless", "Colorless", "Colorless"],
name: {
en: "Bite"
},
damage: 90
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card