mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
82 lines
2.0 KiB
TypeScript
82 lines
2.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Ancient Origins'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Goomy",
|
||
fr: "Mucuscule",
|
||
es: "Goomy",
|
||
it: "Goomy",
|
||
pt: "Goomy",
|
||
de: "Viscora"
|
||
},
|
||
illustrator: "sui",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
704,
|
||
],
|
||
hp: 40,
|
||
types: [
|
||
"Dragon",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Ability",
|
||
name: {
|
||
en: "Water Down",
|
||
fr: "Dilution",
|
||
es: "Aguar",
|
||
it: "Idrodiluente",
|
||
pt: "Diluir",
|
||
de: "Panschen"
|
||
},
|
||
effect: {
|
||
en: "Whenever you attach a Water Energy card from your hand to this Pokémon, you may search your deck for Goomy and put it onto your Bench. Shuffle your deck afterward.",
|
||
fr: "Chaque fois que vous attachez une carte Énergie Water de votre main à ce Pokémon, vous pouvez chercher Mucuscule dans votre deck et le placer sur votre Banc. Mélangez ensuite votre deck.",
|
||
es: "Cada vez que unas 1 carta de Energía Water de tu mano a este Pokémon, puedes buscar en tu baraja a Goomy y ponerlo en tu Banca. Baraja las cartas de tu baraja después.",
|
||
it: "Ogni volta che assegni una carta Energia Water a questo Pokémon dalla tua mano, puoi cercare nel tuo mazzo un Goomy e aggiungerlo alla tua panchina. Poi rimischia le carte del tuo mazzo.",
|
||
pt: "Sempre que ligar um card de Energia Water da sua mão a este Pokémon, você pode procurar Goomy em seu baralho e colocá-lo no seu Banco. Em seguida, embaralhe seus cards.",
|
||
de: "Immer wenn du 1 Water-Energiekarte von deiner Hand an dieses Pokémon anlegst, kannst du dein Deck nach Viscora durchsuchen und es auf deine Bank legen. Mische anschließend dein Deck."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fairy",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Stampede",
|
||
fr: "Ruée",
|
||
es: "Estampida",
|
||
it: "Fuggi Fuggi",
|
||
pt: "Estouro",
|
||
de: "Zertrampeln"
|
||
},
|
||
|
||
damage: 10,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fairy",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|