mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
94 lines
1.5 KiB
TypeScript
94 lines
1.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Forbidden Light'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Magneton",
|
||
fr: "Magnéton",
|
||
es: "Magneton",
|
||
it: "Magneton",
|
||
pt: "Magneton",
|
||
de: "Magneton"
|
||
},
|
||
illustrator: "kirisAki",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
82,
|
||
],
|
||
hp: 90,
|
||
types: [
|
||
"Lightning",
|
||
],
|
||
evolveFrom: {
|
||
en: "Magnemite",
|
||
fr: "Magnéti",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
],
|
||
name: {
|
||
en: "Ram",
|
||
fr: "Collision",
|
||
es: "Apisonar",
|
||
it: "Carica",
|
||
pt: "Aríete",
|
||
de: "Ramme"
|
||
},
|
||
|
||
damage: 20,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
"Lightning",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Zap Cannon",
|
||
fr: "Élecanon",
|
||
es: "Electrocañón",
|
||
it: "Falcecannone",
|
||
pt: "Canhão Zap",
|
||
de: "Blitzkanone"
|
||
},
|
||
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.",
|
||
es: "Este Pokémon no puede usar Electrocañón durante tu próximo turno.",
|
||
it: "Durante il tuo prossimo turno, questo Pokémon non può usare Falcecannone.",
|
||
pt: "Este Pokémon não poderá usar Canhão Zap durante a sua próxima vez de jogar.",
|
||
de: "Dieses Pokémon kann Blitzkanone während deines nächsten Zuges nicht einsetzen."
|
||
},
|
||
damage: 80,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Metal",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|