1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 01:49: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,88 @@
import { Card } from '../../../interfaces'
import Set from '../Shining Legends'
const card: Card = {
name: {
en: "Mewtwo-GX",
fr: "Mewtwo-GX",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
150,
],
hp: 190,
types: [
"Psychic",
],
suffix: "GX",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Full Burst",
fr: "Pleine Puissance",
},
effect: {
en: "This attack does 30 damage times the amount of Energy attached to this Pokémon.",
fr: "Cette attaque inflige 30 dégâts multipliés par le nombre dÉnergies attachées à ce Pokémon.",
},
damage: 30,
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Super Absorption",
fr: "Super Absorption",
},
effect: {
en: "Heal 30 damage from this Pokémon.",
fr: "Soignez 30 dégâts à ce Pokémon.",
},
damage: 60,
},
{
cost: [
"Psychic",
"Psychic",
"Psychic",
],
name: {
en: "Psystrike-GX",
fr: "Frappe Psy-GX",
},
effect: {
en: "This attack's damage isn't affected by any effects on your opponent's Active Pokémon. (You can't use more than 1 GX attack in a game.)",
fr: "Les dégâts de cette attaque ne sont affectés par aucun effet en action sur le Pokémon Actif de votre adversaire. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 200,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card