1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 11:09:51 +00:00

feat: Start to add new decks

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-11-09 12:20:40 +01:00
parent 2d427e7ddf
commit 4908aeed8a
16 changed files with 201 additions and 4 deletions

View File

@ -0,0 +1,14 @@
import { Deck } from "../../../../interfaces"
import Set from "../../Base Set"
const deck: Deck = {
id: "td.base1.br",
name: {
en: "Brushfire"
},
set: Set,
typesFocus: ["Fire", "Grass"],
cards: []
}
export default deck