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: "hgssp-HGSS02", localId: "HGSS02", // Card informations name: { en: "Lugia", }, hp: 90, type: [ Type.WATER, ], dexId: 249, image: { low: { en: "https://assets.tcgdex.net/en/hgss/hsp/HGSS02/low.png", }, high: { en: "https://assets.tcgdex.net/en/hgss/hsp/HGSS02/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 68, name: "Takashi Yamaguchi" }, attacks: [{ cost: [ Type.WATER ], name: { en: "Wave Splash", }, damage: 20 },{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Aeroblast", }, text: { en: "Flip 2 coins. This attack does 50 damage plus 20 more damage for each heads.", }, damage: 50 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "HGSS Black Star Promos", code: "hgssp" } } export default card