Classic Collectors Pack (2024)

-->

Brand

Title

Frasers+ Price

Price RRP Ticket

Brand

Title

Frasers Plus Price £0.00

Price RRP Ticket

Brand

Title

Frasers Plus Price £0.00

Price RRP Ticket

Brand

Title

Frasers Plus Price £0.00

Price RRP Ticket

Brand

Title

Frasers+ Price

Price RRP Ticket

Brand

Title

Frasers Plus Price £0.00

Price RRP Ticket

Brand

Title

Frasers Plus Price £0.00

Price RRP Ticket

Brand

Title

Frasers Plus Price £0.00

Price RRP Ticket

` window.addEventListener("load", () => { const pathName = window.location.pathname; switch (pathName) { case "/": callToFunctionToCreateBanner("game_production_recent", ['TOPNEWRELEASES'], '#cms-home-placement-6', ['New In']); break; case "/playstation": callToFunctionToCreateBanner("game_production_recent", ['PS5GAMES', 'PS4GAMES'], '#section-3', ['PS5 Games', 'PS4 Games']); break; case "/xbox": callToFunctionToCreateBanner("game_production_recent", ['XSXGAMES', 'XBOGAMES'], '#section-3', ['Xbox Series X Games', 'Xbox One Games']); break; case "/nintendo": callToFunctionToCreateBanner("game_production_recent", ['NINGAMES'], '#section-3', ['Nintendo Switch Games']); break; case "/pc-gaming": callToFunctionToCreateBanner("game_production_recent", ['PCGAMES'], '#section-3', ['PC Games']); break; case "/tech": callToFunctionToCreateBanner("game_production_recent", ['TOPTECH'], '#section-3', ['New In']); break; case "/toys": callToFunctionToCreateBanner("game_production_recent", ['TOPTOYS'], '#section-3', ['New In']); break; default: console.log('No matching path found for:', pathName); break; } }); function callToFunctionToCreateBanner(algoliaIndex, categories, target, tabTitles) { // Logic to create and return a banner element based on the algoliaIndex and categories const bannerElement = document.createElement('div'); bannerElement.className = 'banner'; bannerElement.innerHTML = placementHTML; document.querySelector(`${target}`).insertAdjacentElement('afterend', bannerElement); waitForElm('.gameHomepageTopContain').then((elm) => { setupSwipers(algoliaIndex, categories, tabTitles); }); } function setupSwipers(algoliaIndex, categories, tabTitles) { const tabbedBlockContainer = document.querySelector(".tabbedSwiperSection"); const client = algoliasearch( "NZYLS8C2VS", "fc425591291edf8a4c5d63bf24fe1616" ); const index = client.initIndex(`${algoliaIndex}`); const currencyFormatter = Intl.NumberFormat("en-gb", { style: "currency", currency: "GBP", minimumFractionDigits: 2, maximumFractionDigits: 2, }); function setNoProducts() { tabbedBlockContainer.classList.add("no-products"); } initProductSwipers(categories); handleSwiperTabChange(); function getAlgoliaResults(category, tabIndex) { return index.search("", { filters: `categories.code: ${category} AND isHidden:false AND hasInventory:true`, getRankingInfo: true, attributesToRetrieve: [ "hasInventory", "colourVariantID", "mainImage", "name", "brand", "productNameWithoutBrand", "ticketPrice", "sellingPrice", "memberPrice", "categories", ], hitsPerPage: 8, }) .then(({ hits }) => { const products = hits.filter((x) => x != null && x.hasInventory); const ProductsSwiperContainer = tabbedBlockContainer.querySelector(`.swiperContainerTabbedSwiperListTab${tabIndex + 1} .swiper-wrapper`); let tabEl = null; const tabTitleEls = document.querySelectorAll('.tabbedSwiperListWrapper button'); const tabTitleEl = tabTitleEls[tabIndex]; tabTitleEl.innerHTML = tabTitles[tabIndex]; if (products.length > 0) { tabTitleEl.classList.toggle('hidden', false); updateProductSwiperProducts(products, ProductsSwiperContainer); } }); } Promise.all(categories.map((cat, tabIndex) => getAlgoliaResults(cat, tabIndex) )).then(()=>{ const firstVisibleTabEl = document.querySelector('.tabbedSwiperListBtn:not(.hidden)'); const firstVisibleTabContentEl = document.querySelector(`#${firstVisibleTabEl.id}-content`); firstVisibleTabEl.classList.add('active'); firstVisibleTabEl.ariaSelected = 'true'; firstVisibleTabContentEl.classList.add('activeTab'); }); function initProductSwipers(categories) { categories.forEach((cat, tabIndex) => { new Swiper(`.swiperContainerTabbedSwiperListTab${tabIndex + 1}`, { observer: true, slidesPerView: 2.2, spaceBetween: 24, navigation: { nextEl: `.swiperContainerTabbedSwiperListTab${tabIndex + 1} .swiper-button-next`, prevEl: `.swiperContainerTabbedSwiperListTab${tabIndex + 1} .swiper-button-prev`, }, scrollbar: { el: `.swiperContainerTabbedSwiperListTab${tabIndex + 1} .swiper-scrollbar`, draggable: true, }, loop: false, freeMode: true, breakpoints: { 1300: { slidesPerView: 4.2, spaceBetween: 40, }, 768: { slidesPerView: 4.2, }, 425: { slidesPerView: 2.2, }, }, }); }); } function updateProductSwiperProducts(products, swiperTab) { let productsHtml = ""; products.forEach((product) => { const template = tabbedBlockContainer.querySelector(".swiper-slide.is-template").cloneNode(true); template.classList.remove("is-template"); template.setAttribute( "href", `/${encodeURIComponent(product.name.replaceAll(" ", "-"))}-${product._highlightResult.productId.value }#colcode=${product.colourVariantID}` ); template.querySelector( ".slide-image" ).innerHTML = `Classic Collectors Pack (12)`; template.querySelector(".slide-brand").innerHTML = product.brand; if (product.name.includes(product.brand)) { template.querySelector(".slide-title").innerHTML = product.name.replace(product.brand, '').trim(); } else { template.querySelector(".slide-title").innerHTML = product.name; } if (product.memberPrice) { template.querySelector( ".slide-frasers-plus-price span" ).innerHTML = `Frasers Plus Price ${currencyFormatter.format( product.memberPrice )}`; } template.querySelector(".slide-price .list-price").innerHTML = currencyFormatter.format(product.sellingPrice); template.querySelector(".slide-price .ticket-price").innerHTML = currencyFormatter.format(product.ticketPrice); if(product.sellingPrice > 0 && product.ticketPrice > 0 && product.sellingPrice !== product.ticketPrice) { template.querySelector(".slide-price .list-price").classList.add('sale-price'); } if (product.priceLabel != null) { template.querySelector( ".slide-price .additional-price-label" ).innerHTML = product.priceLabel; } else { template.querySelector( ".slide-price .additional-price-label" ).style.display = "none"; } if (product.sellingPrice === product.ticketPrice) { template.querySelector(".slide-price .ticket-price").style.display = "none"; } if (product._highlightResult.sashName && product._highlightResult.sashName.value === "PreOrder" ) { template.querySelector(".shop-now-button-text").innerHTML = "Pre-Order Now"; } else { template.querySelector(".shop-now-button-text").innerHTML = "Shop Now"; } productsHtml += template.outerHTML; }); swiperTab.innerHTML = productsHtml; } }

