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: "gym1-39", localId: 39, // Card informations name: { en: "Brock's Golbat", }, hp: 70, type: [ Type.GRASS, ], dexId: 42, image: { low: { en: "https://assets.tcgdex.net/en/gym/gym1/39/low.png", }, high: { en: "https://assets.tcgdex.net/en/gym/gym1/39/high.png", }, }, evolveFrom: { en: "Zubat", }, tags: [ Tag.STAGE1, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Dive", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Spiral Dive", }, text: { en: "Does 10 damage to each of your opponent's Pokémon. Don't apply Weakness and Resistance.", }, damage: 10 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-30" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Gym Heroes", code: "gym1" } } export default card