1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

91 lines
2.7 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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Magneton",
fr: "Magnéton",
es: "Magneton",
it: "Magneton",
pt: "Magneton",
de: "Magneton"
},
illustrator: "Eske Yoshinob",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
82,
],
hp: 80,
types: [
"Lightning",
],
evolveFrom: {
en: "Magnemite",
fr: "Magnéti",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Call Signal",
fr: "Signal dAppel",
es: "Señal de Atracción",
it: "Cerca Segnale",
pt: "Sinal de Chamada",
de: "Rufsignal"
},
effect: {
en: "Once during your turn (before your attack), you may search your deck for up to 3 Supporter cards, reveal them, and put them into your hand. Then, shuffle your deck. If you searched your deck in this way, this Pokémon is Knocked Out.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez chercher jusquà 3 cartes Supporter dans votre deck, les montrer, puis les ajouter à votre main. Mélangez ensuite votre deck. Si vous avez cherché votre deck de cette façon, ce Pokémon est mis K.O.",
es: "Una vez durante tu turno (antes de tu ataque), puedes buscar en tu baraja hasta 3 cartas de Partidario, enseñarlas y ponerlas en tu mano. Después, baraja las cartas de tu baraja. Si has buscado en tu baraja de esta manera, este Pokémon queda Fuera de Combate.",
it: "Una sola volta durante il tuo turno, prima di attaccare, puoi cercare nel tuo mazzo fino a tre carte Aiuto, mostrarle e aggiungerle alle carte che hai in mano. Poi rimischia le carte del tuo mazzo. Se hai cercato nel tuo mazzo in questo modo, questo Pokémon viene messo KO.",
pt: "Uma vez durante a sua vez de jogar (antes de atacar), você pode procurar por até 3 cartas de Apoiador no seu baralho, revelá-las e colocá-las na sua mão. Em seguida, embaralhe o seu baralho. Se você procurar no seu baralho desta forma, este Pokémon será Nocauteado.",
de: "Einmal während deines Zuges (bevor du angreifst) kannst du dein Deck nach bis zu 3 Unterstützerkarten durchsuchen, sie deinem Gegner zeigen und auf deine Hand nehmen. Mische anschließend dein Deck. Wenn du auf diese Weise dein Deck durchsucht hast, ist dieses Pokémon kampfunfähig."
},
},
],
attacks: [
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Magnetic Blast",
fr: "Explosion Magnétique",
es: "Explosión Magnética",
it: "Magnetebomba",
pt: "Explosão Magnética",
de: "Magnetstoß"
},
damage: 50,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 2,
}
export default card