Wish List 0

My Wish List

Colour:

This product will be delivered by , and may arrive separately to other items in your basket.

Personalised:

: ( x )

Personalisation:

Edit

Remove Personalisation

Price:

Total:

;

We'll hold your wish list for 30 days.
Sign in to sync your wish list across all your devices.

Sign In View Wish List

Checkout

Bag is empty

Bag items: Basket Checkout total:

Classic Collectors Pack (14)

My Bag

Hurry! Items in bag aren't reserved!

Don't miss out and checkout now!

Colour:

This product will be delivered by , and may arrive separately to other items in your basket.

Personalised:

: ( x )

Personalisation:

Edit

Remove Personalisation

Price:

Total:

Discount:

Total:

Basket contains an out of stock item. Please remove to continue

View Bag Checkout

Sign In

Due to maintenance pre-orders are unavailable. Check back soon.

  1. Home
  2. /
  3. Optimisation
  4. /
  5. Hidden
  6. /
  7. Pokemon Classic Collectors Pack

Pokemon Classic Collectors Pack

Classic Collectors Pack (16)

Classic Collectors Pack

£300.00

£399.99

(

20% off

)

Select a size

Out of stock

Description

Product code: 838858

Pokémon Trading Card Game Classic includes:

  • 3 60-card decks starring Venusaur, Charizard, and Blastoise
  • 3 deck boxes
  • 3 sets of card sleeves
  • 1 two-player game board
  • 1 toolbox case with randomizer
  • 2 sets of damage counter cones
  • 2 sets of condition markers
  • Cards included are English Language
    • Next Day Delivery by Evri

      Order by 9pm for Next Day Delivery

      £9.99

    • Next Day Delivery by DPD

      Order by 9pm (excludes Public holidays)

      £11.99

    • Standard Delivery

      Delivered within 3 - 7 days (excludes Public holidays).

      £4.99

    • Collect In Store

      Delivered to your chosen store 3-7 days

      Spend over £100 (excluding delivery charge) to get a £5 voucher to spend in-store

      £4.99

    • International Delivery

      International Delivery is available for this product. The cost and delivery time depend on the country.

    Returns

    You can now return your online order in a few easy steps.

    Select your preferred tracked returns service.

    We have print at home, paperless and collection options available.

    You have 28 days for all standard products to return your order from the date it’s delivered.

    Consoles have 1 year warranty as standard so returns can fall outside of the 28 days for these products. Customers can purchase extended warranties through GAME and warranty protected items can be exchanged/refunded outside of 28 days too.

    If you've had items delivered to you from one of our brand partners please see additional information in regards to returning those items on our online returns page.

    Please note: Unfortunately certain items cannot be returned. For more information please visit our full online returns page

    £0.00

    £300.00

    £399.99

    (

    20% off

    )

    Colour

    Merchandise

    • New

    Size guide

    Reduce quantity

    Increase quantity

    RUNNING LOW

    -

    Less than 10 available

    HURRY

    -

    Selling fast

    Select a size

    Out of stock

    Release Date:

    - -

    hrs

    - -

    mins

    left for Next day delivery

    This product is sold to you by .

    This product will be sold by and is therefore only available for delivery to addresses within .

    Returns must be sent to and will be eligible for refund only, no exchanges are available.

    In accordance with our privacy policy, we will share details of your order with using a platform provided by CommerceHub.

    Promotions and discounts are unavailable on this item. Gift cards cannot be used on this purchase.

    For full terms and conditions, click here.

    Learn more

    Pegi Rating:

    Suitable for people aged 7 and over.

    Read More...

    Game content with scenes or sounds that can possibly be frightening to younger children should fall in this category. Very mild forms of violence (implied, non-detailed, or non-realistic violence) are acceptable for a game with a PEGI 7 rating.

    Classic Collectors Pack (20)

    Buy now.

    Pay later.

    Earn rewards

    Representative APR: 29.9% (variable)

    Credit subject to status. Terms apply.

    Missed payments may affect your credit score

    FrasersPlus

    Classic Collectors Pack (21)

    Available Products

    • No Products Found

    {{#if alternativeImage}}

    Classic Collectors Pack (22)

    {{/if}} {{#if imageSashUrl}} {{#if lazyLoad}} {{else}} {{/if}} {{/if}} {{#if sash}}

    {{/if}}

    {{brand}} {{name}}

    {{#if productSizes}}{{#if productSizes.useAlternateSizes}} Sizes: From {{productSizes.minSize}} to {{productSizes.maxSize}} {{else}}{{#if productSizes.sizes}} Sizes: {{productSizes.sizes}} {{/if}}{{/if}}{{/if}}

    {{#if memberPrice}}{{#unless hidePrice}}

    {{#if memberFromPriceConverted}}{{memberPriceSchemeConverted}} price from{{memberFromPriceConverted}}{{else}}{{memberPriceSchemeConverted}} Price{{memberPriceConverted}}{{/if}}

    {{/unless}}{{/if}}

    {{#unless hidePrice}}

    {{#if showFromPriceLabel}} From {{/if}} {{#if discountPercentage}} {{price}} {{else}} {{price}} {{/if}}

    {{/unless}} {{#unless hidePrice}} {{#if priceLabel}} {{priceLabel}} {{/if}} {{/unless}} {{#unless hidePrice}} {{#if showTicketPrice}}

    {{#if showTicketPricePrefix}} RRP {{/if}} {{ticketPrice}}

    {{/if}} {{/unless}} {{#if discountPercentText}}

    (

    {{discountPercentText}}% off

    )

    {{/if}}

    {{financeMonthlyPayment}}

    {{#unless hidePrice}}

    {{/unless}}

    {{#unless nonBuyableProductText}}

    {{/unless}}{{#unless nonBuyableProductText}}

    {{/unless}}

    {{#if productRollupVariants}}

      {{#each topProductRollupVariants}}
    • {{#if url}} {{else}} {{/if}}
    • {{/each}}

    {{#if showProductRollupVariantMoreLink}}

    View All {{productRollupVariantMoreCount}} Colours

    {{/if}}

    {{/if}}

    {{#if isLastProductInList}} {{#if hasAdvertPlacement}}

  • {{{advertPlacementContent}}}
  • {{/if}}{{/if}}{{/each}}

    Classic Collectors Pack (2024)
    Top Articles
    How To Make a T.J.Maxx Credit Card Payment
    Craigslist Myrtle Beach Free Stuff
    NOAA: National Oceanic & Atmospheric Administration hiring NOAA Commissioned Officer: Inter-Service Transfer in Spokane Valley, WA | LinkedIn
    Tattoo Shops Lansing Il
    Dannys U Pull - Self-Service Automotive Recycling
    Libiyi Sawsharpener
    Driving Directions To Fedex
    Jesus Calling December 1 2022
    Comcast Xfinity Outage in Kipton, Ohio
    EY – все про компанію - Happy Monday
    CKS is only available in the UK | NICE
    Songkick Detroit
    Category: Star Wars: Galaxy of Heroes | EA Forums
    Walgreens On Nacogdoches And O'connor
    Indiana Immediate Care.webpay.md
    Cooking Fever Wiki
    Craigslist Mpls Cars And Trucks
    Viha Email Login
    3476405416
    Libinick
    Geometry Review Quiz 5 Answer Key
    Finalize Teams Yahoo Fantasy Football
    Amortization Calculator
    Doki The Banker
    Reviews over Supersaver - Opiness - Spreekt uit ervaring
    Deshuesadero El Pulpo
    European Wax Center Toms River Reviews
    Poochies Liquor Store
    UCLA Study Abroad | International Education Office
    Culver's.comsummerofsmiles
    Truvy Back Office Login
    Dexter Gomovies
    UAE 2023 F&B Data Insights: Restaurant Population and Traffic Data
    Taylored Services Hardeeville Sc
    Osrs Important Letter
    49S Results Coral
    La Qua Brothers Funeral Home
    Jeep Cherokee For Sale By Owner Craigslist
    Restaurants Near Calvary Cemetery
    Gasbuddy Lenoir Nc
    Appleton Post Crescent Today's Obituaries
    Blackstone Launchpad Ucf
    404-459-1280
    R&J Travel And Tours Calendar
    Ewwwww Gif
    Poe Flameblast
    M Life Insider
    Nami Op.gg
    Best Suv In 2010
    Doe mee met ons loyaliteitsprogramma | Victoria Club
    Model Center Jasmin
    Latest Posts
    Article information

    Author: Velia Krajcik

    Last Updated:

    Views: 6489

    Rating: 4.3 / 5 (54 voted)

    Reviews: 85% of readers found this page helpful

    Author information

    Name: Velia Krajcik

    Birthday: 1996-07-27

    Address: 520 Balistreri Mount, South Armand, OR 60528

    Phone: +466880739437

    Job: Future Retail Associate

    Hobby: Polo, Scouting, Worldbuilding, Cosplaying, Photography, Rowing, Nordic skating

    Introduction: My name is Velia Krajcik, I am a handsome, clean, lucky, gleaming, magnificent, proud, glorious person who loves writing and wants to share my knowledge and understanding with you.