mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-24 04:49:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
75
data/Black & White/Plasma Blast/99.ts
Normal file
75
data/Black & White/Plasma Blast/99.ts
Normal file
@ -0,0 +1,75 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Plasma Blast'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Dialga-EX",
|
||||
fr: "Dialga ex",
|
||||
},
|
||||
illustrator: "5ban Graphics",
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
483,
|
||||
],
|
||||
hp: 180,
|
||||
types: [
|
||||
"Dragon",
|
||||
],
|
||||
|
||||
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
"Metal",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Reverse Edge",
|
||||
fr: "Revers-Lame",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, put a card from your discard pile into your hand.",
|
||||
fr: "Lancez une pièce. Si c'est face, ajoutez une carte de votre pile de défausse à votre main.",
|
||||
},
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Fast Forward",
|
||||
fr: "Avance Rapide",
|
||||
},
|
||||
effect: {
|
||||
en: "For each Plasma Energy attached to this Pokémon, discard the top card of your opponent's deck.",
|
||||
fr: "Pour chaque Énergie Plasma attachée à ce Pokémon, défaussez la carte du dessus du deck de votre adversaire.",
|
||||
},
|
||||
damage: 90,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Dragon",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user