mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-01 12:09:53 +00:00
95 lines
1.9 KiB
TypeScript
95 lines
1.9 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Diamond & Pearl'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Magneton",
|
|
fr: "Magneton",
|
|
de: "Magneton"
|
|
},
|
|
|
|
illustrator: "Kouki Saitou",
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
82,
|
|
],
|
|
|
|
hp: 70,
|
|
|
|
types: [
|
|
"Metal",
|
|
],
|
|
|
|
evolveFrom: {
|
|
en: "Magnemite",
|
|
fr: "Magneti",
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Tri Attack",
|
|
fr: "Triplattaque",
|
|
de: "Triplette"
|
|
},
|
|
effect: {
|
|
en: "Flip 3 coins. This attack does 20 damage times the number of heads.",
|
|
fr: "Lancez 3 pièces. Cette attaque inflige 20 dégâts multipliés par le nombre de faces.",
|
|
de: "Wirf 3 Münzen. Dieser Angriff fügt 20 Schadenspunkte mal der Anzahl \"Kopf\" zu."
|
|
},
|
|
damage: "20x",
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Metal",
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Magnetic Ray",
|
|
fr: "Rayon magnétique",
|
|
de: "Magnetstrahl"
|
|
},
|
|
effect: {
|
|
en: "Before doing damage, you may choose 1 of your opponent's Benched Pokémon that has any Energy attached to it and switch that Pokémon with 1 of the Defending Pokémon.",
|
|
fr: "Avant d'infliger des dégâts, vous pouvez choisir 1 des Pokémon de Banc de votre adversaire possédant de l'Énergie et l'échanger avec 1 des Pokémon Défenseurs.",
|
|
de: "Bevor der Schaden zugefügt wird, kannst du 1 Pokémon auf der Bank deines Gegners, an dem mindestens 1 Energie angelegt ist, wählen und es gegen 1 Verteidigendes Pokémon austauschen."
|
|
},
|
|
damage: 40,
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Fire",
|
|
value: "+20"
|
|
},
|
|
],
|
|
|
|
resistances: [
|
|
{
|
|
type: "Psychic",
|
|
value: "-20"
|
|
},
|
|
],
|
|
|
|
retreat: 2,
|
|
|
|
description: {
|
|
fr: "Il est formé de trois Magneti liés par magnétisme. En groupe, ils déclenchent un orage magnétique."
|
|
}
|
|
}
|
|
|
|
export default card
|