import { Card } from '../../../interfaces' import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Seadra δ", }, illustrator: "Hisao Nakamura", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 117, ], hp: 70, types: [ "Fighting", ], evolveFrom: { en: "Horsea", }, stage: "Stage1", attacks: [ { cost: [ "Fighting", "Colorless", ], name: { en: "Ram", }, damage: 20, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Extra Ball", }, effect: { en: "If the Defending Pokémon is Pokémon-ex, this attack does 30 damage plus 30 more damage.", }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card