import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Tangela", }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 114, ], hp: 60, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Tickling Vines", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon can't attack during your opponent's next turn.", }, damage: 10, }, { cost: [ "Grass", "Colorless", "Colorless", ], name: { en: "Double Kick", }, effect: { en: "Flip 2 coins. This attack does 30 damage times the number of heads.", }, damage: 30, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Water", value: "-30" }, ], } export default card