1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

84 lines
1.8 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 '../Deoxys'
const card: Card = {
name: {
en: "Manectric",
fr: "Elecsprint",
de: "Voltenso"
},
illustrator: "Hajime Kusajima",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
310,
],
hp: 70,
types: [
"Lightning",
],
evolveFrom: {
en: "Electrike",
},
stage: "Stage1",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Thunder Spear",
fr: "Lance-éclair",
de: "Thunder Spear"
},
effect: {
en: "Choose 1 of your opponent's Pokémon. This attack does 20 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Choisissez 1 des Pokémon de votre adversaire. Cette attaque lui inflige 20 dégâts. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon du Banc).",
de: "Choose 1 of your opponent's Pokémon. This attack does 20 damage to that Pokémon. (Don't apply Weaknesss and Resistance for Benched Pokémon.)"
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Magnetic Tackle",
fr: "Charge magnétique",
de: "Magnetic Tackle"
},
effect: {
en: "You may do 40 damage plus 10 more damage for each Lightning Energy attached to Manectric. If you do, Manectric does 10 damage to itself.",
fr: "Vous pouvez infliger 40 dégâts plus 10 dégâts supplémentaires pour chaque Énergie attachée à Elecsprint. Elecsprint s'inflige alors 10 dégâts.",
de: "You may do 40 damage plus 10 more damage for each Energy attached to Manectric. If you do, Manectric. If you do, Manectric does 10 damage to itself."
},
damage: "40+",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-30"
},
],
}
export default card