import { Card } from '../../../interfaces' import Set from '../Base Set 2' const card: Card = { name: { en: "Tangela", }, illustrator: "Mitsuhiro Arita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 114, ], hp: 50, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Grass", "Colorless", ], name: { en: "Bind", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20, }, { cost: [ "Grass", "Grass", "Grass", ], name: { en: "Poisonpowder", }, effect: { en: "The Defending Pokémon is now Poisoned.", }, damage: 30, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card