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: "sm6-30", localId: 30, // Card informations name: { en: "Avalugg", fr: "Séracrawl", }, hp: 140, type: [ Type.WATER, ], dexId: 713, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm6/30/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm6/30/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm6/30/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm6/30/high.png", }, }, evolveFrom: { en: "Bergmite", fr: "Grelaçon", }, tags: [ Tag.STAGE1, ], illustrator: { id: 96, name: "sowsow" }, attacks: [{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Frozen Ground", fr: "Terrain Gelé", }, text: { en: "Your opponent can't play any Stadium cards from their hand during their next turn.", fr: "Votre adversaire ne peut pas jouer de carte Stade de sa main pendant son prochain tour.", }, damage: 80 },{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Skull Bash", fr: "Coud’Krâne", }, damage: 100 }], weaknesses: [{ type: Type.METAL, value: "×2" }], retreat: 4, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Forbidden Light", code: "sm6" } } export default card