mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
18 lines
332 B
TypeScript
18 lines
332 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SVAM"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
'zh-tw': "基本【草】能量",
|
|
th: "พลังงานพื้นฐาน[หญ้า]",
|
|
id: "Energi Dasar Daun"
|
|
},
|
|
|
|
category: "Energy",
|
|
energyType: "Normal",
|
|
regulationMark: "G"
|
|
}
|
|
|
|
export default card |