1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 01:19: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

76 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 '../Plasma Storm'
const card: Card = {
name: {
en: "Magnezone",
fr: "Magnézone",
},
illustrator: "match",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
462,
],
hp: 140,
types: [
"Lightning",
],
evolveFrom: {
en: "Magneton",
fr: "Magnéton",
},
stage: "Stage2",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Double Assist",
fr: "Double Assistance",
},
effect: {
en: "Attach 2 basic Energy cards from your discard pile to 1 of your Pokémon.",
fr: "Attachez 2 cartes Énergie de base de votre pile de défausse à 1 de vos Pokémon.",
},
damage: 30,
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Tumbling Attack",
fr: "Attaque Trébuchante",
},
effect: {
en: "Flip a coin. If heads, this attack does 20 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 2,
}
export default card