mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
28 lines
343 B
TypeScript
28 lines
343 B
TypeScript
import Set from '../../interfaces/Set'
|
|
|
|
const set: Set = {
|
|
name: {
|
|
en: "Phantom Forces",
|
|
fr: "Vigueur Spectrale",
|
|
},
|
|
code: "xy4",
|
|
expansionCode: "xy",
|
|
tcgoCode: "PHF",
|
|
|
|
cardCount: {
|
|
total: 122,
|
|
official: 119
|
|
},
|
|
|
|
api: "4-xy",
|
|
|
|
releaseDate: "2014-11-05",
|
|
|
|
legal: {
|
|
standard: false,
|
|
expanded: true,
|
|
}
|
|
}
|
|
|
|
export default set
|