1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

77 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 '../Aquapolis'
const card: Card = {
name: {
en: "Magnemite",
fr: "Magneti",
de: "Magnetilo"
},
illustrator: "Shin-ichi Yoshida",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
81,
],
hp: 40,
types: [
"Metal",
],
stage: "Basic",
attacks: [
{
cost: [
"Metal",
],
name: {
en: "Attract",
fr: "Attraction",
de: "Attract"
},
effect: {
en: "Choose 1 of your opponent's Benched Pokémon and switch the Defending Pokémon with it.",
fr: "Choisissez un des Pokémon du Banc de votre adversaire et échangez-le contre le Pokémon Défenseur.",
de: "Choose 1 of your opponent´s Benched Pokémon and switch the Defending Pokémon with it."
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Tackle",
fr: "Charge",
de: "Tackle"
},
damage: 20,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
],
}
export default card