mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
72 lines
1023 B
TypeScript
72 lines
1023 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Secret Wonders'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Growlithe",
|
|
fr: "Caninos",
|
|
de: "Fukano"
|
|
},
|
|
illustrator: "Kagemaru Himeno",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
58,
|
|
],
|
|
hp: 70,
|
|
types: [
|
|
"Fire",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Roar",
|
|
fr: "Hurlement",
|
|
de: "Gebrüll"
|
|
},
|
|
effect: {
|
|
en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.",
|
|
fr: "Votre adversaire échange le Pokémon Défenseur avec 1 des Pokémon de son Banc.",
|
|
de: "Dein Gegner tauscht das Verteidigende Pokémon gegen 1 Pokémon auf seiner Bank aus."
|
|
},
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Fire",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Dig Claws",
|
|
fr: "Creuse-griffe",
|
|
de: "Schaufelkrallen"
|
|
},
|
|
|
|
damage: 20,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Water",
|
|
value: "+20"
|
|
},
|
|
],
|
|
|
|
retreat: 2,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|