1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +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

102 lines
2.2 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 '../Forbidden Light'
const card: Card = {
name: {
en: "Empoleon",
fr: "Pingoléon",
es: "Empoleon",
it: "Empoleon",
pt: "Empoleon",
de: "Impoleon"
},
illustrator: "nagimiso",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
395,
],
hp: 160,
types: [
"Metal",
],
evolveFrom: {
en: "Prinplup",
fr: "Prinplouf",
},
stage: "Stage2",
attacks: [
{
cost: [
"Metal",
"Colorless",
],
name: {
en: "Total Command",
fr: "Commande Totale",
es: "Orden Total",
it: "Comando Assoluto",
pt: "Comando Total",
de: "Absolutes Gebot"
},
effect: {
en: "This attack does 20 damage for each Benched Pokémon (both yours and your opponents).",
fr: "Cette attaque inflige 20 dégâts multipliés par le nombre de Pokémon de Banc (les vôtres et ceux de votre adversaire).",
es: "Este ataque hace 20 puntos de daño por cada Pokémon en Banca (tanto tuyos como de tu rival).",
it: "Questo attacco infligge 20 danni per ogni Pokémon in panchina, sia tuo che del tuo avversario.",
pt: "Este ataque causa 20 pontos de dano para cada Pokémon no Banco (seus e do seu oponente).",
de: "Diese Attacke fügt 20 Schadenspunkte mal der Anzahl der Pokémon auf der Bank (deiner und der deines Gegners) zu."
},
damage: "20×",
},
{
cost: [
"Metal",
"Metal",
"Colorless",
],
name: {
en: "Whirlpool",
fr: "Siphon",
es: "Torbellino",
it: "Mulinello",
pt: "Redemoinho",
de: "Whirlpool"
},
effect: {
en: "Discard an Energy from your opponents Active Pokémon.",
fr: "Défaussez une Énergie du Pokémon Actif de votre adversaire.",
es: "Descarta 1 Energía del Pokémon Activo de tu rival.",
it: "Scarta unEnergia assegnata al Pokémon attivo del tuo avversario.",
pt: "Descarte 1 Energia do Pokémon Ativo do seu oponente.",
de: "Lege 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
},
damage: 90,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 2,
}
export default card