import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "swsh1-198", localId: 198, // Card informations name: { en: "Cramorant V", }, hp: 200, type: [ Type.COLORLESS, ], image: { low: { en: "https://assets.tcgdex.net/en/swsh/swsh1/198/low.png", }, high: { en: "https://assets.tcgdex.net/en/swsh/swsh1/198/high.png", }, }, evolveFrom: {}, tags: [ Tag.V, ], attacks: [{ name: { en: "V rule", }, },{ cost: [ Type.COLORLESS ], name: { en: "Beak Catch", }, text: { en: "Search your deck for up to 2 cards and put them into your hand. Then, shuffle your deck.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Spit Shot", }, text: { en: "Discard all Energy from this Pokémon. This attack does 160 damage to 1 of your opponent’s Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)", }, }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-30" }], retreat: 1, rarity: Rarity.RareUltra, category: Category.POKEMON, set: { name: "Sword & Shield", code: "swsh1" } } export default card