mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
81 lines
1.9 KiB
TypeScript
81 lines
1.9 KiB
TypeScript
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: "Eiscue",
|
||
fr: "Bekaglaçon",
|
||
es: "Eiscue",
|
||
it: "Eiscue",
|
||
pt: "Eiscue",
|
||
de: "Kubuin"
|
||
},
|
||
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
hp: 120,
|
||
types: ["Water"],
|
||
stage: "Basic",
|
||
illustrator: "Mizue",
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Icy Snow",
|
||
fr: "Verglas",
|
||
es: "Nieve Helada",
|
||
it: "Geloneve",
|
||
pt: "Icy Snow",
|
||
de: "Eisiger Schnee"
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Water"]
|
||
}, {
|
||
name: {
|
||
en: "Blockface",
|
||
fr: "Tête de Bloc",
|
||
es: "Carabloque",
|
||
it: "Cubofaccia",
|
||
pt: "Blockface",
|
||
de: "Blockkopf"
|
||
},
|
||
|
||
effect: {
|
||
en: "During your opponent's next turn, prevent all damage done to this Pokémon by attacks from Basic Pokémon.",
|
||
fr: "Pendant le prochain tour de votre adversaire, évitez tous les dégâts infligés à ce Pokémon par des attaques de Pokémon de base.",
|
||
es: "Durante el próximo turno de tu rival, evita todo el daño infligido a este Pokémon por ataques de Pokémon Básicos.",
|
||
it: "Durante il prossimo turno del tuo avversario, previeni tutti i danni inflitti a questo Pokémon dagli attacchi dei Pokémon Base.",
|
||
pt: "During your opponent's next turn, prevent all damage done to this Pokémon by attacks from Basic Pokémon.",
|
||
de: "Verhindere während des nächsten Zuges deines Gegners allen Schaden, der diesem Pokémon durch Attacken von Basis-Pokémon zugefügt wird."
|
||
},
|
||
|
||
damage: 70,
|
||
cost: ["Water", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Metal",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
|
||
description: {
|
||
en: "This Pokémon keeps its heat-sensitive head cool with ice. It fishes for its food, dangling its single hair into the sea to lure in prey."
|
||
},
|
||
|
||
dexId: [875],
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card
|