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: "sm8-156", localId: 156, // Card informations name: { en: "Stantler", fr: "Cerfrousse", }, hp: 110, type: [ Type.COLORLESS, ], dexId: 234, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm8/156/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm8/156/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm8/156/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm8/156/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 2, name: "Midori Harada" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Mystifying Horns", fr: "Mysti-Cornes", }, text: { en: "Your opponent's Active Pokémon is now Confused.", fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Enhanced Horns", fr: "Cornes Améliorées", }, text: { en: "If this Pokémon has a Pokémon Tool card attached to it, this attack does 60 more damage.", fr: "Si une carte Outil Pokémon est attachée à ce Pokémon, cette attaque inflige 60 dégâts supplémentaires.", }, damage: 20 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 2, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Lost Thunder", code: "sm8" } } export default card