import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Octillery", }, illustrator: "Kouki Saitou", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 224, ], hp: 80, types: [ "Water", ], evolveFrom: { en: "Remoraid", }, stage: "Stage1", abilities: [ { type: "Poke-BODY", name: { en: "Suction Cups", }, effect: { en: "As long as Octillery is your Active Pokémon, whenever the Defending Pokémon retreats, discard all Energy cards attached to the Defending Pokémon when it goes to the Bench.", }, }, ], attacks: [ { cost: [ "Water", "Colorless", "Colorless", ], name: { en: "Smokescreen", }, effect: { en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.", }, damage: 40, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card