import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Eiscue", }, illustrator: "Kagemaru Himeno", rarity: "Rare", category: "Pokemon", set: Set, abilities: [ { type: "Ability", name: { en: "Ice Face", }, effect: { en: "If this Pokémon has full HP, it takes 60 less damage from your opponent’s attacks (after applying Weakness and Resistance).", }, }, ], attacks: [ { cost: [ "Water", "Colorless", "Colorless", ], name: { en: "Blizzard", }, effect: { en: "This attack also does 10 damage to each of your opponent’s Benched Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)", }, damage: 70, }, ], weaknesses: [ { type: "Metal", value: "×2" }, ], retreat: 2, } export default card