import { Card } from '../../../interfaces' import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Arbok δ", }, illustrator: "Hisao Nakamura", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 24, ], hp: 80, types: [ "Fire", ], evolveFrom: { en: "Ekans", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Burning Venom", }, effect: { en: "The Defending Pokémon is now Burned and Poisoned.", }, }, { cost: [ "Fire", "Fire", "Colorless", ], name: { en: "Strangle", }, effect: { en: "If the Defending Pokémon has δ on its card, this attack does 50 damage plus 30 more damage.", }, damage: 50, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card