1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 18:09:19 +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,92 @@
import { Card } from '../../../interfaces'
import Set from '../Burning Shadows'
const card: Card = {
name: {
en: "Noivern-GX",
fr: "Bruyverne-GX",
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
715,
],
hp: 200,
types: [
"Dragon",
],
evolveFrom: {
en: "Noibat",
fr: "Sonistrelle",
},
suffix: "GX",
attacks: [
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Distort",
fr: "Torsion",
},
effect: {
en: "Your opponent can't play any Item cards from their hand during their next turn.",
fr: "Votre adversaire ne peut pas jouer de carte Objet de sa main pendant son prochain tour.",
},
damage: 50,
},
{
cost: [
"Psychic",
"Darkness",
"Colorless",
],
name: {
en: "Sonic Volume",
fr: "Volume Sonique",
},
effect: {
en: "Your opponent can't play any Special Energy cards from their hand during their next turn.",
fr: "Votre adversaire ne peut pas jouer de carte Énergie spéciale de sa main pendant son prochain tour.",
},
damage: 120,
},
{
cost: [
"Psychic",
"Darkness",
"Colorless",
],
name: {
en: "Boomburst-GX",
fr: "Bang Sonique-GX",
},
effect: {
en: "This attack does 50 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) (You can't use more than 1 GX attack in a game.)",
fr: "Cette attaque inflige 50 dégâts à chacun des Pokémon de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.) (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
},
],
weaknesses: [
{
type: "Fairy",
value: "×2"
},
],
}
export default card