import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Rowlet", }, illustrator: "5ban Graphics", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 722, ], hp: 60, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tackle", }, damage: 10, }, { cost: [ "Grass", "Colorless", ], name: { en: "Leafage", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card