1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 07:39:53 +00:00

78 lines
1.2 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Diamond & Pearl'
const card: Card = {
name: {
en: "Magnezone",
fr: "Magnézone",
},
illustrator: "Nakaoka",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
462,
],
hp: 120,
types: [
"Metal",
],
evolveFrom: {
en: "Magneton",
fr: "Magneton",
},
stage: "Stage2",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Magnetize",
fr: "Magnétiser",
},
effect: {
en: "If you have any Metal Energy attached to your Active Pokémon, the Retreat Cost for that Pokémon is 0.",
fr: "Si votre Pokémon Actif possède des Énergies (M), son Coût de retraite est de 0.",
},
},
],
attacks: [
{
cost: [
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Metal Blast",
fr: "Explosion métallique",
},
effect: {
en: "Does 50 damage plus 10 more damage for each Metal Energy attached to Magnezone.",
fr: "Inflige 50 dégâts plus 10 dégâts supplémentaires pour chaque Énergie Metal attachée à Magnézone.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fire",
value: "+30"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 4,
}
export default card