import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Larvitar", }, illustrator: "Sanosuke Sakuma", rarity: "Common", category: "Pokemon", set: Set, hp: 70, types: [ "Fighting", ], attacks: [ { cost: [ "Fighting", ], name: { en: "Sand Spray", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Pierce", }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, } export default card