mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-20 07:09:54 +00:00
45 lines
610 B
TypeScript
45 lines
610 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Kirlia"
|
|
},
|
|
|
|
illustrator: "sowsow",
|
|
category: "Pokemon",
|
|
hp: 80,
|
|
types: ["Psychic"],
|
|
stage: "Stage1",
|
|
evolveFrom: {
|
|
en: "Ralts"
|
|
},
|
|
|
|
|
|
attacks: [{
|
|
cost: ["Psychic", "Colorless"],
|
|
|
|
name: {
|
|
en: "Smack"
|
|
},
|
|
|
|
damage: "30"
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Darkness",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1,
|
|
rarity: "Two Diamond",
|
|
|
|
description: {
|
|
en: "It has a psychic power that enables it to distort the space around it and see into the future.",
|
|
}
|
|
}
|
|
|
|
export default card
|