import { Card } from '../../../interfaces' import Set from '../Lost Thunder' const card: Card = { name: { en: "Treecko", fr: "Arcko", }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 252, ], hp: 60, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Grass", ], name: { en: "Find a Friend", fr: "Trouver un Ami", }, effect: { en: "Search your deck for a Grass Pokémon, reveal it, and put it into your hand. Then, shuffle your deck.", fr: "Cherchez un Pokémon Grass dans votre deck, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck.", }, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 1, } export default card