mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
* Added basic translation IT will need a second checkup by another source as attacks are not correcly ordered Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Removed bugged file Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
64 lines
873 B
TypeScript
64 lines
873 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Plasma Storm'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Magneton",
|
||
fr: "Magnéton",
|
||
es: "Magneton",
|
||
it: "Magneton",
|
||
pt: "Magneton",
|
||
de: "Magneton"
|
||
},
|
||
illustrator: "match",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
82,
|
||
],
|
||
hp: 80,
|
||
types: [
|
||
"Lightning",
|
||
],
|
||
evolveFrom: {
|
||
en: "Magnemite",
|
||
fr: "Magnéti",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Knock Away",
|
||
fr: "Asticotage",
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, this attack does 20 more damage.",
|
||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.",
|
||
},
|
||
damage: 20,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|