1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 09:47:51 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

73 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 '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
},
name: {
en: "Regieleki",
fr: "Regieleki",
es: "Regieleki",
it: "Regieleki",
pt: "Regieleki",
de: "Regieleki"
},
rarity: "Rare",
category: "Pokemon",
hp: 120,
types: ["Lightning"],
stage: "Basic",
illustrator: "Shin Nagasawa",
attacks: [{
name: {
en: "Static Shock",
fr: "Choc Statique",
es: "Impacto Estático",
it: "Shock Statico",
pt: "Static Shock",
de: "Statischer Schock"
},
damage: 20,
cost: ["Colorless"]
}, {
name: {
en: "Teraspark",
fr: "Téra-Étincelle",
es: "Terachispa",
it: "Terascintilla",
pt: "Teraspark",
de: "Terafunke"
},
effect: {
en: "Discard all Lightning Energy from this Pokémon. This attack also does 40 damage to 2 of your opponents Benched Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Défaussez toute lÉnergie Lightning de ce Pokémon. Cette attaque inflige aussi 40 dégâts à 2 des Pokémon de Banc de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
es: "Descarta todas las Energías Lightning de este Pokémon. Este ataque también hace 40 puntos de daño a 2 de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
it: "Scarta tutte le Energie Lightning da questo Pokémon. Questo attacco infligge anche 40 danni a due dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.",
pt: "Discard all Lightning Energy from this Pokémon. This attack also does 40 damage to 2 of your opponents Benched Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
de: "Lege alle Lightning-Energien von diesem Pokémon auf deinen Ablagestapel. Diese Attacke fügt auch 2 Pokémon auf der Bank deines Gegners 40 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
damage: 120,
cost: ["Lightning", "Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2
}
export default card