1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 10:59:54 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

78 lines
1.1 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 '../Unified Minds'
const card: Card = {
name: {
en: "Magnezone",
fr: "Magnézone",
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
462,
],
hp: 160,
types: [
"Lightning",
],
evolveFrom: {
en: "Magneton",
fr: "Magnéton",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Double Type",
fr: "Type Double",
},
effect: {
en: "As long as this Pokémon is in play, it is Lightning and Metal type.",
fr: "Tant que ce Pokémon est en jeu, il est de type Lightning et Metal.",
},
},
],
attacks: [
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Magnetic Bolt",
fr: "Foudre Aimantée",
},
effect: {
en: "Put a Trainer card from your discard pile into your hand.",
fr: "Ajoutez une carte Dresseur de votre pile de défausse à votre main.",
},
damage: 120,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 3,
}
export default card