1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 20:01:58 +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 "../../Fossil"
const deck: Deck = {
id: "td.base1.bd",
name: {
en: "BodyGuard"
},
set: Set,
typesFocus: ["Grass", "Fighting"],
cards: []
}
export default deck

View File

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