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

86 lines
1.8 KiB
TypeScript
Raw Permalink 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 '../Emerald'
const card: Card = {
name: {
en: "Manectric",
fr: "Elecsprint",
de: "Voltenso"
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
310,
],
hp: 80,
types: [
"Lightning",
],
evolveFrom: {
en: "Electrike",
},
stage: "Stage1",
attacks: [
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Swift",
fr: "Météores",
de: "Sternschauer"
},
effect: {
en: "This attack's damage isn't affected by Weakness, Resistance, Poké-Powers, Poké-Bodies, or any other effects on the Defending Pokémon.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance, les Poké-Powers, les Poké-Bodies ou tout autre effet sur le Pokémon Défenseur.",
de: "This attacks damage isnt affected by Weakness, Resistance, Poke-Powers , Poke-Bodies, or any other effect on the Defending Pokémon"
},
damage: 20,
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Tail Shock",
fr: "Élektri-keu",
de: "Tail Shock"
},
effect: {
en: "Does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Inflige 10 dégâts à chacun des Pokémon de Banc de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
de: "Does 10 damage to each of your opponents Benched Pokémon. (Dont apply weakness and Resistance for Benched Pokémon)"
},
damage: 40,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-30"
},
],
}
export default card