1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 01:19:54 +00:00

32 lines
410 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Swanna"
},
illustrator: "sui",
category: "Pokemon",
hp: 90,
types: ["Water"],
stage: "Stage1",
attacks: [{
cost: ["Colorless", "Colorless", "Colorless"],
name: {
en: "Wing Attack"
},
damage: "70"
}],
retreat: 1,
rarity: "Two Diamond"
}
export default card