mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
67 lines
1.2 KiB
TypeScript
67 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Stormfront'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Magnemite",
|
|
fr: "Magneti",
|
|
de: "Magnetilo"
|
|
},
|
|
illustrator: "Aya Kusube",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
81,
|
|
],
|
|
hp: 50,
|
|
types: [
|
|
"Metal",
|
|
],
|
|
evolveFrom: {
|
|
fr: "Magneti",
|
|
},
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Lightning",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Magnetic Bomb",
|
|
fr: "Bombe magnétique",
|
|
de: "Magnetische Bombe"
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If heads, this attack does 30 damage plus 10 more damage. If tails, Magnemite does 10 damage to itself.",
|
|
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts plus 10 dégâts supplémentaires. Si c'est pile, Magneti s'inflige 10 dégâts.",
|
|
de: "Wirf 1 Münze. Bei \"Kopf\" fügt dieser Angriff 30 Schadenspunkte plus 10 weitere Schadenspunkte zu. Bei \"Zahl\" fügt Magnetilo sich selbst 10 Schadenspunkte zu."
|
|
},
|
|
damage: "30+",
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Fire",
|
|
value: "+10"
|
|
},
|
|
],
|
|
resistances: [
|
|
{
|
|
type: "Psychic",
|
|
value: "-20"
|
|
},
|
|
],
|
|
retreat: 1,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|