mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
68 lines
1.2 KiB
TypeScript
68 lines
1.2 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Obsidian Flames"
|
|
|
|
const card: Card = {
|
|
dexId: [210],
|
|
set: Set,
|
|
|
|
name: {
|
|
fr: "Granbull",
|
|
en: "Granbull",
|
|
es: "Granbull",
|
|
it: "Granbull",
|
|
pt: "Granbull",
|
|
de: "Granbull"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 130,
|
|
types: ["Psychic"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Psychic", "Colorless"],
|
|
|
|
name: {
|
|
fr: "Confrontation",
|
|
en: "Confront",
|
|
es: "Confrontar",
|
|
it: "Confronto",
|
|
pt: "Confrontar",
|
|
de: "Konfrontieren"
|
|
},
|
|
|
|
damage: 50
|
|
}, {
|
|
cost: ["Psychic", "Psychic", "Colorless"],
|
|
|
|
name: {
|
|
fr: "Tacle Brutal",
|
|
en: "Wild Tackle",
|
|
es: "Placaje Salvaje",
|
|
it: "Azionferoce",
|
|
pt: "Investida Feroz",
|
|
de: "Wilder Tackle"
|
|
},
|
|
|
|
effect: {
|
|
fr: "Ce Pokémon s'inflige aussi 30 dégâts.",
|
|
en: "This Pokémon also does 30 damage to itself.",
|
|
es: "Este Pokémon también se hace 30 puntos de daño a sí mismo.",
|
|
it: "Questo Pokémon infligge anche 30 danni a se stesso.",
|
|
pt: "Este Pokémon também causa 30 pontos de dano a si mesmo.",
|
|
de: "Dieses Pokémon fügt auch sich selbst 30 Schadenspunkte zu."
|
|
},
|
|
|
|
damage: 160
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "G",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |