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: "ex9-13", localId: 13, // Card informations name: { en: "Glalie", }, hp: 80, type: [ Type.WATER, ], dexId: 362, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex9/13/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex9/13/high.png", }, }, evolveFrom: { en: "Snorunt", }, tags: [ Tag.STAGE1, ], illustrator: { id: 32, name: "Atsuko Nishida" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Hailstone", }, text: { en: "This attack does 10 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", }, },{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Super Slash", }, text: { en: "If the Defending Pokémon is an Evolved Pokémon, this attack does 40 damage plus 20 more damage.", }, damage: 40 }], weaknesses: [{ type: Type.METAL, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Emerald", code: "ex9" } } export default card