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: "sm3-75", localId: 75, // Card informations name: { en: "Lycanroc", fr: "Lougaroc", }, hp: 110, type: [ Type.FIGHTING, ], dexId: 745, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm3/75/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm3/75/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm3/75/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm3/75/high.png", }, }, evolveFrom: { en: "Rockruff", fr: "Rocabot", }, tags: [ Tag.STAGE1, ], illustrator: { id: 19, name: "Shin Nagasawa" }, attacks: [{ cost: [ Type.FIGHTING ], name: { en: "Dangerous Claws", fr: "Griffes Redoutables", }, text: { en: "If your opponent's Active Pokémon is a Basic Pokémon, this attack does 30 more damage.", fr: "Si le Pokémon Actif de votre adversaire est un Pokémon de base, cette attaque inflige 30 dégâts supplémentaires.", }, damage: 30 },{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Corner", fr: "Coinçage", }, text: { en: "The Defending Pokémon can't retreat during your opponent's next turn.", fr: "Le Pokémon Défenseur ne peut pas battre en retraite pendant le prochain tour de votre adversaire.", }, damage: 90 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 2, rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Burning Shadows", code: "sm3" } } export default card