import { Card } from '../../../interfaces' import Set from '../Unified Minds' const card: Card = { name: { en: "Steelix", fr: "Steelix", }, illustrator: "Ayaka Yoshida", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 208, ], hp: 170, types: [ "Fighting", ], evolveFrom: { en: "Onix", fr: "Onix", }, stage: "Stage1", attacks: [ { cost: [ "Fighting", ], name: { en: "Ground Stream", fr: "Ruisseau Terrestre", }, effect: { en: "Attach 2 Fighting Energy cards from your discard pile to this Pokémon.", fr: "Attachez 2 cartes Énergie Fighting de votre pile de défausse à ce Pokémon.", }, damage: 20, }, { cost: [ "Fighting", "Colorless", "Colorless", "Colorless", "Colorless", ], name: { en: "Gigaton Shake", fr: "Secousse Gigatonne", }, effect: { en: "During your next turn, your Pokémon can't attack. (This includes Pokémon that come into play on that turn.)", fr: "Pendant votre prochain tour, vos Pokémon ne peuvent pas attaquer. (Cela comprend les Pokémon qui sont mis en jeu pendant ce tour.)", }, damage: 220, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 4, } export default card