import { Card } from '../../../interfaces' import Set from '../Legend Maker' const card: Card = { name: { en: "Wurmple", }, illustrator: "Yukiko Baba", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 265, ], hp: 50, types: [ "Grass", ], stage: "Basic", abilities: [ { type: "Poke-BODY", name: { en: "Poison Payback", }, effect: { en: "If Wurmple is your Active Pokémon and is damaged by an opponent's attack (even if Wurmple is Knocked Out), the Attacking Pokémon is now Poisoned.", }, }, ], attacks: [ { cost: [ "Colorless", ], name: { en: "String Pull", }, effect: { en: "Switch 1 of your opponent's Benched Pokémon with 1 of the Defending Pokémon. Your opponent chooses the Defending Pokémon to switch.", }, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card