import { Card } from '../../../interfaces' import Set from '../Team Rocket Returns' const card: Card = { name: { en: "Dark Steelix", }, illustrator: "Kyoko Koizumi", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 208, ], hp: 110, types: [ "Metal", "Darkness", ], evolveFrom: { en: "Onix", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Energy Link", }, effect: { en: "Search your discard pile for an Energy card and attach it to Dark Steelix.", }, damage: 20, }, { cost: [ "Fighting", "Colorless", "Colorless", "Colorless", ], name: { en: "Heavy Impact", }, damage: 60, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Grass", value: "-30" }, ], } export default card