1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 13:09:53 +00:00

48 lines
839 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Magnezone"
},
illustrator: "Yoshinobu Saito",
rarity: "Three Diamond",
category: "Pokemon",
hp: 140,
types: ["Lightning"],
evolveFrom: {
en: "Magneton"
},
description: {
en: "As it zooms through the sky, this Pokémon seems<br />to be receiving signals of unknown origin while<br />transmitting signals of unknown purpose."
},
stage: "Stage2",
attacks: [{
name: {
en: "Thunder Blast"
},
damage: 110,
cost: ["Lightning", "Colorless", "Colorless"],
effect: {
en: "Discard a <span class=\"energy-text energy-text--type-lightning\"></span> Energy from this Pokémon."
}
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 2
}
export default card