mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-04 05:11:58 +00:00
feat: Add Pocket promo cards 74 to 92 (#829)
This commit is contained in:
49
data/Pokémon TCG Pocket/Promos-A/079.ts
Normal file
49
data/Pokémon TCG Pocket/Promos-A/079.ts
Normal file
@@ -0,0 +1,49 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Promos-A"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Dusk Mane Necrozma",
|
||||
es: "Necrozma Melena Crepuscular"
|
||||
},
|
||||
|
||||
illustrator: "nagimiso",
|
||||
rarity: "Three Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Metal"],
|
||||
|
||||
description: {
|
||||
en: "This is its form while it is devouring the light of\nSolgaleo. It pounces on foes and then slashes\nthem with the claws on its four limbs and back.",
|
||||
es: "Forma que adopta tras alimentarse de la luz de Solgaleo.\nSe lanza sobre su oponente y lo desgarra sin piedad."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Black Metal",
|
||||
es: "Black Metal"
|
||||
},
|
||||
|
||||
damage: 100,
|
||||
cost: ["Metal", "Colorless", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Discard a {M} Energy from this Pokémon.",
|
||||
es: "Descarta 1 Energía {M} de este Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
boosters: ["vol9"]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user