mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-03 08:02:10 +00:00
87 lines
1.5 KiB
TypeScript
87 lines
1.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Yellow A Alternate'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Drampa-GX",
|
||
fr: "Draïeul-GX",
|
||
},
|
||
illustrator: "5ban Graphics",
|
||
rarity: "Common",
|
||
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: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|