1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00

75 lines
1.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 '../Forbidden Light'
const card: Card = {
name: {
en: "Gogoat",
fr: "Chevroum",
},
illustrator: "Anesaki Dynamic",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
673,
],
hp: 120,
types: [
"Grass",
],
evolveFrom: {
en: "Skiddo",
fr: "Cabriolaine",
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Milk Drink",
fr: "Lait à Boire",
},
effect: {
en: "Flip 2 coins. For each heads, heal 40 damage from this Pokémon.",
fr: "Lancez 2 pièces. Pour chaque côté face, soignez 40 dégâts à ce Pokémon.",
},
},
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Double-Edge",
fr: "Damoclès",
},
effect: {
en: "This Pokémon does 30 damage to itself.",
fr: "Ce Pokémon sinflige 30 dégâts.",
},
damage: 120,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 2,
}
export default card