import { Card } from '../../../interfaces' import Set from '../Celestial Storm' const card: Card = { name: { en: "Alolan Rattata", fr: "Rattata d’Alola", }, illustrator: "Shibuzoh.", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 19, ], hp: 40, types: [ "Darkness", ], stage: "Basic", attacks: [ { name: { en: "Call for the Boss", fr: "Appel au Boss", }, effect: { en: "Search your deck for Alolan Raticate or Alolan Raticate-GX, reveal it, and put it into your hand. Then, shuffle your deck.", fr: "Cherchez un Rattatac d’Alola ou un Rattatac d’Alola-GX dans votre deck, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Gnaw", fr: "Ronge", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 1, } export default card