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,49 @@
import { Card } from "../../../interfaces"
import Set from "../Promos-A"
const card: Card = {
set: Set,
name: {
en: "Dawn Wings Necrozma",
es: "Necrozma Alas del Alba"
},
illustrator: "nagimiso",
rarity: "Three Diamond",
category: "Pokemon",
hp: 110,
types: ["Psychic"],
description: {
en: "Lunala no longer has a will of its own. Now under the\ncontrol of Necrozma, it continuously expels all of its energy.",
es: "En esta forma, Lunala no goza de voluntad propia. Necrozma\ntiene control absoluto y absorbe su energía poco a poco."
},
stage: "Basic",
attacks: [{
name: {
en: "Psychobilly",
es: "Psychobilly"
},
damage: 100,
cost: ["Psychic", "Colorless", "Colorless"],
effect: {
en: "This Pokémon also does 30 damage to itself.",
es: "Este Pokémon también se hace 30 puntos de daño a sí mismo."
}
}],
weaknesses: [{
type: "Darkness",
value: "+20"
}],
retreat: 2,
boosters: ["vol9"]
}
export default card