import { Card } from '../../../interfaces' import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Seadra δ", fr: "Hypocéan δ ESPÈCES DELTA" }, 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", fr: "Collision" }, damage: 20, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Extra Ball", fr: "Boule supplémentaire" }, effect: { en: "If the Defending Pokémon is Pokémon-ex, this attack does 30 damage plus 30 more damage.", fr: "Si le Pokémon Défenseur est un Pokémon-ex, cette attaque inflige 30 dégâts plus 30 dégâts supplémentaires." }, damage: "30+", }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card