1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-20 07:09:54 +00:00
Khaleeq Ahmad a597759d9d
fix: Pocket card data fixes (#659)
Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
2025-02-19 21:52:42 +01:00

39 lines
579 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Dragonair"
},
illustrator: "kirisAki",
category: "Pokemon",
hp: 100,
types: ["Dragon"],
stage: "Stage1",
evolveFrom: {
en: "Dratini"
},
attacks: [{
cost: ["Water", "Lightning", "Colorless"],
name: {
en: "Tail Smack"
},
damage: "80"
}],
retreat: 1,
rarity: "Two Diamond",
description: {
en: "They say that if it emits an aura from its whole body, the weather will begin to change instantly.",
}
}
export default card