mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
15 lines
234 B
TypeScript
15 lines
234 B
TypeScript
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
|