mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
15 lines
215 B
TypeScript
15 lines
215 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SV2a"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
ja: "基本超エネルギー"
|
|
},
|
|
|
|
category: "Energy",
|
|
energyType: "Normal"
|
|
}
|
|
|
|
export default card |