1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

96 lines
2.0 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 '../Roaring Skies'
const card: Card = {
name: {
en: "Manectric",
fr: "Élecsprint",
es: "Manectric",
it: "Manectric",
pt: "Manectric",
de: "Voltenso"
},
illustrator: "match",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
310,
],
hp: 90,
types: [
"Lightning",
],
evolveFrom: {
en: "Electrike",
fr: "Dynavolt",
es: "Electrike",
it: "Electrike",
pt: "Electrike",
de: "Frizelbliz"
},
stage: "Stage1",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Random Spark",
fr: "Étincelle Surprise",
es: "Chispa al Azar",
it: "Scintilla Casuale",
pt: "Fagulha Aleatória",
de: "Zufälliger Funke"
},
effect: {
en: "This attack does 30 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 30 dégâts à l'un des Pokémon de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
es: "Este ataque hace 30 puntos de daño a 1 de tus Pokémon en Banca. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
it: "Questo attacco infligge 30 danni a uno dei Pokémon del tuo avversario. Ricorda che non puoi applicare debolezza e resistenza ai Pokémon in panchina.",
pt: "Este ataque causa 30 de danos a 1 dos Pokémon de seu oponente. (Não aplique Fraqueza e Resistência a Pokémon no Banco.)",
de: "Dieser Angriff fügt 1 Pokémon deines Gegners 30 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Bite",
fr: "Morsure",
es: "Mordisco",
it: "Morso",
pt: "Mordida",
de: "Biss"
},
damage: 40,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card