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: "gym2-53", localId: 53, // Card informations name: { en: "Lt. Surge's Raticate", }, hp: 60, type: [ Type.COLORLESS, ], dexId: 20, image: { low: { en: "https://assets.tcgdex.net/en/gym/gym2/53/low.png", }, high: { en: "https://assets.tcgdex.net/en/gym/gym2/53/high.png", }, }, evolveFrom: { en: "Rattata", }, tags: [ Tag.STAGE1, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Focus Energy", }, text: { en: "During your next turn, Lt. Surge's Raticate's Double", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Double-edge", }, text: { en: "Lt. Surge's Raticate does 20 damage to itself.", }, damage: 40 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Gym Challenge", code: "gym2" } } export default card