1
0
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:
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,83 @@
import { Card } from '../../../interfaces'
import Set from '../Unified Minds'
const card: Card = {
name: {
en: "Jirachi-GX",
fr: "Jirachi-GX",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
385,
],
hp: 160,
types: [
"Psychic",
],
suffix: "GX",
abilities: [
{
type: "Ability",
name: {
en: "Psychic Zone",
fr: "Zone Psy",
},
effect: {
en: "Don't apply Psychic Weakness when Pokémon (both yours and your opponent's) take damage from attacks.",
fr: "Nappliquez pas la Faiblesse Psychic lorsque les Pokémon (les vôtres et ceux de votre adversaire) subissent des dégâts dattaques.",
},
},
],
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Star Search",
fr: "Recherche Étoile",
},
effect: {
en: "Search your deck for an Energy card and attach it to 1 of your Psychic Pokémon. Then, shuffle your deck.",
fr: "Cherchez une carte Énergie dans votre deck et attachez-la à lun de vos Pokémon Psychic. Mélangez ensuite votre deck.",
},
},
{
cost: [
"Psychic",
"Psychic",
"Psychic",
],
name: {
en: "Star Shield-GX",
fr: "Bouclier Étoile-GX",
},
effect: {
en: "Prevent all effects of attacks, including damage, done to this Pokémon during your opponent's next turn. (You can't use more than 1 GX attack in a game.)",
fr: "Évitez tous les effets dattaques, y compris les dégâts, infligés à ce Pokémon pendant le prochain tour de votre adversaire. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 100,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card