1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon 4908aeed8a feat: Start to add new decks
Signed-off-by: Avior <github@avior.me>
2024-01-03 03:55:57 +01:00

15 lines
234 B
TypeScript

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