import { Card } from '../../../interfaces' import Set from '../Majestic Dawn' const card: Card = { name: { en: "Turtwig", fr: "Tortipouss", de: "Chelast" }, illustrator: "Daisuke Ito", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 387, ], hp: 60, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Rollout", fr: "Roulade", de: "Walzer" }, damage: 10, }, { cost: [ "Grass", "Colorless", ], name: { en: "Razor Leaf", fr: "Tranch'herbe", de: "Rasierblatt" }, damage: 30, }, ], weaknesses: [ { type: "Fire", value: "+10" }, ], resistances: [ { type: "Water", value: "-20" }, ], retreat: 2, } export default card