import { Card } from '../../../interfaces' import Set from '../Team Rocket' const card: Card = { name: { en: "Dratini", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 147, ], hp: 40, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Wrap", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 10, }, ], resistances: [ { type: "Psychic", value: "-30" }, ], } export default card