1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

84 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 '../Flashfire'
const card: Card = {
name: {
en: "Goomy",
fr: "Mucuscule",
es: "Goomy",
it: "Goomy",
pt: "Goomy",
de: "Viscora"
},
illustrator: "5ban Graphics",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
704,
],
hp: 50,
types: [
"Dragon",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Gooey",
fr: "Poisseux",
es: "Baba",
it: "Viscosità",
pt: "Pegajoso",
de: "Viskosität"
},
effect: {
en: "Heal 10 damage from this Pokémon.",
fr: "Soignez 10 dégâts à ce Pokémon.",
es: "Cura 10 puntos de daño a este Pokémon.",
it: "Cura questo Pokémon da 10 danni.",
pt: "Cure 30 de danos deste Pokémon.",
de: "Heile 10 Schadenspunkte bei diesem Pokémon."
},
},
{
cost: [
"Water",
"Fairy",
],
name: {
en: "Tackle",
fr: "Charge",
es: "Placaje",
it: "Azione",
pt: "Investida",
de: "Tackle"
},
damage: 20,
},
],
weaknesses: [
{
type: "Fairy",
value: "×2"
},
],
retreat: 2,
}
export default card