mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
72 lines
2.0 KiB
TypeScript
72 lines
2.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Skyridge'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Magneton",
|
||
de: "Magneton"
|
||
},
|
||
illustrator: "Kouki Saitou",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
82,
|
||
],
|
||
hp: 80,
|
||
types: [
|
||
"Lightning",
|
||
],
|
||
evolveFrom: {
|
||
en: "Magnemite",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Poke-POWER",
|
||
name: {
|
||
en: "Attract Energy",
|
||
de: "Energie-Anlockung"
|
||
},
|
||
effect: {
|
||
en: "When you play Magneton from your hand to evolve 1 of your Pokémon, you may move any number of basic Energy cards attached to your other Pokémon to Magneton.",
|
||
de: "Wenn du Magneton aus deiner Hand spielst, um 1 deiner Pokémon zu entwickeln, kannst du eine beliebige Anzahl an Basis-Energiekarten, die an deine anderen Pokémon angelegt sind, an Magneton anlegen."
|
||
},
|
||
},
|
||
],
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Electric Blast",
|
||
de: "Elektrischer Strahl"
|
||
},
|
||
effect: {
|
||
en: "You may discard all Energy cards attached to Magneton when you use this attack. If you do, put damage counters equal to the amount of Energy cards removed in this way on any number of your opponent's Benched Pokémon in the way you like. (For example, if you discard 3 Energy cards, you can put 1 damage counter on 1 of your opponent's Benched Pokémon and 2 on another.)",
|
||
de: "Du kannst alle an Magneton angelegten -Energiekarten auf deinen Ablagestapel legen, wenn du diesen Angriff verwendest. Falls du dies tust, verteile so viele Schadensmarken, wie du auf diese Weise Energiekarten abgelegt hast, in beliebiger Weise auf eine beliebige Anzahl an Pokémon auf der Bank deines Gegners. (Legst du zum Beispiel 3 -Energiekarten auf den Ablagestapel, kannst du 1 Schadensmarke auf eins der Pokémon auf der Bank deines Gegners und 2 Marken auf ein anderes legen.)"
|
||
},
|
||
damage: 40,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|