1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 5a42df5c5d
Fixed XY informations (#43)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Some more fixes

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* More updated :D

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Finished update in English

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Updated XY datas

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:15:14 +00:00

69 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Fates Collide'
const card: Card = {
name: {
en: "Mew",
fr: "Mew",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
151,
],
hp: 50,
types: [
"Psychic",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Memories of Dawn",
fr: "Souvenirs Originels",
},
effect: {
en: "This Pokémon can use the attacks of any of your Basic Pokémon in play. (You still need the necessary Energy to use each attack.)",
fr: "Ce Pokémon peut utiliser les attaques de n'importe lequel de vos Pokémon de base en jeu. (Vous avez toujours besoin de l'Énergie nécessaire pour utiliser chaque attaque.)",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Encounter",
fr: "Rencontre",
},
effect: {
en: "Search your deck for a Pokémon, reveal it, and put it into your hand. Shuffle your deck afterward.",
fr: "Cherchez un Pokémon dans votre deck, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck.",
},
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 0
}
export default card