1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00

40 lines
580 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Growlithe"
},
illustrator: "Naoyo Kimura",
rarity: "One Diamond",
category: "Pokemon",
hp: 70,
types: ["Fire"],
description: {
en: "It has a brave and trustworthy nature. It fearlessly stands up to bigger and stronger foes."
},
stage: "Basic",
attacks: [{
name: {
en: "Combustion"
},
damage: 30,
cost: ["Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "+20"
}],
retreat: 2
}
export default card