1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-13 20:36:15 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

70 lines
1.1 KiB
TypeScript
Raw 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 '../Sun & Moon'
const card: Card = {
name: {
en: "Growlithe",
fr: "Caninos",
es: "Growlithe",
it: "Growlithe",
pt: "Growlithe",
de: "Fukano"
},
illustrator: "MAHOU",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
58,
],
hp: 80,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Take Down",
fr: "Bélier",
es: "Derribo",
it: "Riduttore",
pt: "Desmantelar",
de: "Bodycheck"
},
effect: {
en: "This Pokémon does 20 damage to itself.",
fr: "Ce Pokémon sinflige 20 dégâts.",
es: "Este Pokémon se hace 20 puntos de daño a sí mismo.",
it: "Questo Pokémon infligge 20 danni a se stesso.",
pt: "Este Pokémon causa 20 pontos de dano a si mesmo.",
de: "Dieses Pokémon fügt sich selbst 20 Schadenspunkte zu."
},
damage: 60,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 2,
}
export default card