mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
15 lines
239 B
TypeScript
15 lines
239 B
TypeScript
import { Deck } from "../../../../interfaces"
|
|
import Set from "../../Base Set 2"
|
|
|
|
const deck: Deck = {
|
|
id: "td.base4.gc",
|
|
name: {
|
|
en: "Grass Chopper"
|
|
},
|
|
set: Set,
|
|
typesFocus: ["Fighting", "Grass"],
|
|
cards: []
|
|
}
|
|
|
|
export default deck
|