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

60 lines
770 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Aquapolis'
const card: Card = {
name: {
en: "Growlithe",
fr: "Caninos",
de: "Fukano"
},
illustrator: "Kyoko Umemoto",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
58,
],
hp: 60,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Ember",
fr: "Flammèche",
de: "Ember"
},
effect: {
en: "Discard a Energy card attached to Growlithe.",
fr: "Défaussez-vous d'une carte Énergie attachée à Caninos.",
de: "Discard a Energy card attached to Growlithe."
},
damage: 30,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card