import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Natu", fr: "Natu" }, illustrator: "Naoyo Kimura", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Colorless", ], name: { en: "Me First", fr: "Moi d’Abord" }, effect: { en: "Draw a card.", fr: "Piochez une carte." }, }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], retreat: 1, hp: 60, types: ["Psychic"] } export default card