mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
84 lines
1.1 KiB
TypeScript
84 lines
1.1 KiB
TypeScript
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
|