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>
31 lines
307 B
TypeScript
31 lines
307 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Aquapolis'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Warp Energy",
|
|
fr: "Énergie de distorsion"
|
|
},
|
|
illustrator: "Keiji Kinebuchi",
|
|
rarity: "Uncommon",
|
|
category: "Energy",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
energyType: "Special",
|
|
}
|
|
|
|
export default card
|