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: "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: { id: 2, name: "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