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: "sm7-105", localId: 105, // Card informations name: { en: "Shelgon", fr: "Drackhaus", }, hp: 90, type: [ Type.DRAGON, ], dexId: 372, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm7/105/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm7/105/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm7/105/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm7/105/high.png", }, }, evolveFrom: { en: "Bagon", fr: "Draby", }, tags: [ Tag.STAGE1, ], illustrator: { id: 115, name: "Asako Ito" }, attacks: [{ cost: [ Type.FIRE, Type.WATER ], name: { en: "Raging Blade", fr: "Lame en Furie", }, text: { en: "If this Pokémon has any damage counters on it, this attack does 50 more damage.", fr: "Si des marqueurs de dégâts sont placés sur ce Pokémon, cette attaque inflige 50 dégâts supplémentaires.", }, damage: 30 }], weaknesses: [{ type: Type.FAIRY, value: "×2" }], retreat: 3, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Celestial Storm", code: "sm7" } } export default card