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

85 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 '../Holon Phantoms'
const card: Card = {
name: {
en: "Manectric",
fr: "Elecsprint",
de: "Voltenso"
},
illustrator: "Midori Harada",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
310,
],
hp: 80,
types: [
"Lightning",
],
evolveFrom: {
en: "Electrike",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Plasma",
fr: "Plasma",
de: "Plasma"
},
effect: {
en: "Search your discard pile for a Lightning Energy card and attach it to Manectric.",
fr: "Cherchez dans votre pile de défausse une carte Énergie et attachez-la à Elecsprint.",
de: "Durchsuche deinen Ablagestapel nach einer -Energiekarte und lege sie an Voltenso an."
},
damage: 20,
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Quick Blow",
fr: "Coup d'poing éclair",
de: "Schnellschlag"
},
effect: {
en: "Flip a coin. If heads, this attack does 40 damage plus 20 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 40 dégâts plus 20 dégâts supplémentaires.",
de: "Wirf 1 Münze. Bei \"Kopf\" fügt dieser Angriff 40 Schadenspunkte plus 20 weitere Schadenspunkte zu."
},
damage: "40+",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-30"
},
],
}
export default card