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

96 lines
2.3 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 '../Triumphant'
const card: Card = {
name: {
en: "Magnezone",
fr: "Magnézone",
de: "Magnezone"
},
illustrator: "Noriko Hotta",
rarity: "Rare PRIME",
category: "Pokemon",
set: Set,
dexId: [
462,
],
hp: 140,
types: [
"Lightning",
],
evolveFrom: {
en: "Magneton",
fr: "Magneton",
},
stage: "Stage2",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Magnetic Draw",
fr: "Pioche magnétique",
de: "Magnet-Zieher"
},
effect: {
en: "Once during your turn (before your attack), you may draw cards until you have 6 cards in your hand. This power cant be used if Magnezone is affected by a Special Condition.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez piocher jusquà ce que vous ayez 6 cartes en main. Ce Poké-Power ne peut pas être utilisé si Magnézone est affecté par un État Spécial.",
de: "Einmal während deines Zuges (vor deinem Angriff) kannst du so viele Karten ziehen, bis du 6 Karten auf der Hand hast. Diese Poké-Power kann nicht benutzt werden, wenn Magnezone von einem Speziellen Zustand betroffen ist."
},
},
],
attacks: [
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Lost Burn",
fr: "Brûlure perdue",
de: "Brennendes Nirgendwo"
},
effect: {
en: "Put as many Energy cards attached to your Pokémon as you like in the Lost Zone. This attack does 50 damage times the number of Energy cards put in the Lost Zone in this way.",
fr: "Placez autant de cartes Énergie attachées à vos Pokémon que vous le souhaitez dans la Zone Perdue. Cette attaque inflige 50 dégâts multipliés par le nombre de cartes Énergie que vous avez ainsi placées dans la Zone Perdue.",
de: "Lege beliebig viele Energiekarten, die an deinen Pokémon angelegt sind, ins Nirgendwo. Dieser Angriff fügt 50 Schadenspunkte mal der Anzahl aller so ins Nirgendwo gelegten Energiekarten zu."
},
damage: "50x",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 3,
suffix: "Prime",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card