1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 15:49:55 +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

56 lines
1.6 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: "Kyurem",
fr: "Kyurem",
es: "Kyurem",
it: "Kyurem",
pt: "Kyurem",
de: "Kyurem"
},
rarity: "Rare",
category: "Pokemon",
hp: 120,
types: ["Dragon"],
stage: "Basic",
illustrator: "Souichirou Gunjima",
attacks: [{
name: {
en: "Extreme Freeze",
fr: "Givre Extrême",
es: "Congelación Extrema",
it: "Freddo Estremo",
pt: "Extreme Freeze",
de: "Extremfrost"
},
effect: {
en: "Discard any amount of Water Energy from your Pokémon. This attack does 60 damage for each card you discarded in this way.",
fr: "Défaussez autant dÉnergies Water que vous le voulez de vos Pokémon. Cette attaque inflige 60 dégâts pour chaque carte défaussée de cette façon.",
es: "Descarta cualquier cantidad de Energías Water de tus Pokémon. Este ataque hace 60 puntos de daño por cada carta que hayas descartado de esta manera.",
it: "Scarta tutte le Energie Water che vuoi dai tuoi Pokémon. Questo attacco infligge 60 danni per ogni carta che hai scartato in questo modo.",
pt: "Discard any amount of Water Energy from your Pokémon. This attack does 60 damage for each card you discarded in this way.",
de: "Lege beliebig viele Water-Energien von deinen Pokémon auf deinen Ablagestapel. Diese Attacke fügt für jede auf diese Weise abgelegte Karte 60 Schadenspunkte zu."
},
damage: "60×",
cost: ["Water", "Water", "Metal"]
}],
retreat: 2
}
export default card