1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

94 lines
1.5 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 '../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 cant 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