mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
96 lines
2.9 KiB
TypeScript
96 lines
2.9 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Team Up'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Emolga",
|
||
fr: "Emolga",
|
||
es: "Emolga",
|
||
it: "Emolga",
|
||
pt: "Emolga",
|
||
de: "Emolga"
|
||
},
|
||
|
||
illustrator: "Megumi Mizutani",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
587,
|
||
],
|
||
|
||
hp: 60,
|
||
|
||
types: [
|
||
"Lightning",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Ability",
|
||
name: {
|
||
en: "Nuzzly Gathering",
|
||
fr: "Rassemblement Frimousse",
|
||
es: "Reunión Estática",
|
||
it: "Raduno Coccoloso",
|
||
pt: "Encontro de Chamegos",
|
||
de: "Wangenrubbler-Treffen"
|
||
},
|
||
effect: {
|
||
en: "Once during your turn (before your attack), you may search your deck for a Pokémon that has the Nuzzle attack, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez chercher dans votre deck un Pokémon avec l’attaque Frotte-Frimousse, le montrer, puis l’ajouter à votre main. Mélangez ensuite votre deck.",
|
||
es: "Una vez durante tu turno (antes de tu ataque), puedes buscar en tu baraja 1 Pokémon que tenga el ataque Moflete Estático, enseñarlo y ponerlo en tu mano. Después, baraja las cartas de tu baraja.",
|
||
it: "Una sola volta durante il tuo turno, prima di attaccare, puoi cercare nel tuo mazzo un Pokémon che abbia l’attacco Elettrococcola, mostrarlo e aggiungerlo alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
||
pt: "Uma vez durante a sua vez de jogar (antes de atacar), você pode procurar por 1 Pokémon que tenha o ataque Chamego no seu baralho, revelá-lo e colocá-lo na sua mão. Em seguida, embaralhe o seu baralho.",
|
||
de: "Einmal während deines Zuges (bevor du angreifst) kannst du dein Deck nach 1 Pokémon, das die Attacke Wangenrubbler hat, durchsuchen, es deinem Gegner zeigen und auf deine Hand nehmen. Mische anschließend dein Deck."
|
||
},
|
||
},
|
||
],
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
],
|
||
name: {
|
||
en: "Nuzzle",
|
||
fr: "Frotte-Frimousse",
|
||
es: "Moflete Estático",
|
||
it: "Elettrococcola",
|
||
pt: "Chamego",
|
||
de: "Wangenrubbler"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.",
|
||
fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
|
||
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.",
|
||
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato.",
|
||
pt: "Jogue 1 moeda. Se sair cara, o Pokémon Ativo do seu oponente será Paralisado.",
|
||
de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert."
|
||
},
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-20"
|
||
},
|
||
],
|
||
|
||
retreat: 0
|
||
}
|
||
|
||
export default card
|