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,80 @@
import { Card } from '../../../interfaces'
import Set from '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Naganadel & Guzzlord-GX",
fr: "Mandrillon et Engloutyran-GX",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
799,
],
hp: 280,
types: [
"Dragon",
],
suffix: "TAG TEAM-GX",
abilities: [
{
type: "Ability",
name: {
en: "Violent Appetite",
fr: "Appétit Insatiable",
},
effect: {
en: "Once during your turn (before your attack), you may discard a Pokémon from your hand. If you do, heal 60 damage from this Pokémon.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez défausser un Pokémon de votre main. Dans ce cas, soignez 60 dégâts à ce Pokémon.",
},
},
],
attacks: [
{
cost: [
"Psychic",
"Darkness",
"Colorless",
],
name: {
en: "Jet Pierce",
fr: "Jet Perçant",
},
damage: 180,
},
{
cost: [
"Colorless",
],
name: {
en: "Chaotic Order-GX",
fr: "Ordre Chaotique-GX",
},
effect: {
en: "Turn all of your Prize cards face up. (Those Prize cards remain face up for the rest of the game.) If this Pokémon has at least 1 extra Psychic Energy and 1 extra Darkness Energy attached to it (in addition to this attack's cost), take 2 Prize cards. (You can't use more than 1 GX attack in a game.)",
fr: "Tournez toutes vos cartes Récompense face découverte. (Ces cartes Récompense restent face découverte pour le reste de la partie.) Si au moins une Énergie Psychic supplémentaire et une Énergie Darkness supplémentaire sont attachées à ce Pokémon (en plus du coût de cette attaque), récupérez 2 cartes Récompense. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
},
],
weaknesses: [
{
type: "Fairy",
value: "×2"
},
],
retreat: 3,
}
export default card