mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
16 lines
239 B
TypeScript
16 lines
239 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SVB"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
'zh-tw': "基本【鬥】能量"
|
|
},
|
|
|
|
category: "Energy",
|
|
energyType: "Special",
|
|
regulationMark: "G"
|
|
}
|
|
|
|
export default card |