1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-03 08:02:10 +00:00

78 lines
975 B
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 '../Yellow A Alternate'
const card: Card = {
name: {
en: "Magneton",
fr: "Magnéton",
},
illustrator: "Kyoko Umemoto",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
82,
],
hp: 90,
types: [
"Metal",
],
evolveFrom: {
en: "Magnemite",
fr: "Magnéti",
},
stage: "Stage1",
attacks: [
{
cost: [
"Metal",
],
name: {
en: "Ram",
fr: "Collision",
},
damage: 20,
},
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Zap Cannon",
fr: "Élecanon",
},
effect: {
en: "This Pokémon can't use Zap Cannon during your next turn.",
fr: "Ce Pokémon ne peut pas utiliser Élecanon pendant votre prochain tour.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 2,
}
export default card