1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +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

90 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Lost Thunder'
const card: Card = {
name: {
en: "Gogoat",
fr: "Chevroum",
es: "Gogoat",
it: "Gogoat",
pt: "Gogoat",
de: "Chevrumm"
},
illustrator: "sowsow",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
673,
],
hp: 130,
types: [
"Grass",
],
evolveFrom: {
en: "Skiddo",
fr: "Cabriolaine",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Leaf Wallop",
fr: "Rafale de Feuilles",
es: "Golpazo Hojas",
it: "Battifoglia",
pt: "Batida de Folha",
de: "Blattprügel"
},
effect: {
en: "During your next turn, this Pokémons Leaf Wallop attack does 50 more damage (before applying Weakness and Resistance).",
fr: "Pendant votre prochain tour, lattaque Rafale de Feuilles de ce Pokémon inflige 50 dégâts supplémentaires (avant application de la Faiblesse et de la Résistance).",
es: "Durante tu próximo turno, el ataque Golpazo Hojas de este Pokémon hace 50 puntos de daño más (antes de aplicar Debilidad y Resistencia).",
it: "Durante il tuo prossimo turno, lattacco Battifoglia di questo Pokémon infligge 50 danni in più, prima di aver applicato debolezza e resistenza.",
pt: "Durante a sua próxima vez de jogar, o ataque Batida de Folha deste Pokémon causará 50 pontos de dano a mais (antes de aplicar Fraqueza e Resistência).",
de: "Während deines nächsten Zuges fügt die Attacke Blattprügel dieses Pokémon 50 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)."
},
damage: 40,
},
{
cost: [
"Grass",
"Grass",
"Colorless",
],
name: {
en: "Solar Beam",
fr: "Lance-Soleil",
es: "Rayo Solar",
it: "Solarraggio",
pt: "Raio Solar",
de: "Solarstrahl"
},
damage: 100,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 2,
}
export default card