1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

70 lines
897 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Supreme Victors'
const card: Card = {
name: {
en: "Growlithe",
fr: "Caninos",
},
illustrator: "Atsuko Nishida",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
58,
],
hp: 60,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Smash Kick",
fr: "Coud'pattes",
},
damage: 10,
},
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Fireworks",
fr: "Feux d'artifices",
},
effect: {
en: "Flip a coin. If tails, discard a Fire Energy attached to Growlithe.",
fr: "Lancez une pièce. Si c'est pile, défaussez une Énergie Fire attachée à Caninos.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Water",
value: "+10"
},
],
retreat: 1,
}
export default card