1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00

36 lines
535 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Alakazam"
},
illustrator: "Akira Egawa",
category: "Pokemon",
hp: 130,
types: ["Psychic"],
stage: "Stage2",
attacks: [{
cost: ["Psychic", "Colorless", "Colorless"],
name: {
en: "Psychic"
},
effect: {
en: "This attack does 30 more damage for each Energy attached to your opponent's Active Pokémon."
},
damage: "60+"
}],
retreat: 2,
rarity: "One Star"
}
export default card