import { Card } from '../../../interfaces' import Set from '../Delta Species' const card: Card = { name: { en: "Dratini δ", }, illustrator: "Mitsuhiro Arita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 147, ], hp: 50, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Thunder Wave", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 10, }, ], weaknesses: [ { type: "Colorless", value: "×2" }, ], resistances: [ { type: "Grass", value: "-30" }, { type: "Fighting", value: "-30" }, ], } export default card