1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

81 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Team Rocket'
const card: Card = {
name: {
en: "Dark Magneton",
fr: "Magneton obscur",
de: "Dunkles Magneton"
},
illustrator: "Miki Tanaka",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
82,
],
hp: 60,
types: [
"Lightning",
],
evolveFrom: {
en: "Magnemite",
},
stage: "Stage1",
attacks: [
{
cost: ["Grass", "Grass", "Colorless", "Colorless"],
name: {
en: "Sonicboom",
fr: "Sonicboom",
de: "Giftpuder"
},
effect: {
en: "Don't apply Weakness and Resistance for this attack. (Any other effects that would happen after applying Weakness and Resistance still happen.)",
fr: "N'appliquez pas la Faiblesse et la Résistance à cette attaque. (Tous les autres effets ayant lieu après application de la Faiblesse et de la Résistance subsistent.)",
de: "Das Verteidigende Pokémon ist jetzt vergiftet."
},
damage: 40,
},
{
cost: [
"Lightning",
"Lightning",
],
name: {
en: "Magnetic Lines",
fr: "Lignes magnétiques",
de: "Magnetische Linien"
},
effect: {
en: "If the Defending Pokémon has any basic Energy cards attached to it, choose 1 of them. If your opponent has any Benched Pokémon, choose 1 of them and attach that Energy card to it.",
fr: "Si le Pokémon Défenseur a des cartes Énergies de base attachées à lui, choisissez l'une d'elles. Si votre adversaire a des Pokémon sur son Banc, choisissez l'un d'eux et attachez cette carte Énergie sur lui.",
de: "Falls auf dem verteidigenden Pokémon irgendwelche Basis-Energiekarten abgelegt sind, wähle eine von ihnen. Falls dein Gegner irgendwelche Pokémon auf seiner Bank hat, wähle eines von ihnen und lege die Energiekarte darauf ab."
},
damage: 30,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
description: {
fr: "Le nombre de pirates informatiques utilisant des Magneton pour endommager les systèmes augmente régulièrement."
}
}
export default card