1
0
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:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View 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 quil 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