mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
Finished Complete Rework of the Database
This commit is contained in:
68
data/Sun & Moon/Cosmic Eclipse/164.ts
Normal file
68
data/Sun & Moon/Cosmic Eclipse/164.ts
Normal file
@ -0,0 +1,68 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Cosmic Eclipse'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Ultra Necrozma",
|
||||
fr: "Ultra-Necrozma",
|
||||
},
|
||||
illustrator: "Hasuno",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
800,
|
||||
],
|
||||
hp: 110,
|
||||
types: [
|
||||
"Dragon",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Ability",
|
||||
name: {
|
||||
en: "Ultra Burst",
|
||||
fr: "Ultra-Explosion",
|
||||
},
|
||||
effect: {
|
||||
en: "This Pokémon can't attack unless your opponent has 2 or fewer Prize cards remaining.",
|
||||
fr: "Ce Pokémon ne peut pas attaquer, à moins qu’il ne reste 2 cartes Récompense ou moins à votre adversaire.",
|
||||
},
|
||||
},
|
||||
],
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
"Metal",
|
||||
],
|
||||
name: {
|
||||
en: "Luster of Downfall",
|
||||
fr: "Éclat de Déchéance",
|
||||
},
|
||||
effect: {
|
||||
en: "Discard an Energy from your opponent's Active Pokémon.",
|
||||
fr: "Défaussez une Énergie du Pokémon Actif de votre adversaire.",
|
||||
},
|
||||
damage: 170,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fairy",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user