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

64 lines
1.1 KiB
TypeScript
Raw Permalink 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 '../Legend Maker'
const card: Card = {
name: {
en: "Magnemite",
fr: "Magneti",
de: "Magnetilo"
},
illustrator: "Hiroki Fuchino",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
81,
],
hp: 50,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Magnetic Swirl",
fr: "Tourbillon magnétique",
de: "Magnetwirbel"
},
effect: {
en: "Flip a coin. If tails, this attack does nothing. If heads, discard an Energy attached to the Defending Pokémon.",
fr: "Lancez une pièce. Si c'est pile, cette attaque est sans effet. Si c'est face, défaussez une Énergie attachée au Pokémon Défenseur.",
de: "Wirf 1 Münze. Bei \"Zahl\" hat dieser Angriff keine Auswirkung. Bei \"Kopf\" lege eine Energiekarte, die am Verteidigenden Pokémon angelegt ist, auf den Ablagestapel deines Gegners."
},
damage: 10,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-30"
},
],
}
export default card