1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-04 12:49:54 +00:00

34 lines
472 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Persian"
},
category: "Pokemon",
hp: 90,
types: ["Colorless"],
stage: "Stage1",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
en: "Shadow Claw"
},
effect: {
en: "Flip a coin. If heads, discard a random card from your opponent's hand."
},
damage: "40"
}],
retreat: 1,
rarity: "None"
}
export default card