import { Card } from '../../../interfaces' import Set from '../Burning Shadows' const card: Card = { name: { en: "Lycanroc", fr: "Lougaroc", }, illustrator: "Masakazu Fukuda", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 745, ], hp: 110, types: [ "Fighting", ], evolveFrom: { en: "Rockruff", fr: "Rocabot", }, stage: "Stage1", attacks: [ { cost: [ "Fighting", "Colorless", ], name: { en: "Rock Throw", fr: "Jet-Pierres", }, damage: 30, }, { cost: [ "Fighting", "Fighting", "Colorless", ], name: { en: "Accelerock", fr: "Vif Roc", }, damage: 100, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 2, } export default card