mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-17 22:09:54 +00:00
49 lines
830 B
TypeScript
49 lines
830 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 to be receiving signals of unknown origin while 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
|