mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
* 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>
34 lines
849 B
TypeScript
34 lines
849 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Fates Collide'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Power Memory",
|
|
fr: "Puissante Mémoire",
|
|
},
|
|
illustrator: "5ban Graphics",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "Le Zygarde-EX auquel cette carte est attachée peut aussi utiliser l'attaque sur cette carte. (Vous avez toujours besoin de l'Énergie nécessaire pour utiliser cette attaque.)\n\nBrûlure Polycellule FightingFightingColorless 200\nDéfaussez 3 Énergies attachées à ce Pokémon.",
|
|
en: "The Zygarde-EX this card is attached to can also use the attack on this card. (You still need the necessary Energy to use this attack.)\n\nAll Cells Burn FightingFightingColorless 200\nDiscard 3 Energy attached to this Pokémon."
|
|
},
|
|
trainerType: "Tool",
|
|
|
|
}
|
|
|
|
export default card
|