import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { dexId: [177], name: { en: "Natu", fr: "Natu", es: "Natu", it: "Natu", pt: "Natu", de: "Natu" }, illustrator: "Naoyo Kimura", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", ], name: { en: "Me First", fr: "Moi d'Abord", es: "Yo Primero", it: "Precedenza", pt: "Primeiro Eu", de: "Egotrip" }, effect: { en: "Draw a card.", fr: "Piochez une carte.", es: "Roba 1 carta.", it: "Pesca una carta.", pt: "Compre 1 carta.", de: "Ziehe 1 Karte." }, }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], retreat: 1, hp: 60, types: ["Psychic"], regulationMark: "D", variants: { normal: true, reverse: true, holo: false, firstEdition: false }, stage: "Basic", description: { en: "It is extremely good at climbing tree trunks and likes to eat the new sprouts on the trees." } } export default card