mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* fix: Add E-Card French Translations Signed-off-by: Avior <github@avior.me> * fix: Fixed Cards without rarity Signed-off-by: Avior <florian.bouillon@delta-wings.net>
21 lines
402 B
TypeScript
21 lines
402 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Aquapolis'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Energy Switch",
|
|
fr: "Échange d'énergie"
|
|
},
|
|
|
|
illustrator: "Mikio Menjo",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
|
|
effect: {
|
|
fr: "Prenez une carte Énergie de base attachée à l'un de vos Pokémon et attachez-la à un autre de vos Pokémon."
|
|
}
|
|
}
|
|
|
|
export default card
|