mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
23 lines
380 B
TypeScript
23 lines
380 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Legend Maker'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "React Energy",
|
|
fr: "Énergie réaction",
|
|
de: "Reaktions-Energie"
|
|
},
|
|
|
|
illustrator: "Takumi Akabane",
|
|
rarity: "Uncommon",
|
|
category: "Energy",
|
|
set: Set,
|
|
energyType: "Special",
|
|
|
|
effect: {
|
|
de: "Reaktions-Energie liefert Energie."
|
|
}
|
|
}
|
|
|
|
export default card
|