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

70 lines
1.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 '../Neo Discovery'
const card: Card = {
name: {
en: "Magnemite",
},
illustrator: undefined,
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
81,
],
hp: 40,
types: [
"Metal",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Lock-on",
},
effect: {
en: "During your next turn, treat any tails flipped when using Magnemite's Electric Bolt attack on the Defending Pokémon as if they were heads. (Benching or evolving either Pokémon ends this effect.)",
},
},
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Electric Bolt",
},
effect: {
en: "Flip 2 coins. If both are heads, the Defending Pokémon is now Paralyzed. If either of them is tails, this attack does nothing (not even damage).",
},
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
],
}
export default card