1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

62 lines
680 B
TypeScript

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