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: "sm4-48", localId: 48, // Card informations name: { en: "Oranguru", fr: "Gouroutan", }, hp: 110, type: [ Type.PSYCHIC, ], dexId: 765, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm4/48/low", fr: "https://assets.tcgdex.net/fr/sm/sm4/48/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm4/48/high", fr: "https://assets.tcgdex.net/fr/sm/sm4/48/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Yoshinobu Saito", attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Fixer of the Forest", fr: "Réparateur de la Forêt", }, text: { en: "Put 3 Pokémon Tool cards from your discard pile into your hand.", fr: "Ajoutez 3 cartes Outil Pokémon de votre pile de défausse à votre main.", }, },{ cost: [ Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Zen Headbutt", fr: "Psykoud’Boul", }, damage: 70 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 2, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Crimson Invasion", code: "sm4" } } export default card