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: "ecard3-58", localId: 58, // Card informations name: { en: "Girafarig", }, hp: 60, type: [ Type.PSYCHIC, ], dexId: 203, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard3/58/low.png", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard3/58/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 22, name: "Yukiko Baba" }, attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Energy Patch", }, text: { en: "Take a basic Energy card attached to 1 of your Pokémon and attach it to another of your Pokémon.", }, },{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Syncroblast", }, text: { en: "If Girafarig and the Defending Pokémon don't have the same number of Energy cards attached to them, this attack's base damage is 10 instead of 40.", }, }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Skyridge", code: "ecard3" } } export default card