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' const card: Card = { // ids id: "dp2-49", localId: 49, // Card informations name: { en: "Girafarig", }, hp: 70, type: [ Type.COLORLESS, ], dexId: 203, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp2/49/low", }, high: { en: "https://assets.tcgdex.net/en/dp/dp2/49/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Midori Harada", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Crane Neck", }, text: { en: "Search your deck for a Trainer card, show it to your opponent, and put it into your hand. Shuffle your deck afterward.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Psybeam", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", }, damage: 20 }], weaknesses: [{ type: Type.PSYCHIC, value: "+20" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Mysterious Treasures", code: "dp2" } } export default card