mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
33 lines
603 B
TypeScript
33 lines
603 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Stormfront'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Energy Link",
|
||
fr: "Energy Link [Pokémon Tool]",
|
||
},
|
||
illustrator: "Ryo Ueda",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Tant que Chaîne d’énergie est attachée à un Pokémon, vous pouvez déplacer une carte Énergie attachée à ce Pokémon sur un autre de vos Pokémon possédant Chaîne d’énergie. Vous pouvez utiliser cet effet autant de fois que vous le voulez lors de votre tour.",
|
||
},
|
||
trainerType: "Tool",
|
||
|
||
}
|
||
|
||
export default card
|