1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-10 16:01:59 +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,68 @@
import { Card } from '../../../interfaces'
import Set from '../Secret Wonders'
const card: Card = {
name: {
en: "Mew",
fr: "Mew",
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
151,
],
hp: 60,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
name: {
en: "Psychic Balance",
fr: "Équilibre psy",
},
effect: {
en: "If you have less cards in your hand than your opponent, draw cards until you have the same number of cards as your opponent. (If you have more or the same number of cards in your hand as your opponent, this attack does nothing.)",
fr: "Si vous avez moins de cartes en main que votre adversaire, piochez des cartes jusqu'à ce que vous en ayez autant que lui. (Si vous avez plus ou autant de cartes en main que votre adversaire, cette attaque est sans effet.)",
},
},
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Re-creation",
fr: "Re-création",
},
effect: {
en: "Choose an attack on 1 of your opponent's Pokémon in his or her discard pile. Re-creation copies that attack except for its Energy cost. (You must still do anything else required for that attack.) Mew performs that attack.",
fr: "Choisissez une attaque d'1 des Pokémon de votre adversaire se trouvant dans sa pile de défausse. Re-création copie cette attaque (sauf son Coût en Énergie). (Vous devez toujours faire ce qu'indique l'attaque.) Mew utilise cette attaque.",
},
},
],
weaknesses: [
{
type: "Psychic",
value: "+20"
},
],
retreat: 1,
}
export default card