1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

77 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Burning Shadows'
const card: Card = {
name: {
en: "Eelektrik",
fr: "Lampéroie",
es: "Eelektrik",
it: "Eelektrik",
pt: "Eelektrik",
de: "Zapplalek"
},
illustrator: "OOYAMA",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
603,
],
hp: 90,
types: [
"Lightning",
],
evolveFrom: {
en: "Tynamo",
fr: "Anchwatt",
},
stage: "Stage1",
attacks: [
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Small Appetite",
fr: "Petit Appétit",
es: "Pequeño Apetito",
it: "Scarso Appetito",
pt: "Apetite Pequeno",
de: "Kleiner Hunger"
},
effect: {
en: "If your opponents Active Pokémons maximum HP is 100 or more, this attack does nothing.",
fr: "Si les PV maximum du Pokémon Actif de votre adversaire sont de 100 ou plus, cette attaque ne fait rien.",
es: "Si los PS máximos del Pokémon Activo de tu rival son 100 o más, este ataque no hace nada.",
it: "Se i PS massimi del Pokémon attivo del tuo avversario sono 100 o più, questo attacco non ha effetto.",
pt: "Se o PS máximo do Pokémon Ativo do seu oponente for 100 ou mais, este ataque não fará nada.",
de: "Wenn die maximalen KP des Aktiven Pokémon deines Gegners 100 oder mehr betragen, hat diese Attacke keine Auswirkungen."
},
damage: 50,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 2,
}
export default card