1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-12 21:05:10 +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 "../../Jungle"
const deck: Deck = {
id: "td.base2.pr",
name: {
en: "Power Reserve"
},
set: Set,
typesFocus: ["Psychic", "Grass"],
cards: []
}
export default deck

View File

@ -0,0 +1,14 @@
import { Deck } from "../../../../interfaces"
import Set from "../../Jungle"
const deck: Deck = {
id: "td.base2.wb",
name: {
en: "Water Blast"
},
set: Set,
typesFocus: ["Water", "Fighting"],
cards: []
}
export default deck