mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
31 lines
316 B
TypeScript
31 lines
316 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Generations'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Metal Energy",
|
|
fr: "Énergie Metal de base",
|
|
},
|
|
illustrator: undefined,
|
|
rarity: "Common",
|
|
category: "Energy",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
energyType: "Normal",
|
|
}
|
|
|
|
export default card
|