import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Tangrowth", }, illustrator: "Kagemaru Himeno", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 465, ], hp: 120, types: [ "Grass", ], evolveFrom: { en: "Tangela", }, stage: "Stage1", attacks: [ { cost: [ "Grass", ], name: { en: "Bind Down", }, effect: { en: "The Defending Pokémon can't retreat during your opponent's next turn.", }, damage: 30, }, { cost: [ "Grass", "Grass", "Colorless", "Colorless", ], name: { en: "Flog", }, effect: { en: "Flip a coin. If heads, this attack does 30 more damage.", }, damage: 60, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Water", value: "-20" }, ], retreat: 4 } export default card