mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-06 13:29:55 +00:00
61 lines
919 B
TypeScript
61 lines
919 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Destined Rivals"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Growlithe",
|
|
fr: "Caninos",
|
|
de: "Fukano",
|
|
it: "Growlithe",
|
|
es: "Growlithe",
|
|
pt: "Growlithe",
|
|
'es-mx': "Growlithe"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 80,
|
|
types: ["Fire"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Fire"],
|
|
|
|
name: {
|
|
en: "Live Coal",
|
|
fr: "Charbon Mutant",
|
|
de: "Glühende Kohlen",
|
|
it: "Carboni Ardenti",
|
|
es: "Carbón Activado",
|
|
pt: "Carvão Vivo",
|
|
'es-mx': "Carbón Activado"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Dig Claws",
|
|
fr: "Creusogriffes",
|
|
de: "Schaufelkrallen",
|
|
it: "Scavazanne",
|
|
es: "Hundir Garras",
|
|
pt: "Fincar Garras",
|
|
'es-mx': "Clavar Garras"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "I",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |