mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
60 lines
814 B
TypeScript
60 lines
814 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Silver Tempest"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Growlithe",
|
|
fr: "Caninos",
|
|
es: "Growlithe",
|
|
it: "Growlithe",
|
|
pt: "Growlithe",
|
|
de: "Fukano"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 90,
|
|
types: ["Fire"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Flare",
|
|
fr: "Flamboiement",
|
|
es: "Llama",
|
|
it: "Fiammata",
|
|
pt: "Chama",
|
|
de: "Flackern"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Fire", "Colorless"],
|
|
|
|
name: {
|
|
en: "Ram",
|
|
fr: "Collision",
|
|
es: "Apisonar",
|
|
it: "Carica",
|
|
pt: "Aríete",
|
|
de: "Ramme"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 3,
|
|
regulationMark: "F",
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |