1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-03 21:02:02 +00:00

feat: Add Pocket promo cards 74 to 92 (#829)

This commit is contained in:
adresa97
2025-07-31 10:23:41 +02:00
committed by GitHub
parent 7c2a69711e
commit dba61e87e7
19 changed files with 938 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../Promos-A"
const card: Card = {
set: Set,
name: {
en: "Ultra Necrozma ex",
es: "Ultra-Necrozma ex"
},
illustrator: "PLANETA Tsuji",
rarity: "Four Diamond",
category: "Pokemon",
hp: 150,
types: ["Dragon"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
en: "Photon Claw",
es: "Garra Fotónica"
},
damage: 60,
cost: ["Colorless", "Colorless", "Colorless"]
},
{
name: {
en: "Shoegaze",
es: "Shoegaze"
},
damage: 120,
cost: ["Psychic", "Psychic", "Metal", "Metal"],
effect: {
en: "Discard the top 5 cards of each player's deck.",
es: "Descarta las 5 primeras cartas de la baraja de cada jugador."
}
}],
retreat: 2,
boosters: ["vol9"]
}
export default card