mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 23:02:09 +00:00
15 lines
240 B
TypeScript
15 lines
240 B
TypeScript
import { Deck } from "../../../../interfaces"
|
|
import Set from "../../Base Set 2"
|
|
|
|
const deck: Deck = {
|
|
id: "td.base4.lg",
|
|
name: {
|
|
en: "Lightning Bug"
|
|
},
|
|
set: Set,
|
|
typesFocus: ["Lightning", "Grass"],
|
|
cards: []
|
|
}
|
|
|
|
export default deck
|