1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-15 22:29: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 2"
const deck: Deck = {
id: "td.base4.gc",
name: {
en: "Grass Chopper"
},
set: Set,
typesFocus: ["Fighting", "Grass"],
cards: []
}
export default deck

View File

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

View File

@ -0,0 +1,14 @@
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

View File

@ -0,0 +1,14 @@
import { Deck } from "../../../../interfaces"
import Set from "../../Base Set 2"
const deck: Deck = {
id: "td.base4.po",
name: {
en: "Psych Out"
},
set: Set,
typesFocus: ["Psychic", "Water"],
cards: []
}
export default deck