mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-29 11:09:51 +00:00
Finished Complete Rework of the Database
This commit is contained in:
64
data/XY/Phantom Forces/35.ts
Normal file
64
data/XY/Phantom Forces/35.ts
Normal file
@ -0,0 +1,64 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Phantom Forces'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "M Gengar-EX",
|
||||
fr: "M-Ectoplasma-EX",
|
||||
},
|
||||
illustrator: "5ban Graphics",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
94,
|
||||
],
|
||||
hp: 220,
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Gengar-EX",
|
||||
fr: "Ectoplasma-EX",
|
||||
},
|
||||
stage: "MEGA",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Phantom Gate",
|
||||
fr: "Miroir Miroir",
|
||||
},
|
||||
effect: {
|
||||
en: "Choose 1 of your opponent's Pokémon's attacks and use it as this attack.",
|
||||
fr: "Choisissez l'une des attaques des Pokémon de votre adversaire et utilisez-la en tant que cette attaque.",
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Darkness",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user