import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' import set from '../../../sets/swsh/swsh2' const card: Card = { // Card Global Informations id: "swsh2-55", localId: 55, name: { en: "Eiscue V", }, tags: [ ], illustrator: "PLANETA Tsuji", rarity: Rarity.RARE, category: Category.POKEMON, set, // Card Pokémon Informations abilities: [ { type: AbilityType.TALENT, name: { en: "Cold Absorption", }, text: { en: "Whenever you attach a Water Energy card from your hand to this Pokémon during your turn, heal 30 damage from it.", }, } , ], attacks: [ { cost: [ Type.WATER, Type.WATER, Type.COLORLESS, ], name: { en: "Blizzard", }, text: { 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: 120, }, ], weaknesses: [ { type: Type.METAL, value: "×2", }, ], retreat: 2, // Card Trainer/Energy informations } export default card