1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

68 lines
1.4 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Astral Radiance"
const card: Card = {
dexId: [82],
set: Set,
name: {
en: "Magneton",
fr: "Magnéton",
es: "Magneton",
it: "Magneton",
pt: "Magneton",
de: "Magneton"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 90,
types: ["Metal"],
evolveFrom: {
en: "Magnemite",
fr: "Magnéti",
es: "Magnemite",
it: "Magnemite",
pt: "Magnemite",
de: "Magnetilo"
},
stage: "Stage1",
attacks: [{
cost: ["Metal", "Colorless"],
name: {
en: "Bounce Back",
fr: "Retour à l'Envoyeur",
es: "Recuperarse",
it: "Rimbalzo Indietro",
pt: "Ricochete de Retrocesso",
de: "Zurückprallen"
},
effect: {
en: "Your opponent switches their Active Pokémon with 1 of their Benched Pokémon.",
fr: "Votre adversaire échange son Pokémon Actif contre l'un de ses Pokémon de Banc.",
es: "Tu rival cambia su Pokémon Activo por 1 de sus Pokémon en Banca.",
it: "Il tuo avversario scambia il suo Pokémon attivo con uno della sua panchina.",
pt: "Seu oponente troca o próprio Pokémon Ativo por 1 dos Pokémon no Banco dele(a).",
de: "Dein Gegner tauscht sein Aktives Pokémon gegen 1 Pokémon auf seiner Bank aus."
},
damage: 50
}],
retreat: 1,
regulationMark: "F",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card