mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 09:59:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
86
data/Sun & Moon/Guardians Rising/115.ts
Normal file
86
data/Sun & Moon/Guardians Rising/115.ts
Normal file
@ -0,0 +1,86 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Guardians Rising'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Drampa-GX",
|
||||
fr: "Draïeul-GX",
|
||||
},
|
||||
illustrator: "5ban Graphics",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
780,
|
||||
],
|
||||
hp: 180,
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
|
||||
suffix: "GX",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Righteous Edge",
|
||||
fr: "Lame Vertueuse",
|
||||
},
|
||||
effect: {
|
||||
en: "Discard a Special Energy from your opponent's Active Pokémon.",
|
||||
fr: "Défaussez une Énergie spéciale du Pokémon Actif de votre adversaire.",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Berserk",
|
||||
fr: "Dracolère",
|
||||
},
|
||||
effect: {
|
||||
en: "If your Benched Pokémon have any damage counters on them, this attack does 70 more damage.",
|
||||
fr: "Si des marqueurs de dégâts sont placés sur vos Pokémon de Banc, cette attaque inflige 70 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 80,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Big Wheel-GX",
|
||||
fr: "Grande Roue-GX",
|
||||
},
|
||||
effect: {
|
||||
en: "Shuffle your hand into your deck. Then, draw 10 cards. (You can't use more than 1 GX attack in a game.)",
|
||||
fr: "Mélangez votre main avec votre deck. Ensuite, piochez 10 cartes. (Vous ne pouvez utiliser qu’une attaque GX par partie.)",
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user