Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enhancement: Add the list of products that were marketed with the set #503

Open
1 of 5 tasks
Aviortheking opened this issue Jun 27, 2024 · 0 comments
Open
1 of 5 tasks
Labels
enhancement New feature or request

Comments

@Aviortheking
Copy link
Member

Data affected

  • Card
  • Set
  • Serie
  • Other
  • new Data Type

Please explain in more details what idea you have

example from https://tcg.pokemon.com/en-us/expansions/scarlet-violet/#featured-products

it includes some informations :

  • name: the product official name
  • price: not sure about this one, price is highly dependant on vendor and/or location
  • category: the product category
  • images: the images associated with the product

There might be other intersting informations to register about them but hard to standardize like the number of boosters, cards and additional elements sold in it

interface Product {
	name: string
    // Price of the product in cents (Integer, ex: 12€ is 1200) 
    price?: Language<number>
	category: 'Elite Trainer Box' | 'Build & Battle Box' | 'Build & Battle Stadium' | 'Booster Box' | 'Booster Bundle'
    images?: Array<{
        url: string
        background: 'transparent' | 'light' | 'dark'
    }>
}

I'll have to start something before it get lost to time.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
Status: No status
Development

No branches or pull requests

1 participant