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: "ex10-117", localId: 117, // Card informations name: { en: "Celebi ex", }, hp: 70, type: [ Type.GRASS, ], dexId: 251, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex10/117/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex10/117/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Ryo Ueda", attacks: [{ cost: [ Type.GRASS ], name: { en: "Spiral Leaf", }, text: { en: "Flip a coin. If heads, put 1 damage counter on each of your opponent's Pokemon. If tails, remove 1 damage country for each of your Pokémon.", }, },{ cost: [ Type.GRASS, Type.COLORLESS ], name: { en: "Time Trap", }, text: { en: "Flip a coin. If heads, look at the top 4 cards of your opponent's deck, and put them back on top of your opponent's deck in any order. If tails, look at the top 4 cards of your deck, and put them back on top of your deck in any order.", }, damage: 30 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Unseen Forces", code: "ex10" } } export default card