1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-12 20:07: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

39 lines
1.3 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: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Crystal Cave",
fr: "Caverne de Cristal",
es: "Cueva Cristal",
it: "Caverna dei Cristalli",
pt: "Crystal Cave",
de: "Kristallhöhle"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "Once during each players turn, that player may heal 30 damage from each of their Metal Pokémon and Dragon Pokémon.",
fr: "Une fois pendant le tour de chaque joueur, ce joueur peut soigner 30 dégâts de chacun de ses Pokémon Metal et Pokémon Dragon.",
es: "Una vez durante el turno de cada jugador, ese jugador puede curar 30 puntos de daño a cada uno de sus Pokémon Metal y Pokémon Dragon.",
it: "Una sola volta durante il turno di ciascun giocatore, quel giocatore può curare 30 danni da ciascuno dei suoi Pokémon Metal e Dragon.",
pt: "Once during each players turn, that player may heal 30 damage from each of their Metal Pokémon and Dragon Pokémon.",
de: "Einmal während des Zuges jedes Spielers kann jener Spieler 30 Schadenspunkte bei jedem seiner Metal-Pokémon und Dragon-Pokémon heilen."
},
trainerType: "Stadium",
illustrator: "Toyste Beach"
}
export default card