1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +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 '../Ruby & Sapphire'
const card: Card = {
name: {
en: "Manectric",
fr: "Elecsprint",
de: "Voltenso"
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
310,
],
hp: 70,
types: [
"Lightning",
],
evolveFrom: {
en: "Electrike",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Attract Current",
fr: "Courant électrique",
de: "Attract Current"
},
effect: {
en: "Search your deck for a Lightning Energy card and attach it to 1 of your Pokémon. Shuffle your deck afterward.",
fr: "Choisissez dans votre deck une carte Énergie et attachez-la à un de vos Pokémon. Mélangez ensuite votre deck.",
de: "Search your deck for a Energy card amd attach it to 1 of your Pokémon. Shuffle your deck afterward."
},
damage: 10,
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Thunder Jolt",
fr: "Secousse tonnerre",
de: "Thunder Jolt"
},
effect: {
en: "Flip a coin. If tails, Manectric does 10 damage to itself.",
fr: "Lancez une pièce. Si c'est pile, Elecsprint s'inflige 10 dégâts.",
de: "Flip a coin. If tails, Manectric does 10 damage to itself."
},
damage: 50,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-30"
},
],
}
export default card