1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 13:09:53 +00:00
TCGdex [Bot] 89e0b8d367
editor: fix some other rarities (#584)
Co-authored-by: Avior <git@avior.me>
2024-11-21 01:52:48 +01:00

43 lines
571 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Mewtwo ex"
},
category: "Pokemon",
hp: 150,
types: ["Psychic"],
stage: "Basic",
suffix: "EX",
attacks: [{
cost: ["Psychic", "Colorless"],
name: {
en: "Psychic Sphere"
},
damage: "50"
}, {
cost: ["Psychic", "Psychic", "Colorless", "Colorless"],
name: {
en: "Psydrive"
},
effect: {
en: "Discard 2 P Energy from this Pokémon."
},
damage: "150"
}],
retreat: 2,
rarity: "Crown"
}
export default card