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: "gym2-85", localId: 85, // Card informations name: { en: "Lt. Surge's Rattata", }, hp: 30, type: [ Type.COLORLESS, ], dexId: 19, image: { low: { en: "https://assets.tcgdex.net/en/gym/gym2/85/low", }, high: { en: "https://assets.tcgdex.net/en/gym/gym2/85/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Atsuko Nishida", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Focus Energy", }, text: { en: "During your next turn, Lt. Surge's Rattata's Quick Attack's base damage is doubled.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Quick Attack", }, text: { en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage; if tails this attack does 10 damage.", }, damage: 10 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Gym Challenge", code: "gym2" } } export default card