1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +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

77 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 '../XY Black Star Promos'
const card: Card = {
name: {
en: "Gogoat",
fr: "Chevroum",
},
illustrator: "5ban Graphics",
rarity: "None",
category: "Pokemon",
set: Set,
dexId: [
673,
],
hp: 110,
types: [
"Grass",
],
evolveFrom: {
en: "Skiddo",
fr: "Cabriolaine",
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Push Down",
fr: "Recul",
},
effect: {
en: "Your opponent switches his or her Active Pokémon with 1 of his or her Benched Pokémon.",
fr: "Votre adversaire échange son Pokémon Actif avec lun de ses Pokémon de Banc.",
},
damage: 30,
},
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Forest Press",
fr: "Pression de la Forêt",
},
effect: {
en: "Flip a coin for each Grass Energy attached to this Pokémon. This attack does 30 more damage for each heads.",
fr: "Lancez une pièce pour chaque Énergie Grass attachée à ce Pokémon. Cette attaque inflige 30 dégâts supplémentaires pour chaque côté face.",
},
damage: "60+",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 3,
}
export default card