1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

85 lines
1.3 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 '../Evolutions'
const card: Card = {
name: {
en: "Growlithe",
fr: "Caninos",
es: "Growlithe",
it: "Growlithe",
pt: "Growlithe",
de: "Fukano"
},
illustrator: "Ken Sugimori",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
58,
],
hp: 70,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Hind Kick",
fr: "Coup dPied Arrière",
es: "Patada Posterior",
it: "Calcio Posteriore",
pt: "Patada Traseira",
de: "Austreten"
},
effect: {
en: "Switch this Pokémon with 1 of your Benched Pokémon.",
fr: "Échangez ce Pokémon avec lun de vos Pokémon de Banc.",
es: "Cambia este Pokémon por 1 de tus Pokémon en Banca.",
it: "Scambia questo Pokémon con uno della tua panchina.",
pt: "Troque este Pokémon por 1 dos seus Pokémon no Banco.",
de: "Tausche dieses Pokémon gegen 1 Pokémon auf deiner Bank aus."
},
damage: 10,
},
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Flare",
fr: "Flamboiement",
es: "Llama",
it: "Fiammata",
pt: "Labareda",
de: "Flackern"
},
damage: 20,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 2,
}
export default card