import { Card } from '../../../interfaces' import Set from '../Dragon Frontiers' const card: Card = { name: { en: "Dragonair δ", }, illustrator: "Kouki Saitou", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 148, ], hp: 70, types: [ "Grass", ], evolveFrom: { en: "Dratini", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Wrap", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, }, { cost: [ "Grass", "Colorless", "Colorless", ], name: { en: "Horn Attack", }, damage: 40, }, ], } export default card