import { Card } from '../../../interfaces' import Set from '../Forbidden Light' const card: Card = { name: { en: "Gible", fr: "Griknot", }, illustrator: "Kyoko Umemoto", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 443, ], hp: 50, types: [ "Fighting", ], stage: "Basic", attacks: [ { cost: [ "Fighting", ], name: { en: "Ascension", fr: "Ascension", }, effect: { en: "Search your deck for a card that evolves from this Pokémon and put it onto this Pokémon to evolve it. Then, shuffle your deck.", fr: "Cherchez dans votre deck une carte Évolution de ce Pokémon et placez-la sur ce Pokémon pour le faire évoluer. Mélangez ensuite votre deck.", }, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, } export default card