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:
48
data/Pokémon TCG Pocket/Promos-A/081.ts
Normal file
48
data/Pokémon TCG Pocket/Promos-A/081.ts
Normal 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
|
Reference in New Issue
Block a user