@mohasinac/appkit 2.7.30 → 2.7.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_internal/client/features/filters/filter-load-options.d.ts +29 -0
- package/dist/_internal/client/features/filters/filter-load-options.js +98 -0
- package/dist/_internal/client/features/layout/DashboardLayoutClient.js +1 -1
- package/dist/_internal/server/features/classified/adapters.js +1 -1
- package/dist/_internal/server/features/digital-code/adapters.js +1 -1
- package/dist/_internal/server/features/live/adapters.js +1 -1
- package/dist/_internal/shared/actions/action-registry.js +194 -1
- package/dist/client.d.ts +2 -0
- package/dist/client.js +1 -0
- package/dist/constants/api-endpoints.d.ts +6 -0
- package/dist/constants/api-endpoints.js +2 -0
- package/dist/constants/field-names.d.ts +1 -0
- package/dist/constants/field-names.js +1 -0
- package/dist/features/about/components/FAQPageView.js +1 -1
- package/dist/features/about/components/PublicProfileView.js +2 -2
- package/dist/features/account/components/UserSidebar.js +1 -1
- package/dist/features/admin/components/AdminAddressEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminAddressEditorView.js +117 -0
- package/dist/features/admin/components/AdminCategoryEditorView.js +12 -9
- package/dist/features/admin/components/AdminFeatureFlagsView.js +58 -13
- package/dist/features/admin/components/AdminProductEditorView.d.ts +3 -1
- package/dist/features/admin/components/AdminProductEditorView.js +12 -9
- package/dist/features/admin/components/AdminReturnRequestsView.js +5 -4
- package/dist/features/admin/components/AdminReviewsView.js +5 -4
- package/dist/features/admin/components/AdminSidebar.js +1 -1
- package/dist/features/admin/components/index.d.ts +2 -0
- package/dist/features/admin/components/index.js +1 -0
- package/dist/features/auctions/components/AuctionBidsTable.d.ts +13 -0
- package/dist/features/auctions/components/AuctionBidsTable.js +62 -0
- package/dist/features/auctions/components/AuctionDetailPageView.js +2 -2
- package/dist/features/auctions/components/AuctionFilters.d.ts +7 -1
- package/dist/features/auctions/components/AuctionFilters.js +3 -2
- package/dist/features/auctions/components/index.d.ts +2 -0
- package/dist/features/auctions/components/index.js +1 -0
- package/dist/features/blog/components/BlogPostView.js +1 -1
- package/dist/features/cart/components/CartView.js +2 -1
- package/dist/features/cart/components/CheckoutView.js +2 -1
- package/dist/features/categories/components/BrandDetailTabs.d.ts +5 -1
- package/dist/features/categories/components/BrandDetailTabs.js +29 -15
- package/dist/features/categories/components/CategoryDetailTabs.d.ts +5 -1
- package/dist/features/categories/components/CategoryDetailTabs.js +30 -15
- package/dist/features/classified/components/ClassifiedFilters.d.ts +5 -1
- package/dist/features/classified/components/ClassifiedFilters.js +3 -2
- package/dist/features/digital-codes/components/DigitalCodeFilters.d.ts +5 -1
- package/dist/features/digital-codes/components/DigitalCodeFilters.js +3 -2
- package/dist/features/events/repository/event-entry.repository.d.ts +1 -0
- package/dist/features/events/repository/event-entry.repository.js +5 -0
- package/dist/features/filters/index.d.ts +2 -0
- package/dist/features/filters/index.js +1 -0
- package/dist/features/homepage/components/FAQSection.js +1 -1
- package/dist/features/homepage/components/FeaturedProductsSection.js +6 -1
- package/dist/features/homepage/components/HeroCarousel.js +21 -5
- package/dist/features/homepage/components/SectionCarousel.js +3 -1
- package/dist/features/homepage/components/ShopByCategorySection.js +2 -2
- package/dist/features/layout/AppLayoutShell.d.ts +1 -1
- package/dist/features/layout/AppLayoutShell.js +1 -1
- package/dist/features/live/components/LiveItemFilters.d.ts +5 -1
- package/dist/features/live/components/LiveItemFilters.js +3 -2
- package/dist/features/pre-orders/components/PreOrderDetailPageView.js +2 -2
- package/dist/features/pre-orders/components/PreOrderFilters.d.ts +7 -1
- package/dist/features/pre-orders/components/PreOrderFilters.js +3 -2
- package/dist/features/products/columns/productTableColumns.js +1 -1
- package/dist/features/products/components/CompareOverlay.d.ts +2 -0
- package/dist/features/products/components/CompareOverlay.js +1 -1
- package/dist/features/products/components/ProductFilters.d.ts +7 -1
- package/dist/features/products/components/ProductFilters.js +3 -2
- package/dist/features/products/components/ProductForm.js +6 -6
- package/dist/features/products/components/ProductGrid.js +1 -1
- package/dist/features/products/repository/products.repository.d.ts +4 -0
- package/dist/features/products/repository/products.repository.js +22 -3
- package/dist/features/products/schemas/firestore.d.ts +7 -1
- package/dist/features/products/types/index.d.ts +4 -0
- package/dist/features/reviews/repository/reviews.repository.d.ts +1 -0
- package/dist/features/reviews/repository/reviews.repository.js +14 -3
- package/dist/features/seller/components/SellerSidebar.js +1 -1
- package/dist/features/stores/components/StoreAboutView.js +1 -1
- package/dist/features/stores/components/StoreDetailLayoutView.js +16 -2
- package/dist/features/stores/components/StoreHeader.js +1 -1
- package/dist/index.d.ts +6 -0
- package/dist/index.js +6 -0
- package/dist/next/routing/route-map.d.ts +14 -0
- package/dist/next/routing/route-map.js +7 -0
- package/dist/seed/bids-seed-data.js +7 -4
- package/dist/seed/events-seed-data.js +23 -0
- package/dist/seed/history-seed-data.js +13 -0
- package/dist/seed/orders-seed-data.js +108 -1
- package/dist/seed/products-auctions-seed-data.js +40 -40
- package/dist/seed/products-preorders-seed-data.js +16 -16
- package/dist/seed/products-prize-draws-seed-data.js +4 -4
- package/dist/seed/products-standard-seed-data.js +202 -202
- package/dist/tailwind-utilities.css +1 -1
- package/package.json +1 -1
|
@@ -17,8 +17,8 @@ const _rawProductsStandardSeedData = [
|
|
|
17
17
|
partOfBundleTitles: ["Pokémon TCG Starter Bundle — ETB + Deck Box + Sleeves"],
|
|
18
18
|
title: "Pokémon TCG: Scarlet & Violet — Paldean Fates Elite Trainer Box",
|
|
19
19
|
description: "The Paldean Fates Elite Trainer Box is packed with Pokémon from the Paldea region in their special Shiny forms. Includes 9 Scarlet & Violet—Paldean Fates booster packs, 65 Pokémon card sleeves featuring Shiny Tinkaton ex, 45 Pokémon TCG Energy cards, a player's guide to the set, 6 damage-counter dice, 1 competition-legal coin-flip die, 2 plastic condition markers, and a collector's box.",
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
categorySlugs: ["category-pokemon-tcg"],
|
|
21
|
+
categoryNames: ["Pokémon TCG"],
|
|
22
22
|
brand: "The Pokémon Company",
|
|
23
23
|
brandSlug: "brand-pokemon-company",
|
|
24
24
|
price: 449900,
|
|
@@ -71,8 +71,8 @@ const _rawProductsStandardSeedData = [
|
|
|
71
71
|
slug: "product-pokemon-151-booster-box",
|
|
72
72
|
title: "Pokémon TCG: Scarlet & Violet — 151 Booster Box (36 Packs)",
|
|
73
73
|
description: "Sealed booster box of the iconic Pokémon TCG: 151 set. Each box contains 36 booster packs, each with 10 cards including 1 reverse holo and at least 1 rare or higher. The 151 set celebrates the original 151 Pokémon with special illustration rares, ultra rares, and the coveted gold card chase cards. Investment-grade sealed product — ideal for collectors and investors.",
|
|
74
|
-
|
|
75
|
-
|
|
74
|
+
categorySlugs: ["category-sealed-product"],
|
|
75
|
+
categoryNames: ["Sealed Product"],
|
|
76
76
|
brand: "The Pokémon Company",
|
|
77
77
|
brandSlug: "brand-pokemon-company",
|
|
78
78
|
price: 1499900,
|
|
@@ -128,8 +128,8 @@ const _rawProductsStandardSeedData = [
|
|
|
128
128
|
partOfBundleTitles: ["Pokémon TCG Starter Bundle — ETB + Deck Box + Sleeves", "Pokémon Plush Gift Pair — Pikachu + Gengar"],
|
|
129
129
|
title: "Pokémon Center: Pikachu Sitting Cuties Plush — 8 Inch",
|
|
130
130
|
description: "Official Pokémon Center Pikachu Sitting Cuties plush, 8 inches tall. Super-soft, detailed embroidery, and safe for all ages. Comes in original Pokémon Center hang-tag packaging. A must-have for every Pokémon fan — the iconic expression and bright yellow colouring make this Pikachu plush a display favourite.",
|
|
131
|
-
|
|
132
|
-
|
|
131
|
+
categorySlugs: ["category-nendoroids-chibis"],
|
|
132
|
+
categoryNames: ["Nendoroids & Chibis"],
|
|
133
133
|
brand: "The Pokémon Company",
|
|
134
134
|
brandSlug: "brand-pokemon-company",
|
|
135
135
|
price: 129900,
|
|
@@ -176,8 +176,8 @@ const _rawProductsStandardSeedData = [
|
|
|
176
176
|
partOfBundleTitles: ["Pokémon Plush Gift Pair — Pikachu + Gengar"],
|
|
177
177
|
title: "Pokémon Center: Gengar Sitting Cuties Plush — 12 Inch",
|
|
178
178
|
description: "Official Pokémon Center Gengar Sitting Cuties plush in a 12-inch extra-large size. Everyone's favourite Ghost-type Pokémon rendered in super-soft plush with its iconic grin. Perfect display piece and gift. Comes with original Pokémon Center hang-tag. Limited availability — direct import from the official Pokémon Center Japan.",
|
|
179
|
-
|
|
180
|
-
|
|
179
|
+
categorySlugs: ["category-nendoroids-chibis"],
|
|
180
|
+
categoryNames: ["Nendoroids & Chibis"],
|
|
181
181
|
brand: "The Pokémon Company",
|
|
182
182
|
brandSlug: "brand-pokemon-company",
|
|
183
183
|
price: 149900,
|
|
@@ -229,8 +229,8 @@ const _rawProductsStandardSeedData = [
|
|
|
229
229
|
slug: "product-pokemon-base-set-booster-sealed",
|
|
230
230
|
title: "Pokémon Base Set Booster Pack — Shadowless 1st Print (Sealed, 1999)",
|
|
231
231
|
description: "Extraordinarily rare sealed 1999 Pokémon Base Set booster pack — Shadowless first print run. The shadowless print is identified by the lack of drop shadow on the card frame, produced only during the first months of the English TCG print run. This sealed pack is in pristine condition, never opened, and represents one of the finest Pokémon TCG investments available. PSA population report shows very few sealed Shadowless packs in existence. Art: Clefairy Booster. Grading / resale value estimated ₹1,50,000–₹3,00,000 once professionally authenticated.",
|
|
232
|
-
|
|
233
|
-
|
|
232
|
+
categorySlugs: ["category-vintage-tcg"],
|
|
233
|
+
categoryNames: ["Vintage TCG"],
|
|
234
234
|
brand: "The Pokémon Company",
|
|
235
235
|
brandSlug: "brand-pokemon-company",
|
|
236
236
|
price: 8999900,
|
|
@@ -292,8 +292,8 @@ const _rawProductsStandardSeedData = [
|
|
|
292
292
|
partOfBundleTitles: ["Yu-Gi-Oh! Tournament Ready — 25th Tin + Structure Deck"],
|
|
293
293
|
title: "Yu-Gi-Oh! 25th Anniversary Tin: Dueling Mirrors",
|
|
294
294
|
description: "Celebrate 25 years of the Yu-Gi-Oh! Trading Card Game with this premium anniversary tin. Contains 3 Mega-Packs of 16 cards each (48 cards total), including a guaranteed Ghost Rare and 3 Secret Rares per tin. Features reprint versions of popular tournament staples in ultra-rare foil treatments. The commemorative tin itself is a collector's piece with 25th anniversary embossing and gold foil detail.",
|
|
295
|
-
|
|
296
|
-
|
|
295
|
+
categorySlugs: ["category-yugioh-tcg"],
|
|
296
|
+
categoryNames: ["Yu-Gi-Oh! TCG"],
|
|
297
297
|
brand: "Konami",
|
|
298
298
|
brandSlug: "brand-konami",
|
|
299
299
|
price: 299900,
|
|
@@ -349,8 +349,8 @@ const _rawProductsStandardSeedData = [
|
|
|
349
349
|
partOfBundleTitles: ["Yu-Gi-Oh! Tournament Ready — 25th Tin + Structure Deck"],
|
|
350
350
|
title: "Yu-Gi-Oh! Structure Deck: Alba Strike",
|
|
351
351
|
description: "A ready-to-play 41-card Structure Deck featuring the Albaz-related cards and Fallen of Albaz strategies. Includes powerful 'Mirrorjade the Iceblade Dragon' and 'Despian Tragedy'. Ideal for beginner-to-intermediate players looking to build a competitive Dogmatika/Albaz fusion strategy. The deck features 2 Ultra Rare, 2 Super Rare, and 37 Common cards, along with a Deck Guide and game mat.",
|
|
352
|
-
|
|
353
|
-
|
|
352
|
+
categorySlugs: ["category-yugioh-tcg"],
|
|
353
|
+
categoryNames: ["Yu-Gi-Oh! TCG"],
|
|
354
354
|
brand: "Konami",
|
|
355
355
|
brandSlug: "brand-konami",
|
|
356
356
|
price: 89900,
|
|
@@ -407,8 +407,8 @@ const _rawProductsStandardSeedData = [
|
|
|
407
407
|
partOfBundleTitles: ["Hot Wheels Car Culture Collector 3-Pack"],
|
|
408
408
|
title: "Hot Wheels Redline 1969 Custom Camaro — Orange (Vintage, Near Mint)",
|
|
409
409
|
description: "Original 1969 Hot Wheels Redline Custom Camaro in bright orange with red-line tyres. This is a first-year release car from the original Hot Wheels line launched by Mattel in 1968. Condition is Near Mint (NM) — vibrant paint with minimal surface scratches, red lines intact, all four wheels spin freely. Stored in UV-resistant case for the past 15 years. Original collector sourced from a US estate sale. An extraordinary piece for serious Redline collectors.",
|
|
410
|
-
|
|
411
|
-
|
|
410
|
+
categorySlugs: ["category-hot-wheels"],
|
|
411
|
+
categoryNames: ["Hot Wheels"],
|
|
412
412
|
brand: "Hot Wheels",
|
|
413
413
|
brandSlug: "brand-hot-wheels",
|
|
414
414
|
price: 499900,
|
|
@@ -468,8 +468,8 @@ const _rawProductsStandardSeedData = [
|
|
|
468
468
|
partOfBundleTitles: ["Hot Wheels Car Culture Collector 3-Pack"],
|
|
469
469
|
title: "Hot Wheels Car Culture: Modern Classics Premium 5-Pack",
|
|
470
470
|
description: "Hot Wheels Car Culture Modern Classics 5-car premium set featuring iconic Japanese performance cars: Honda S2000, Mazda RX-7 (FD), Nissan Skyline GT-R (R34), Toyota Supra (A80), and Honda NSX (NA1). Premium rubber tyres, opening hoods on select vehicles, and individually numbered collector cards. Each car has authentic die-cast metal construction with premium paint finish.",
|
|
471
|
-
|
|
472
|
-
|
|
471
|
+
categorySlugs: ["category-hot-wheels"],
|
|
472
|
+
categoryNames: ["Hot Wheels"],
|
|
473
473
|
brand: "Hot Wheels",
|
|
474
474
|
brandSlug: "brand-hot-wheels",
|
|
475
475
|
price: 129900,
|
|
@@ -524,8 +524,8 @@ const _rawProductsStandardSeedData = [
|
|
|
524
524
|
partOfBundleTitles: ["Hot Wheels Car Culture Collector 3-Pack"],
|
|
525
525
|
title: "Tomica Limited Vintage: Datsun Fairlady 240Z (Silver) — TLV-N43",
|
|
526
526
|
description: "Tomica Limited Vintage precision diecast of the iconic Datsun Fairlady 240Z in silver. Part of the premium TLV-Vintage series — highly detailed 1:64 scale model with opening doors, rubber tyres, and photo-etched badges. The 240Z is widely regarded as one of the most beautiful Japanese sports cars ever made and TLV captures every curve faithfully. Comes in original Tomica Limited Vintage box with protective tray.",
|
|
527
|
-
|
|
528
|
-
|
|
527
|
+
categorySlugs: ["category-tomica"],
|
|
528
|
+
categoryNames: ["Tomica"],
|
|
529
529
|
brand: "Tomica",
|
|
530
530
|
brandSlug: "brand-tomica",
|
|
531
531
|
price: 299900,
|
|
@@ -580,8 +580,8 @@ const _rawProductsStandardSeedData = [
|
|
|
580
580
|
slug: "product-hot-wheels-rlc-bone-shaker",
|
|
581
581
|
title: "Hot Wheels RLC Exclusive: Bone Shaker — Matte Black (2023 Members Only)",
|
|
582
582
|
description: "Hot Wheels Red Line Club exclusive 2023 Bone Shaker in matte black with gold spectraflame accents. RLC exclusive cars are produced in strictly limited quantities (typically under 10,000 units worldwide) and are available only to Red Line Club members. This is the iconic Bone Shaker in the most desirable colourway — matte black with metal-flake. Includes original RLC packaging, numbered certificate of authenticity, and collector button.",
|
|
583
|
-
|
|
584
|
-
|
|
583
|
+
categorySlugs: ["category-hot-wheels"],
|
|
584
|
+
categoryNames: ["Hot Wheels"],
|
|
585
585
|
brand: "Hot Wheels",
|
|
586
586
|
brandSlug: "brand-hot-wheels",
|
|
587
587
|
price: 399900,
|
|
@@ -638,8 +638,8 @@ const _rawProductsStandardSeedData = [
|
|
|
638
638
|
slug: "product-hot-wheels-redline-banana-1968",
|
|
639
639
|
title: "Hot Wheels Redline 1968 Custom Camaro — Antifreeze Yellow (Banana, Vintage)",
|
|
640
640
|
description: "Iconic 1968 Hot Wheels Redline Custom Camaro in the legendary Antifreeze Yellow 'Banana' colourway. Among the most desirable first-year Hot Wheels Redlines due to the rarity of the Banana colour — fewer units were produced compared to the orange version. This example is in Good-to-Very Good (G-VG) condition with honest play wear on the paint, strong red-line tyres, and all four wheels spinning. A genuine original — not a reproduction.",
|
|
641
|
-
|
|
642
|
-
|
|
641
|
+
categorySlugs: ["category-hot-wheels"],
|
|
642
|
+
categoryNames: ["Hot Wheels"],
|
|
643
643
|
brand: "Hot Wheels",
|
|
644
644
|
brandSlug: "brand-hot-wheels",
|
|
645
645
|
price: 1299900,
|
|
@@ -701,8 +701,8 @@ const _rawProductsStandardSeedData = [
|
|
|
701
701
|
partOfBundleTitles: ["Anime Figure Duo — Nendoroid Rem + S.H.Figuarts Goku"],
|
|
702
702
|
title: "Bandai S.H.Figuarts Son Goku -Ultra Instinct- (Dragon Ball Super: Super Hero Ver.)",
|
|
703
703
|
description: "Bandai S.H.Figuarts Son Goku in his iconic Ultra Instinct form from Dragon Ball Super. This premium figure stands approximately 14 cm tall and features over 20 points of articulation for dynamic posing. Includes multiple expression faceplates, interchangeable hand parts, effect parts for the Ultra Instinct silver aura, and a figure stand. The Ultra Instinct transformation's silver hair is rendered in transparent gradient plastic for an ethereal glow effect. Tamashii Web Exclusive edition.",
|
|
704
|
-
|
|
705
|
-
|
|
704
|
+
categorySlugs: ["category-poseable-figures"],
|
|
705
|
+
categoryNames: ["Poseable Action Figures"],
|
|
706
706
|
brand: "Bandai",
|
|
707
707
|
brandSlug: "brand-bandai",
|
|
708
708
|
price: 699900,
|
|
@@ -759,8 +759,8 @@ const _rawProductsStandardSeedData = [
|
|
|
759
759
|
partOfBundleTitles: ["Anime Figure Duo — Nendoroid Rem + S.H.Figuarts Goku"],
|
|
760
760
|
title: "Good Smile Company Nendoroid Rem (Re:Zero) — #663",
|
|
761
761
|
description: "Good Smile Company's iconic Nendoroid #663 — Rem from Re:Zero -Starting Life in Another World-. This is one of the best-selling Nendoroids of all time and a must-have for any Re:Zero fan. Stands approximately 10 cm tall in typical Nendoroid cute chibi style. Includes 3 expression faceplates (standard, smiling, and combat), 3 optional hand parts, her morning star weapon, and a Nendoroid stand. Re-release edition in standard packaging.",
|
|
762
|
-
|
|
763
|
-
|
|
762
|
+
categorySlugs: ["category-nendoroids-chibis"],
|
|
763
|
+
categoryNames: ["Nendoroids & Chibis"],
|
|
764
764
|
brand: "Good Smile Company",
|
|
765
765
|
brandSlug: "brand-good-smile",
|
|
766
766
|
price: 499900,
|
|
@@ -817,8 +817,8 @@ const _rawProductsStandardSeedData = [
|
|
|
817
817
|
partOfBundleTitles: ["Funko Pop! Anime Collector Set — Naruto + Batman"],
|
|
818
818
|
title: "Funko Pop! Animation: Naruto Shippuden — Naruto Sage Mode #932",
|
|
819
819
|
description: "Funko Pop! Naruto Uzumaki in Sage Mode (#932) from Naruto Shippuden. Features Naruto in his iconic Sage Mode toad markings with orange and black design. Stands approximately 9.5 cm tall in the standard Funko Pop vinyl style with oversized head and solid black eyes. Comes in original window box. Perfect for display on any shelf — great gift for Naruto fans.",
|
|
820
|
-
|
|
821
|
-
|
|
820
|
+
categorySlugs: ["category-poseable-figures"],
|
|
821
|
+
categoryNames: ["Poseable Action Figures"],
|
|
822
822
|
brand: "Funko",
|
|
823
823
|
brandSlug: "brand-funko",
|
|
824
824
|
price: 149900,
|
|
@@ -873,8 +873,8 @@ const _rawProductsStandardSeedData = [
|
|
|
873
873
|
partOfBundleTitles: ["Funko Pop! Anime Collector Set — Naruto + Batman"],
|
|
874
874
|
title: "McFarlane Toys DC Multiverse: Batman (The Dark Knight Returns) 7-Inch Figure",
|
|
875
875
|
description: "McFarlane Toys DC Multiverse Batman figure based on Frank Miller's legendary graphic novel The Dark Knight Returns. This 7-inch scale figure features an extremely detailed sculpt of the older, armoured Batman, over 22 points of articulation, and includes a batarang accessory and display base. The textured grey and black armour is faithfully rendered with aged weathering effects. Comes in collector-grade window box packaging with character art.",
|
|
876
|
-
|
|
877
|
-
|
|
876
|
+
categorySlugs: ["category-scale-figures"],
|
|
877
|
+
categoryNames: ["Scale Figures"],
|
|
878
878
|
brand: "McFarlane Toys",
|
|
879
879
|
brandSlug: "brand-mcfarlane",
|
|
880
880
|
price: 349900,
|
|
@@ -931,8 +931,8 @@ const _rawProductsStandardSeedData = [
|
|
|
931
931
|
partOfBundleTitles: ["Gundam Builder Essentials — MG + RG Bundle"],
|
|
932
932
|
title: "Bandai Gunpla MG 1/100 RX-78-2 Gundam Ver. 3.0 — Master Grade Model Kit",
|
|
933
933
|
description: "Bandai's definitive Master Grade RX-78-2 Gundam Ver. 3.0 — the iconic original Gundam redefined with state-of-the-art engineering. This 1/100 scale snap-fit plastic model features an internal frame with full armour over-wrap, 144 individual hand-assembly components, and impressive poseability that captures every heroic Gundam stance. Includes beam rifle, beam sabre, shield, hyper bazooka, and Gundam hammer. No glue required — perfect for builders aged 15+.",
|
|
934
|
-
|
|
935
|
-
|
|
934
|
+
categorySlugs: ["category-gunpla"],
|
|
935
|
+
categoryNames: ["Gunpla"],
|
|
936
936
|
brand: "Bandai",
|
|
937
937
|
brandSlug: "brand-bandai",
|
|
938
938
|
price: 299900,
|
|
@@ -989,8 +989,8 @@ const _rawProductsStandardSeedData = [
|
|
|
989
989
|
partOfBundleTitles: ["Gundam Builder Essentials — MG + RG Bundle"],
|
|
990
990
|
title: "Bandai Gunpla RG 1/144 Wing Gundam Zero EW (Endless Waltz) — Real Grade Kit",
|
|
991
991
|
description: "Bandai's legendary Real Grade Wing Gundam Zero from Endless Waltz — the most beautiful Gundam ever made. The RG 1/144 scale features an advanced MS Joint inner frame system, stunning wing feather detail with individual micro-articulated feathers, twin buster rifle, beam sabre effect parts, and a Sandhausen Sturm System for the signature Wing Zero cannon pose. The feathers alone have 88 individual moving components. A showpiece even un-built.",
|
|
992
|
-
|
|
993
|
-
|
|
992
|
+
categorySlugs: ["category-gunpla"],
|
|
993
|
+
categoryNames: ["Gunpla"],
|
|
994
994
|
brand: "Bandai",
|
|
995
995
|
brandSlug: "brand-bandai",
|
|
996
996
|
price: 199900,
|
|
@@ -1048,8 +1048,8 @@ const _rawProductsStandardSeedData = [
|
|
|
1048
1048
|
partOfBundleTitles: ["Beyblade X Complete Starter Kit — Top + Launcher + Stadium"],
|
|
1049
1049
|
title: "Beyblade X BX-01 Starter Set: Dran Sword 3-60F — Official Takara Tomy",
|
|
1050
1050
|
description: "The official Beyblade X launch product — BX-01 Dran Sword 3-60F Starter Set. Beyblade X is the next evolution of the competitive Beyblade system, featuring the new X-Line rail system and the Extreme Dash (X-Dash) mechanic where the Beyblade launches at high speed onto the XStadium rail for powerful finisher attacks. Includes Dran Sword top (Bit: Dran, Blade: Sword 3, Ratchet: 60, Bit: F), a high-grip X-String Launcher, and a Beyblade X Activity Guide booklet. Authentic Takara Tomy Japan import.",
|
|
1051
|
-
|
|
1052
|
-
|
|
1051
|
+
categorySlugs: ["category-beyblade-x"],
|
|
1052
|
+
categoryNames: ["Beyblade X"],
|
|
1053
1053
|
brand: "Beyblade",
|
|
1054
1054
|
brandSlug: "brand-beyblade",
|
|
1055
1055
|
price: 199900,
|
|
@@ -1105,8 +1105,8 @@ const _rawProductsStandardSeedData = [
|
|
|
1105
1105
|
partOfBundleTitles: ["Beyblade X Complete Starter Kit — Top + Launcher + Stadium"],
|
|
1106
1106
|
title: "Beyblade Burst QuadStrike B-200 Starter: Infinite Valkyrie — Official Takara Tomy",
|
|
1107
1107
|
description: "Beyblade Burst QuadStrike B-200 Infinite Valkyrie Knight Sword 1B Starter Set — the latest evolution in the Valkyrie lineage. Part of the QuadStrike system featuring four-blade attack design with the Knight Sword contact points and 1B driver for aggressive stamina-to-attack balance. Includes Infinite Valkyrie top, QuadDrive Launcher, and Beyblade Burst activity guide. Authentic Takara Tomy Japan manufacture — no knockoffs. A top-tier competitive choice in the QuadStrike meta.",
|
|
1108
|
-
|
|
1109
|
-
|
|
1108
|
+
categorySlugs: ["category-beyblade-burst"],
|
|
1109
|
+
categoryNames: ["Beyblade Burst"],
|
|
1110
1110
|
brand: "Beyblade",
|
|
1111
1111
|
brandSlug: "brand-beyblade",
|
|
1112
1112
|
price: 249900,
|
|
@@ -1160,8 +1160,8 @@ const _rawProductsStandardSeedData = [
|
|
|
1160
1160
|
slug: "product-pokemon-sv-temporal-forces-etb",
|
|
1161
1161
|
title: "Pokémon TCG: Scarlet & Violet — Temporal Forces Elite Trainer Box",
|
|
1162
1162
|
description: "Scarlet & Violet Temporal Forces ETB featuring Iron Leaves ex and Walking Wake ex. Contains 9 booster packs, 65 card sleeves featuring Iron Leaves ex, 45 Pokémon TCG Energy cards, 6 damage-counter dice, competition-legal coin-flip die, and collector's box. Temporal Forces introduces Ancient and Future Pokémon mechanic cards with ACE SPEC cards returning at one per deck.",
|
|
1163
|
-
|
|
1164
|
-
|
|
1163
|
+
categorySlugs: ["category-pokemon-tcg"],
|
|
1164
|
+
categoryNames: ["Pokémon TCG"],
|
|
1165
1165
|
brand: "The Pokémon Company",
|
|
1166
1166
|
brandSlug: "brand-pokemon-company",
|
|
1167
1167
|
price: 469900,
|
|
@@ -1204,8 +1204,8 @@ const _rawProductsStandardSeedData = [
|
|
|
1204
1204
|
slug: "product-pokemon-paradox-rift-booster",
|
|
1205
1205
|
title: "Pokémon TCG: Scarlet & Violet — Paradox Rift Booster Pack (Single Pack)",
|
|
1206
1206
|
description: "Single booster pack from Pokémon TCG Scarlet & Violet Paradox Rift. Each pack contains 10 cards with at least 1 reverse holo and 1 rare or higher. Paradox Rift features Ancient and Future Pokémon — great chance at Iron Valiant ex, Roaring Moon ex, and Walking Wake ex special illustration rares. Factory sealed, direct from official distributor allocation.",
|
|
1207
|
-
|
|
1208
|
-
|
|
1207
|
+
categorySlugs: ["category-pokemon-tcg"],
|
|
1208
|
+
categoryNames: ["Pokémon TCG"],
|
|
1209
1209
|
brand: "The Pokémon Company",
|
|
1210
1210
|
brandSlug: "brand-pokemon-company",
|
|
1211
1211
|
price: 34900,
|
|
@@ -1246,8 +1246,8 @@ const _rawProductsStandardSeedData = [
|
|
|
1246
1246
|
slug: "product-pokemon-eevee-evolutions-tin",
|
|
1247
1247
|
title: "Pokémon TCG: Eevee Evolutions Premium Collector Tin — Flareon",
|
|
1248
1248
|
description: "Pokémon Eevee Evolutions Premium Collector Tin featuring Flareon. Contains 4 booster packs (2 Paradox Rift, 1 Paldean Fates, 1 Temporal Forces), a special Flareon V promo card, a metal coin, and a premium collector tin with embossed Eeveelution artwork. The Flareon tin is the most popular of the Eevee Evolutions series — a beautiful display piece and a great gift for any Pokémon fan.",
|
|
1249
|
-
|
|
1250
|
-
|
|
1249
|
+
categorySlugs: ["category-pokemon-tcg"],
|
|
1250
|
+
categoryNames: ["Pokémon TCG"],
|
|
1251
1251
|
brand: "The Pokémon Company",
|
|
1252
1252
|
brandSlug: "brand-pokemon-company",
|
|
1253
1253
|
price: 179900,
|
|
@@ -1291,8 +1291,8 @@ const _rawProductsStandardSeedData = [
|
|
|
1291
1291
|
slug: "product-yugioh-phantom-nightmare-box",
|
|
1292
1292
|
title: "Yu-Gi-Oh! TCG: Phantom Nightmare Booster Box (24 Packs)",
|
|
1293
1293
|
description: "Sealed Yu-Gi-Oh! TCG Phantom Nightmare booster box containing 24 packs of 9 cards each (216 cards total). Phantom Nightmare introduces new Sinful Spoils, Snake-Eyes, and Branded support cards. Each box yields approximately 12 Secret Rares and contains chase cards for the popular Snake-Eye Ash deck and Fiendsmith engine. Factory sealed from official UK Konami distributor allocation.",
|
|
1294
|
-
|
|
1295
|
-
|
|
1294
|
+
categorySlugs: ["category-yugioh-tcg"],
|
|
1295
|
+
categoryNames: ["Yu-Gi-Oh! TCG"],
|
|
1296
1296
|
brand: "Konami",
|
|
1297
1297
|
brandSlug: "brand-konami",
|
|
1298
1298
|
price: 599900,
|
|
@@ -1336,8 +1336,8 @@ const _rawProductsStandardSeedData = [
|
|
|
1336
1336
|
slug: "product-yugioh-dark-magician-mfc-nm",
|
|
1337
1337
|
title: "Yu-Gi-Oh! Dark Magician (MFC-000) Ultra Rare — Near Mint Raw",
|
|
1338
1338
|
description: "Dark Magician from Magician's Force (MFC-000) in Ultra Rare — Near Mint condition, ungraded/raw. One of the most iconic Yu-Gi-Oh! cards ever printed, the MFC Ultra Rare Dark Magician features the classic purple robed artwork with gold foil Ultra Rare treatment. This copy scores NM under bright light: four near-perfect corners, no visible scratches, only extremely minor whitening on the back under loupe. Would grade PSA 7–8 range based on condition.",
|
|
1339
|
-
|
|
1340
|
-
|
|
1339
|
+
categorySlugs: ["category-yugioh-tcg"],
|
|
1340
|
+
categoryNames: ["Yu-Gi-Oh! TCG"],
|
|
1341
1341
|
brand: "Konami",
|
|
1342
1342
|
brandSlug: "brand-konami",
|
|
1343
1343
|
price: 149900,
|
|
@@ -1382,8 +1382,8 @@ const _rawProductsStandardSeedData = [
|
|
|
1382
1382
|
slug: "product-yugioh-rarity-collection-ii",
|
|
1383
1383
|
title: "Yu-Gi-Oh! TCG: Rarity Collection II Premium Box (3 Packs)",
|
|
1384
1384
|
description: "Yu-Gi-Oh! TCG Rarity Collection II Premium Box — contains 3 packs of 5 cards each, guaranteed to include cards at Ultra Rare or higher rarity. Rarity Collection II features reprints of competitive staples, tournament favourites, and legacy cards all upgraded to Prismatic Secret Rare and Quarter Century Secret Rare foil treatments. Ideal for collectors and competitive players upgrading their decks with premium foil versions.",
|
|
1385
|
-
|
|
1386
|
-
|
|
1385
|
+
categorySlugs: ["category-yugioh-tcg"],
|
|
1386
|
+
categoryNames: ["Yu-Gi-Oh! TCG"],
|
|
1387
1387
|
brand: "Konami",
|
|
1388
1388
|
brandSlug: "brand-konami",
|
|
1389
1389
|
price: 349900,
|
|
@@ -1427,8 +1427,8 @@ const _rawProductsStandardSeedData = [
|
|
|
1427
1427
|
slug: "product-tomica-limited-hakosuka",
|
|
1428
1428
|
title: "Tomica Limited Vintage: Nissan Skyline 2000 GT-R (Hakosuka) — White",
|
|
1429
1429
|
description: "Tomica Limited Vintage precision 1:64 diecast of the legendary Nissan Skyline 2000 GT-R Hakosuka in pearl white. The Hakosuka ('box sky') is the original C10 GT-R from 1969-1972 and is widely regarded as the most collectable Japanese car ever made. This TLV model captures every detail: pop-up headlights, chrome bumpers, opening doors, rubber tyres, and a faithfully rendered deep-gloss white finish. Comes in original Tomica Limited Vintage protective display case.",
|
|
1430
|
-
|
|
1431
|
-
|
|
1430
|
+
categorySlugs: ["category-tomica"],
|
|
1431
|
+
categoryNames: ["Tomica"],
|
|
1432
1432
|
brand: "Tomica",
|
|
1433
1433
|
brandSlug: "brand-tomica",
|
|
1434
1434
|
price: 349900,
|
|
@@ -1474,8 +1474,8 @@ const _rawProductsStandardSeedData = [
|
|
|
1474
1474
|
slug: "product-hot-wheels-japan-historics-5pack",
|
|
1475
1475
|
title: "Hot Wheels Car Culture: Japan Historics 2 Premium 5-Pack",
|
|
1476
1476
|
description: "Hot Wheels Car Culture Japan Historics 2 premium 5-car set — celebrating classic Japanese performance and economy cars: Subaru BRAT, Nissan Laurel 2000 SGX, Honda City Turbo, Mazda Familia 1500XG, and Toyota Corolla Levin (AE86). Premium rubber tyres, realistic liveries, and die-cast metal construction. Japan Historics 2 is one of the most beloved Car Culture series for JDM fans and is harder to find now as it sold out quickly.",
|
|
1477
|
-
|
|
1478
|
-
|
|
1477
|
+
categorySlugs: ["category-hot-wheels"],
|
|
1478
|
+
categoryNames: ["Hot Wheels"],
|
|
1479
1479
|
brand: "Hot Wheels",
|
|
1480
1480
|
brandSlug: "brand-hot-wheels",
|
|
1481
1481
|
price: 149900,
|
|
@@ -1518,8 +1518,8 @@ const _rawProductsStandardSeedData = [
|
|
|
1518
1518
|
slug: "product-hot-wheels-sth-dodge-viper",
|
|
1519
1519
|
title: "Hot Wheels Super Treasure Hunt: Dodge Viper SRT10 (STH, Spectraflame)",
|
|
1520
1520
|
description: "Genuine Hot Wheels Super Treasure Hunt (STH) Dodge Viper SRT10 — pulled fresh from retail, immediately bagged in hard case. STH cars are produced at approximately 1:10,000 ratio per print run, identifiable by the Spectraflame paint finish, Treasure Hunt logo on the card, and Real Rider rubber tyres. This Viper STH has vibrant red Spectraflame, no card bends, and the blister is perfectly sealed. One of the most desirable STH castings of 2023.",
|
|
1521
|
-
|
|
1522
|
-
|
|
1521
|
+
categorySlugs: ["category-hot-wheels"],
|
|
1522
|
+
categoryNames: ["Hot Wheels"],
|
|
1523
1523
|
brand: "Hot Wheels",
|
|
1524
1524
|
brandSlug: "brand-hot-wheels",
|
|
1525
1525
|
price: 299900,
|
|
@@ -1568,8 +1568,8 @@ const _rawProductsStandardSeedData = [
|
|
|
1568
1568
|
slug: "product-beyblade-x-bx04-knight-shield",
|
|
1569
1569
|
title: "Beyblade X BX-04 Starter Set: Knight Shield 3-80N — Official Takara Tomy",
|
|
1570
1570
|
description: "Beyblade X BX-04 Knight Shield 3-80N Starter Set — the defensive powerhouse of the Beyblade X first wave. Knight Shield features the 80N driver providing superior stamina and the Shield 3 blade with wide contact points for knock-out resistance. Ideal for defensive play style. Includes high-grip X-String Launcher. Authentic Takara Tomy Japan import — indistinguishable from officially distributed product.",
|
|
1571
|
-
|
|
1572
|
-
|
|
1571
|
+
categorySlugs: ["category-beyblade-x"],
|
|
1572
|
+
categoryNames: ["Beyblade X"],
|
|
1573
1573
|
brand: "Beyblade",
|
|
1574
1574
|
brandSlug: "brand-beyblade",
|
|
1575
1575
|
price: 219900,
|
|
@@ -1613,8 +1613,8 @@ const _rawProductsStandardSeedData = [
|
|
|
1613
1613
|
slug: "product-beyblade-x-xstadium-official",
|
|
1614
1614
|
title: "Beyblade X BX-08 XStadium — Official Takara Tomy Tournament Stadium",
|
|
1615
1615
|
description: "The official Beyblade X XStadium (BX-08) — required for authentic Beyblade X play. The XStadium features the new X-Line rail system around the interior which enables the Extreme Dash (X-Dash) finishing move unique to Beyblade X. Two separate battle modes: standard stadium floor and the optional X-Line insert. Official Takara Tomy Japan product — the same stadium used in all official Beyblade X tournaments.",
|
|
1616
|
-
|
|
1617
|
-
|
|
1616
|
+
categorySlugs: ["category-beyblade-x"],
|
|
1617
|
+
categoryNames: ["Beyblade X"],
|
|
1618
1618
|
brand: "Beyblade",
|
|
1619
1619
|
brandSlug: "brand-beyblade",
|
|
1620
1620
|
price: 399900,
|
|
@@ -1657,8 +1657,8 @@ const _rawProductsStandardSeedData = [
|
|
|
1657
1657
|
slug: "product-beyblade-burst-b184-tempest",
|
|
1658
1658
|
title: "Beyblade Burst QuadStrike B-184 Booster: Tempest Dragon — Official Takara Tomy",
|
|
1659
1659
|
description: "Beyblade Burst QuadStrike B-184 Tempest Dragon Booster Set — aggressive attack-type top designed for the QuadStrike format. Features the Dragon Bit, Attack 2 blade with four razor-edge contact points, and the Xtreme' driver for extreme speed. One of the top-tier QuadStrike competitive choices. Booster set includes the top and driver only — launcher sold separately. Authentic Takara Tomy Japan.",
|
|
1660
|
-
|
|
1661
|
-
|
|
1660
|
+
categorySlugs: ["category-beyblade-burst"],
|
|
1661
|
+
categoryNames: ["Beyblade Burst"],
|
|
1662
1662
|
brand: "Beyblade",
|
|
1663
1663
|
brandSlug: "brand-beyblade",
|
|
1664
1664
|
price: 149900,
|
|
@@ -1703,8 +1703,8 @@ const _rawProductsStandardSeedData = [
|
|
|
1703
1703
|
slug: "product-shf-vegeta-ssb",
|
|
1704
1704
|
title: "Bandai S.H.Figuarts Vegeta -Super Saiyan God Super Saiyan- (Dragon Ball Super)",
|
|
1705
1705
|
description: "Bandai S.H.Figuarts Vegeta in his Super Saiyan Blue (SSGSS) form from Dragon Ball Super. Standing approximately 14 cm tall with 20+ articulation points. Features blue gradient transparent hair, Galick Gun charging effect parts, six pairs of interchangeable hands, and two expression faceplates (determined and angry). Part of the DBS Resurrection F wave — pairs perfectly with the S.H.Figuarts Goku SSGSS for a dramatic display scene.",
|
|
1706
|
-
|
|
1707
|
-
|
|
1706
|
+
categorySlugs: ["category-poseable-figures"],
|
|
1707
|
+
categoryNames: ["Poseable Action Figures"],
|
|
1708
1708
|
brand: "Bandai",
|
|
1709
1709
|
brandSlug: "brand-bandai",
|
|
1710
1710
|
price: 649900,
|
|
@@ -1749,8 +1749,8 @@ const _rawProductsStandardSeedData = [
|
|
|
1749
1749
|
slug: "product-neca-tmnt-4figure-set",
|
|
1750
1750
|
title: "NECA Teenage Mutant Ninja Turtles: Classic 1990 Movie 7-Inch 4-Figure Set",
|
|
1751
1751
|
description: "NECA's definitive 1990 Teenage Mutant Ninja Turtles 7-inch figure set — Leonardo, Donatello, Michelangelo, and Raphael as they appeared in the original 1990 live-action film. Each figure features approximately 30 points of articulation, screen-accurate sculpting based on the actual film suits, multiple hands, and full weapon loadouts. Sold as a 4-figure set in a large collector window box. NECA's most popular TMNT release — extremely hard to find in India.",
|
|
1752
|
-
|
|
1753
|
-
|
|
1752
|
+
categorySlugs: ["category-scale-figures"],
|
|
1753
|
+
categoryNames: ["Scale Figures"],
|
|
1754
1754
|
brand: "NECA",
|
|
1755
1755
|
brandSlug: "brand-neca",
|
|
1756
1756
|
price: 1299900,
|
|
@@ -1796,8 +1796,8 @@ const _rawProductsStandardSeedData = [
|
|
|
1796
1796
|
slug: "product-funko-pop-goku-ssj3",
|
|
1797
1797
|
title: "Funko Pop! Animation: Dragon Ball Z — Goku Super Saiyan 3 #867 (Gitd Special)",
|
|
1798
1798
|
description: "Funko Pop! Dragon Ball Z Goku Super Saiyan 3 #867 — Glow in the Dark (GITD) chase special. This variant glows a vivid blue-green in darkness for a spectacular display effect. Stands approximately 9.5 cm tall in the standard Funko Pop vinyl style with the signature Super Saiyan 3 waist-length blonde hair. Comes in original window box with 'Chase' sticker. An instant sell-out at retail — this is a genuine GITD chase, not a standard release.",
|
|
1799
|
-
|
|
1800
|
-
|
|
1799
|
+
categorySlugs: ["category-poseable-figures"],
|
|
1800
|
+
categoryNames: ["Poseable Action Figures"],
|
|
1801
1801
|
brand: "Funko",
|
|
1802
1802
|
brandSlug: "brand-funko",
|
|
1803
1803
|
price: 249900,
|
|
@@ -1842,8 +1842,8 @@ const _rawProductsStandardSeedData = [
|
|
|
1842
1842
|
slug: "product-gundam-rg-strike-freedom",
|
|
1843
1843
|
title: "Bandai Gunpla RG 1/144 Strike Freedom Gundam — Real Grade Model Kit",
|
|
1844
1844
|
description: "Bandai Real Grade 1/144 Strike Freedom Gundam — one of the most visually stunning Real Grade kits ever produced. Features the iconic wing system with individual golden dragoon units that can be fanned out, an advanced MS Joint inner frame, twin rail cannons, Beam Rifles, and Beam Sabre effect parts. The golden DRAGOON units have individually adjustable angles for dramatic display poses. A showpiece even un-built — the gold chrome on the dragoons is breathtaking.",
|
|
1845
|
-
|
|
1846
|
-
|
|
1845
|
+
categorySlugs: ["category-gunpla"],
|
|
1846
|
+
categoryNames: ["Gunpla"],
|
|
1847
1847
|
brand: "Bandai",
|
|
1848
1848
|
brandSlug: "brand-bandai",
|
|
1849
1849
|
price: 249900,
|
|
@@ -1889,8 +1889,8 @@ const _rawProductsStandardSeedData = [
|
|
|
1889
1889
|
slug: "product-nendoroid-zero-two",
|
|
1890
1890
|
title: "Good Smile Company Nendoroid Zero Two (Darling in the FranXX) — #942",
|
|
1891
1891
|
description: "Good Smile Company Nendoroid #942 — Zero Two from Darling in the FranXX. One of the most beloved Nendoroids from the 2018 anime season. Stands approximately 10 cm tall in chibi style with 3 expression faceplates (standard, smiling, and winking), her iconic red horns, pink hair, and pilot suit. Includes optional hand parts and Nendoroid display stand. Re-release version — authentic GSC quality with original box and serial number.",
|
|
1892
|
-
|
|
1893
|
-
|
|
1892
|
+
categorySlugs: ["category-nendoroids-chibis"],
|
|
1893
|
+
categoryNames: ["Nendoroids & Chibis"],
|
|
1894
1894
|
brand: "Good Smile Company",
|
|
1895
1895
|
brandSlug: "brand-good-smile",
|
|
1896
1896
|
price: 529900,
|
|
@@ -1935,8 +1935,8 @@ const _rawProductsStandardSeedData = [
|
|
|
1935
1935
|
slug: "product-nendoroid-levi-aot",
|
|
1936
1936
|
title: "Good Smile Company Nendoroid Levi (Attack on Titan) — #390",
|
|
1937
1937
|
description: "Good Smile Company Nendoroid Levi Ackerman from Attack on Titan, #390. The fan-favourite Survey Corps captain rendered in chibi Nendoroid style. Includes 3 expression faceplates (neutral, combat, and cleaning mode!), ODM gear effect parts, thunder spear, and Nendoroid display stand. The iconic cleaning mode faceplate with mop accessory makes this one of the most unique Nendoroids available. Re-release edition.",
|
|
1938
|
-
|
|
1939
|
-
|
|
1938
|
+
categorySlugs: ["category-nendoroids-chibis"],
|
|
1939
|
+
categoryNames: ["Nendoroids & Chibis"],
|
|
1940
1940
|
brand: "Good Smile Company",
|
|
1941
1941
|
brandSlug: "brand-good-smile",
|
|
1942
1942
|
price: 489900,
|
|
@@ -1981,8 +1981,8 @@ const _rawProductsStandardSeedData = [
|
|
|
1981
1981
|
slug: "product-funko-pop-tanjiro-demon-slayer",
|
|
1982
1982
|
title: "Funko Pop! Animation: Demon Slayer — Tanjiro Kamado #855 (Kimetsu no Yaiba)",
|
|
1983
1983
|
description: "Funko Pop! Tanjiro Kamado from Demon Slayer: Kimetsu no Yaiba, #855. Features Tanjiro in his iconic black and green checker haori with Nichirin Sword. Stands approximately 9.5 cm tall in the standard Funko vinyl style. Comes in original window box. One of the most popular anime Funko Pops of the past 3 years — Demon Slayer collectors and casual fans alike want this one.",
|
|
1984
|
-
|
|
1985
|
-
|
|
1984
|
+
categorySlugs: ["category-poseable-figures"],
|
|
1985
|
+
categoryNames: ["Poseable Action Figures"],
|
|
1986
1986
|
brand: "Funko",
|
|
1987
1987
|
brandSlug: "brand-funko",
|
|
1988
1988
|
price: 159900,
|
|
@@ -2025,8 +2025,8 @@ const _rawProductsStandardSeedData = [
|
|
|
2025
2025
|
slug: "product-shf-sailor-moon-eternal",
|
|
2026
2026
|
title: "Bandai S.H.Figuarts Sailor Moon -Eternal- (Pretty Guardian Sailor Moon Eternal The Movie)",
|
|
2027
2027
|
description: "Bandai S.H.Figuarts Sailor Moon in her Eternal Sailor Moon form from the Sailor Moon Eternal films. This highly detailed figure stands approximately 14 cm tall with 20+ articulation points. Features the Eternal tiara, butterfly wing effect parts representing her transformation, multiple expression faceplates, and the Eternal Tiare weapon accessory. The butterfly wings are rendered in semi-translucent rainbow plastic — a stunning display piece for any magical girl fan.",
|
|
2028
|
-
|
|
2029
|
-
|
|
2028
|
+
categorySlugs: ["category-poseable-figures"],
|
|
2029
|
+
categoryNames: ["Poseable Action Figures"],
|
|
2030
2030
|
brand: "Bandai",
|
|
2031
2031
|
brandSlug: "brand-bandai",
|
|
2032
2032
|
price: 729900,
|
|
@@ -2071,8 +2071,8 @@ const _rawProductsStandardSeedData = [
|
|
|
2071
2071
|
slug: "product-funko-pop-deku-mha",
|
|
2072
2072
|
title: "Funko Pop! Animation: My Hero Academia — Izuku Midoriya (Deku) Full Cowl #1052",
|
|
2073
2073
|
description: "Funko Pop! Izuku Midoriya (Deku) in Full Cowl activation mode from My Hero Academia, #1052. Features Deku with lightning energy crackling around his body in the Full Cowl Smash pose. Stands approximately 9.5 cm with lightning effect moulded around the figure for extra visual impact. Window box — mint on card. Perfect companion to other MHA Funko Pops.",
|
|
2074
|
-
|
|
2075
|
-
|
|
2074
|
+
categorySlugs: ["category-poseable-figures"],
|
|
2075
|
+
categoryNames: ["Poseable Action Figures"],
|
|
2076
2076
|
brand: "Funko",
|
|
2077
2077
|
brandSlug: "brand-funko",
|
|
2078
2078
|
price: 169900,
|
|
@@ -2115,8 +2115,8 @@ const _rawProductsStandardSeedData = [
|
|
|
2115
2115
|
slug: "product-gsc-racing-miku-2023",
|
|
2116
2116
|
title: "Good Smile Company Racing Miku 2023 Ver. 1/7 Scale PVC Figure",
|
|
2117
2117
|
description: "Good Smile Company Racing Miku 2023 Ver. — 1/7 scale PVC statue of Hatsune Miku in her annual Racing Queen outfit designed by NIDY-2D- for the Good Smile Racing team. Stands approximately 26 cm tall on an included display base styled after a racing circuit. Features Miku in a detailed racing suit with racing number and sponsor details, her iconic twin-tails flowing in the wind. A centrepiece figure for any Miku collection.",
|
|
2118
|
-
|
|
2119
|
-
|
|
2118
|
+
categorySlugs: ["category-scale-figures"],
|
|
2119
|
+
categoryNames: ["Scale Figures"],
|
|
2120
2120
|
brand: "Good Smile Company",
|
|
2121
2121
|
brandSlug: "brand-good-smile",
|
|
2122
2122
|
price: 899900,
|
|
@@ -2163,8 +2163,8 @@ const _rawProductsStandardSeedData = [
|
|
|
2163
2163
|
slug: "product-gundam-hg-barbatos-lupus-rex",
|
|
2164
2164
|
title: "Bandai Gunpla HG 1/144 Gundam Barbatos Lupus Rex — High Grade Kit",
|
|
2165
2165
|
description: "Bandai High Grade 1/144 Gundam Barbatos Lupus Rex from Mobile Suit Gundam: Iron-Blooded Orphans Season 2 — the final and most powerful form of ASW-G-08 Gundam Barbatos. Features the iconic giant tail blade, claws, Mace weapon, and unique hunched-back articulated silhouette. 140+ snap-fit parts with inner frame tech dividing system. Perfect entry point for IBO fans — one of the most poseable HG kits ever made.",
|
|
2166
|
-
|
|
2167
|
-
|
|
2166
|
+
categorySlugs: ["category-gunpla"],
|
|
2167
|
+
categoryNames: ["Gunpla"],
|
|
2168
2168
|
brand: "Bandai",
|
|
2169
2169
|
brandSlug: "brand-bandai",
|
|
2170
2170
|
price: 149900,
|
|
@@ -2209,8 +2209,8 @@ const _rawProductsStandardSeedData = [
|
|
|
2209
2209
|
slug: "product-gundam-mg-sazabi-verka",
|
|
2210
2210
|
title: "Bandai Gunpla MG 1/100 Sazabi Ver.Ka — Master Grade Model Kit",
|
|
2211
2211
|
description: "Bandai's masterpiece Master Grade Sazabi Ver.Ka — designed by Hajime Katoki, this is widely considered one of the greatest Gunpla kits ever produced. The 1/100 scale Sazabi features a 3-layer construction system: inner frame, external frame, and armour plating. 300+ parts include the iconic red armour panels, full funnels array (6 funnels), beam shotgun, and display stand. The psycho-frame cockpit is rendered in transparent green. An advanced build requiring patience and rewarded with an incredible display piece.",
|
|
2212
|
-
|
|
2213
|
-
|
|
2212
|
+
categorySlugs: ["category-gunpla"],
|
|
2213
|
+
categoryNames: ["Gunpla"],
|
|
2214
2214
|
brand: "Bandai",
|
|
2215
2215
|
brandSlug: "brand-bandai",
|
|
2216
2216
|
price: 649900,
|
|
@@ -2256,8 +2256,8 @@ const _rawProductsStandardSeedData = [
|
|
|
2256
2256
|
slug: "product-gundam-rg-evangelion-unit01",
|
|
2257
2257
|
title: "Bandai RG 1/144 Evangelion Unit-01 — Real Grade Model Kit (Rebuild of Evangelion)",
|
|
2258
2258
|
description: "Bandai's first ever non-Gundam Real Grade kit: the iconic Evangelion Unit-01 from Neon Genesis Evangelion / Rebuild of Evangelion. Despite being a non-Gunpla model, it uses the advanced Real Grade snap-fit inner frame system for exceptional poseability. The purple and green colour scheme is pre-coloured on the runners for an out-of-box accurate result. Includes progressive knife, pallet rifle, umbilical cable, and optional berserker Unit-01 expression parts.",
|
|
2259
|
-
|
|
2260
|
-
|
|
2259
|
+
categorySlugs: ["category-gunpla"],
|
|
2260
|
+
categoryNames: ["Gunpla"],
|
|
2261
2261
|
brand: "Bandai",
|
|
2262
2262
|
brandSlug: "brand-bandai",
|
|
2263
2263
|
price: 299900,
|
|
@@ -2302,8 +2302,8 @@ const _rawProductsStandardSeedData = [
|
|
|
2302
2302
|
slug: "product-gundam-hg-tallgeese-iii",
|
|
2303
2303
|
title: "Bandai Gunpla HG 1/144 Tallgeese III (Gundam Wing Endless Waltz)",
|
|
2304
2304
|
description: "Bandai High Grade 1/144 Tallgeese III from Gundam Wing Endless Waltz — the final, most fearsome form of the Tallgeese piloted by Treize Khushrenada's memory. Features the massive buster rifle cannon (larger than on standard Tallgeese), vernier thrusters, and an imposing white and gold colour scheme. A fan favourite from the Endless Waltz film — pairs perfectly with the RG Wing Gundam Zero from the same series.",
|
|
2305
|
-
|
|
2306
|
-
|
|
2305
|
+
categorySlugs: ["category-gunpla"],
|
|
2306
|
+
categoryNames: ["Gunpla"],
|
|
2307
2307
|
brand: "Bandai",
|
|
2308
2308
|
brandSlug: "brand-bandai",
|
|
2309
2309
|
price: 129900,
|
|
@@ -2349,8 +2349,8 @@ const _rawProductsStandardSeedData = [
|
|
|
2349
2349
|
slug: "product-vintage-pokemon-charizard-base-lp",
|
|
2350
2350
|
title: "Pokémon Base Set Charizard #4/102 Holo Rare — Lightly Played (LP) Raw Ungraded",
|
|
2351
2351
|
description: "Pokémon Base Set unlimited print Charizard #4/102 Holo Rare — Lightly Played (LP) condition, raw and ungraded. Under bright light: four corners show slight whitening on back, moderate whitening, minimal surface scratches on the front, and the holo shows a faint scratch pattern but no deep gouges. Centering is 60/40 front, 65/35 back — above average for this print run. This is an honest LP-grade Charizard. Would estimate PSA 5–6 range if submitted. A genuine original, not a counterfeit — holo pattern, font, and card stock all authentic.",
|
|
2352
|
-
|
|
2353
|
-
|
|
2352
|
+
categorySlugs: ["category-vintage-tcg"],
|
|
2353
|
+
categoryNames: ["Vintage TCG"],
|
|
2354
2354
|
brand: "The Pokémon Company",
|
|
2355
2355
|
brandSlug: "brand-pokemon-company",
|
|
2356
2356
|
price: 399900,
|
|
@@ -2396,8 +2396,8 @@ const _rawProductsStandardSeedData = [
|
|
|
2396
2396
|
slug: "product-vintage-hot-wheels-deora-1968",
|
|
2397
2397
|
title: "Hot Wheels Redline 1968 Deora — Aqua (Good Condition, Original)",
|
|
2398
2398
|
description: "Original 1968 Hot Wheels Redline Deora in Aqua — one of the most iconic and distinctive castings from the original Hot Wheels line. The Deora is a custom surf van based on the Alexander Brothers custom, with a surfboard on the roof and the distinctive hot rod body. This example is in Good (G) condition: honest play wear on the aqua paint, one surfboard present (second board missing), red-line tyres intact, all four wheels spin. Sourced from a Kolkata collector's childhood toy collection — original owner documentation available.",
|
|
2399
|
-
|
|
2400
|
-
|
|
2399
|
+
categorySlugs: ["category-hot-wheels"],
|
|
2400
|
+
categoryNames: ["Hot Wheels"],
|
|
2401
2401
|
brand: "Hot Wheels",
|
|
2402
2402
|
brandSlug: "brand-hot-wheels",
|
|
2403
2403
|
price: 649900,
|
|
@@ -2446,8 +2446,8 @@ const _rawProductsStandardSeedData = [
|
|
|
2446
2446
|
slug: "product-vintage-motu-he-man-1982",
|
|
2447
2447
|
title: "Masters of the Universe: He-Man Action Figure (1982, First Year, Japan Import)",
|
|
2448
2448
|
description: "Original 1982 first-year Masters of the Universe He-Man action figure — the iconic Mattel classic. This is a Japan-import version (Takara distributed) from the original 1982 production run, identifiable by the Takara sticker on the back of the packaging bubble. Figure is in Very Good (VG) condition: vibrant paint colours, all accessories present (Power Sword, battle axe, shield), no missing rubber bands (the inner torso twist mechanism is functional), and minor paint wear on the chest armour consistent with a 40+ year old toy. A cornerstone of any vintage 80s toy collection.",
|
|
2449
|
-
|
|
2450
|
-
|
|
2449
|
+
categorySlugs: ["category-vintage-figures"],
|
|
2450
|
+
categoryNames: ["Vintage Figures"],
|
|
2451
2451
|
brand: "McFarlane Toys",
|
|
2452
2452
|
brandSlug: "brand-mcfarlane",
|
|
2453
2453
|
price: 499900,
|
|
@@ -2496,8 +2496,8 @@ const _rawProductsStandardSeedData = [
|
|
|
2496
2496
|
slug: "product-vintage-pokemon-jungle-vaporeon-holo",
|
|
2497
2497
|
title: "Pokémon WOTC Jungle Set: Vaporeon #12/64 Holo Rare — Near Mint Raw",
|
|
2498
2498
|
description: "Pokémon WOTC Jungle Set Vaporeon #12/64 Holo Rare in Near Mint raw ungraded condition. One of the most beautiful holo artworks from the Jungle set — Vaporeon emerging from a lake backdrop. This copy has four sharp corners, excellent holo lustre with only the faintest swirl pattern under direct light, and no visible surface scratches. Centering is 55/45 front, 55/45 back — excellent for WOTC era. Would estimate PSA 8–9 range if submitted. Sourced from a Kolkata estate sale collection — original print runs from the late 1990s WOTC era.",
|
|
2499
|
-
|
|
2500
|
-
|
|
2499
|
+
categorySlugs: ["category-vintage-tcg"],
|
|
2500
|
+
categoryNames: ["Vintage TCG"],
|
|
2501
2501
|
brand: "The Pokémon Company",
|
|
2502
2502
|
brandSlug: "brand-pokemon-company",
|
|
2503
2503
|
price: 89900,
|
|
@@ -2543,8 +2543,8 @@ const _rawProductsStandardSeedData = [
|
|
|
2543
2543
|
slug: "product-pokemon-journey-together-etb",
|
|
2544
2544
|
title: "Pokémon TCG: Scarlet & Violet — Journey Together Elite Trainer Box",
|
|
2545
2545
|
description: "The Journey Together Elite Trainer Box celebrates the bond between Trainers and their Pokémon partners. Contains 9 Scarlet & Violet—Journey Together booster packs, 65 card sleeves, 45 Energy cards, a player's guide, 6 damage-counter dice, 1 competition-legal coin-flip die, and a collector's box.",
|
|
2546
|
-
|
|
2547
|
-
|
|
2546
|
+
categorySlugs: ["category-pokemon-tcg"],
|
|
2547
|
+
categoryNames: ["Pokémon TCG"],
|
|
2548
2548
|
brand: "The Pokémon Company",
|
|
2549
2549
|
brandSlug: "brand-pokemon-company",
|
|
2550
2550
|
price: 479900,
|
|
@@ -2576,8 +2576,8 @@ const _rawProductsStandardSeedData = [
|
|
|
2576
2576
|
slug: "product-pokemon-surging-sparks-booster",
|
|
2577
2577
|
title: "Pokémon TCG: Scarlet & Violet — Surging Sparks Booster Box (36 Packs)",
|
|
2578
2578
|
description: "A sealed booster box of Scarlet & Violet—Surging Sparks containing 36 booster packs. Features Pikachu ex, Raichu ex, and fan-favourite Special Illustration Rares. Ideal for set-building or investment.",
|
|
2579
|
-
|
|
2580
|
-
|
|
2579
|
+
categorySlugs: ["category-pokemon-tcg"],
|
|
2580
|
+
categoryNames: ["Pokémon TCG"],
|
|
2581
2581
|
brand: "The Pokémon Company",
|
|
2582
2582
|
brandSlug: "brand-pokemon-company",
|
|
2583
2583
|
price: 1299900,
|
|
@@ -2610,8 +2610,8 @@ const _rawProductsStandardSeedData = [
|
|
|
2610
2610
|
slug: "product-pokemon-charizard-ex-sar-sv",
|
|
2611
2611
|
title: "Pokémon TCG: Charizard ex — Special Illustration Rare (SV3 Obsidian Flames)",
|
|
2612
2612
|
description: "Single card — Charizard ex Special Illustration Rare from Scarlet & Violet Obsidian Flames. This stunning alt-art features Charizard ex in a dynamic pose against a fiery backdrop. NM/M condition, stored in penny sleeve and toploader.",
|
|
2613
|
-
|
|
2614
|
-
|
|
2613
|
+
categorySlugs: ["category-pokemon-tcg"],
|
|
2614
|
+
categoryNames: ["Pokémon TCG"],
|
|
2615
2615
|
brand: "The Pokémon Company",
|
|
2616
2616
|
brandSlug: "brand-pokemon-company",
|
|
2617
2617
|
price: 349900,
|
|
@@ -2643,8 +2643,8 @@ const _rawProductsStandardSeedData = [
|
|
|
2643
2643
|
slug: "product-pokemon-pikachu-ex-sar-sv",
|
|
2644
2644
|
title: "Pokémon TCG: Pikachu ex — Special Illustration Rare (SV6.5 Shrouded Fable)",
|
|
2645
2645
|
description: "Single card — Pikachu ex Special Illustration Rare from Scarlet & Violet Shrouded Fable. The beloved alt-art depicting Pikachu in a dreamy moonlit setting. Mint condition straight from pack.",
|
|
2646
|
-
|
|
2647
|
-
|
|
2646
|
+
categorySlugs: ["category-pokemon-tcg"],
|
|
2647
|
+
categoryNames: ["Pokémon TCG"],
|
|
2648
2648
|
brand: "The Pokémon Company",
|
|
2649
2649
|
brandSlug: "brand-pokemon-company",
|
|
2650
2650
|
price: 199900,
|
|
@@ -2676,8 +2676,8 @@ const _rawProductsStandardSeedData = [
|
|
|
2676
2676
|
slug: "product-pokemon-paldea-evolved-etb",
|
|
2677
2677
|
title: "Pokémon TCG: Scarlet & Violet — Paldea Evolved Elite Trainer Box",
|
|
2678
2678
|
description: "Paldea Evolved ETB featuring Iono as the sleeves art. Includes 9 booster packs, 65 sleeves, 45 Energy cards, player's guide, damage dice, flip die, condition markers, and collector's box. Paldea Evolved introduced the hit Iono SAR and Iron Valiant ex cards.",
|
|
2679
|
-
|
|
2680
|
-
|
|
2679
|
+
categorySlugs: ["category-pokemon-tcg"],
|
|
2680
|
+
categoryNames: ["Pokémon TCG"],
|
|
2681
2681
|
brand: "The Pokémon Company",
|
|
2682
2682
|
brandSlug: "brand-pokemon-company",
|
|
2683
2683
|
price: 429900,
|
|
@@ -2709,8 +2709,8 @@ const _rawProductsStandardSeedData = [
|
|
|
2709
2709
|
slug: "product-pokemon-obsidian-flames-etb",
|
|
2710
2710
|
title: "Pokémon TCG: Scarlet & Violet — Obsidian Flames Elite Trainer Box",
|
|
2711
2711
|
description: "Obsidian Flames ETB with Terastallized Charizard ex sleeve art. Home of the infamous Charizard ex SIR and Tyranitar ex SAR. Contains 9 booster packs plus all standard ETB accessories.",
|
|
2712
|
-
|
|
2713
|
-
|
|
2712
|
+
categorySlugs: ["category-pokemon-tcg"],
|
|
2713
|
+
categoryNames: ["Pokémon TCG"],
|
|
2714
2714
|
brand: "The Pokémon Company",
|
|
2715
2715
|
brandSlug: "brand-pokemon-company",
|
|
2716
2716
|
price: 449900,
|
|
@@ -2741,8 +2741,8 @@ const _rawProductsStandardSeedData = [
|
|
|
2741
2741
|
slug: "product-pokemon-151-etb",
|
|
2742
2742
|
title: "Pokémon TCG: Scarlet & Violet — 151 Elite Trainer Box",
|
|
2743
2743
|
description: "The 151 ETB celebrates the original 151 Pokémon with stunning art across the entire set. Contains 9 SV—151 booster packs, 65 card sleeves featuring Mew ex, 45 Energy cards, and all ETB accessories. The set features Charizard ex, Blastoise ex, Venusaur ex, and fan-favourite vintage alt-arts.",
|
|
2744
|
-
|
|
2745
|
-
|
|
2744
|
+
categorySlugs: ["category-pokemon-tcg"],
|
|
2745
|
+
categoryNames: ["Pokémon TCG"],
|
|
2746
2746
|
brand: "The Pokémon Company",
|
|
2747
2747
|
brandSlug: "brand-pokemon-company",
|
|
2748
2748
|
price: 549900,
|
|
@@ -2775,8 +2775,8 @@ const _rawProductsStandardSeedData = [
|
|
|
2775
2775
|
slug: "product-pokemon-mewtwo-ex-sar-sv",
|
|
2776
2776
|
title: "Pokémon TCG: Mewtwo ex — Special Illustration Rare (SV — 151)",
|
|
2777
2777
|
description: "Single card — Mewtwo ex Special Illustration Rare from Scarlet & Violet 151. Features the iconic Mewtwo in an ethereal laboratory setting. One of the most sought-after SIRs from the 151 set. NM condition from personal collection.",
|
|
2778
|
-
|
|
2779
|
-
|
|
2778
|
+
categorySlugs: ["category-pokemon-tcg"],
|
|
2779
|
+
categoryNames: ["Pokémon TCG"],
|
|
2780
2780
|
brand: "The Pokémon Company",
|
|
2781
2781
|
brandSlug: "brand-pokemon-company",
|
|
2782
2782
|
price: 279900,
|
|
@@ -2809,8 +2809,8 @@ const _rawProductsStandardSeedData = [
|
|
|
2809
2809
|
slug: "product-onepiece-op05-booster-box",
|
|
2810
2810
|
title: "One Piece Card Game: OP-05 Awakening of the New Era Booster Box",
|
|
2811
2811
|
description: "Sealed booster box of One Piece Card Game OP-05 Awakening of the New Era, 24 packs per box. Features the Supernovas, Law, Kid, and iconic characters from the Wano arc. High pull rates for Leaders and Secret Rares.",
|
|
2812
|
-
|
|
2813
|
-
|
|
2812
|
+
categorySlugs: ["category-sealed-product"],
|
|
2813
|
+
categoryNames: ["Sealed Product"],
|
|
2814
2814
|
brand: "Bandai",
|
|
2815
2815
|
brandSlug: "brand-bandai",
|
|
2816
2816
|
price: 499900,
|
|
@@ -2842,8 +2842,8 @@ const _rawProductsStandardSeedData = [
|
|
|
2842
2842
|
slug: "product-yugioh-25th-anniversary-tin",
|
|
2843
2843
|
title: "Yu-Gi-Oh! 25th Anniversary Tin: Dueling Heroes (Mega-Pack Edition)",
|
|
2844
2844
|
description: "The 25th Anniversary Tin celebrates 25 years of Yu-Gi-Oh! with a Mega-Pack inside. Contains 1 Ultra Rare foil card (Blue-Eyes White Dragon, Dark Magician, or Exodia) plus 3 Mega-Packs each containing 18 cards. Collector's tin with premium finish.",
|
|
2845
|
-
|
|
2846
|
-
|
|
2845
|
+
categorySlugs: ["category-sealed-product"],
|
|
2846
|
+
categoryNames: ["Sealed Product"],
|
|
2847
2847
|
brand: "Konami",
|
|
2848
2848
|
brandSlug: "brand-konami",
|
|
2849
2849
|
price: 249900,
|
|
@@ -2874,8 +2874,8 @@ const _rawProductsStandardSeedData = [
|
|
|
2874
2874
|
slug: "product-onepiece-op06-booster-box",
|
|
2875
2875
|
title: "One Piece Card Game: OP-06 Wings of the Captain Booster Box",
|
|
2876
2876
|
description: "Sealed booster box of OP-06 Wings of the Captain, featuring Whitebeard, Shanks, and the Yonko. 24 packs per box. English edition. Whitebeard Leader is among the most competitive in the current meta.",
|
|
2877
|
-
|
|
2878
|
-
|
|
2877
|
+
categorySlugs: ["category-sealed-product"],
|
|
2878
|
+
categoryNames: ["Sealed Product"],
|
|
2879
2879
|
brand: "Bandai",
|
|
2880
2880
|
brandSlug: "brand-bandai",
|
|
2881
2881
|
price: 549900,
|
|
@@ -2906,8 +2906,8 @@ const _rawProductsStandardSeedData = [
|
|
|
2906
2906
|
slug: "product-mtg-duskmourn-booster-box",
|
|
2907
2907
|
title: "Magic: The Gathering — Duskmourn: House of Horror Play Booster Box",
|
|
2908
2908
|
description: "Play Booster Box for Duskmourn: House of Horror, MTG's horror-themed set. Contains 36 Play Boosters. Features haunted house rooms, horror creature types, and iconic reprints. Play Boosters replaced Draft Boosters as the primary opening format.",
|
|
2909
|
-
|
|
2910
|
-
|
|
2909
|
+
categorySlugs: ["category-sealed-product"],
|
|
2910
|
+
categoryNames: ["Sealed Product"],
|
|
2911
2911
|
brand: "Hasbro",
|
|
2912
2912
|
brandSlug: "brand-hasbro",
|
|
2913
2913
|
price: 599900,
|
|
@@ -2939,8 +2939,8 @@ const _rawProductsStandardSeedData = [
|
|
|
2939
2939
|
slug: "product-onepiece-op03-booster-box",
|
|
2940
2940
|
title: "One Piece Card Game: OP-03 Pillars of Strength Booster Box",
|
|
2941
2941
|
description: "Sealed booster box of OP-03 Pillars of Strength featuring Kaido, Yamato, Doflamingo, and Katakuri. 24 packs per box. English edition. This set is highly sought-after for its Secret Rare leaders.",
|
|
2942
|
-
|
|
2943
|
-
|
|
2942
|
+
categorySlugs: ["category-sealed-product"],
|
|
2943
|
+
categoryNames: ["Sealed Product"],
|
|
2944
2944
|
brand: "Bandai",
|
|
2945
2945
|
brandSlug: "brand-bandai",
|
|
2946
2946
|
price: 599900,
|
|
@@ -2972,8 +2972,8 @@ const _rawProductsStandardSeedData = [
|
|
|
2972
2972
|
slug: "product-yugioh-blue-eyes-lob-nm",
|
|
2973
2973
|
title: "Yu-Gi-Oh! Blue-Eyes White Dragon — LOB 1st Edition (Near Mint)",
|
|
2974
2974
|
description: "Single card — Blue-Eyes White Dragon from Legend of Blue Eyes White Dragon (LOB), 1st Edition, Near Mint condition. One of the most iconic cards in the history of Yu-Gi-Oh!. Stored in penny sleeve and hard case since purchase. Excellent candidate for PSA grading.",
|
|
2975
|
-
|
|
2976
|
-
|
|
2975
|
+
categorySlugs: ["category-vintage-tcg"],
|
|
2976
|
+
categoryNames: ["Vintage TCG"],
|
|
2977
2977
|
brand: "Konami",
|
|
2978
2978
|
brandSlug: "brand-konami",
|
|
2979
2979
|
price: 299900,
|
|
@@ -3005,8 +3005,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3005
3005
|
slug: "product-yugioh-dark-magician-lob-psa9",
|
|
3006
3006
|
title: "Yu-Gi-Oh! Dark Magician — LOB 1st Edition PSA 9 (MINT)",
|
|
3007
3007
|
description: "Single graded card — Dark Magician from Legend of Blue Eyes White Dragon, 1st Edition, graded PSA 9 MINT. Housed in PSA hard case. The Dark Magician is one of Yugi's signature cards and among the most collected vintage YGO cards. PSA 9 examples in 1st Edition are increasingly rare.",
|
|
3008
|
-
|
|
3009
|
-
|
|
3008
|
+
categorySlugs: ["category-vintage-tcg"],
|
|
3009
|
+
categoryNames: ["Vintage TCG"],
|
|
3010
3010
|
brand: "Konami",
|
|
3011
3011
|
brandSlug: "brand-konami",
|
|
3012
3012
|
price: 899900,
|
|
@@ -3039,8 +3039,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3039
3039
|
slug: "product-hot-wheels-car-culture-german",
|
|
3040
3040
|
title: "Hot Wheels Car Culture: German Cars & Coffee (5-Car Set)",
|
|
3041
3041
|
description: "Hot Wheels Car Culture German Cars & Coffee 5-car assortment sealed case. Features premium die-cast recreations of iconic German automobiles: BMW M3 E30, Porsche 911 GT3 RS, Mercedes-AMG GT, Audi RS5, and Volkswagen Golf GTI Mk2. Real Riders rubber tyres, detailed engine details.",
|
|
3042
|
-
|
|
3043
|
-
|
|
3042
|
+
categorySlugs: ["category-hot-wheels"],
|
|
3043
|
+
categoryNames: ["Hot Wheels"],
|
|
3044
3044
|
brand: "Hot Wheels",
|
|
3045
3045
|
brandSlug: "brand-hot-wheels",
|
|
3046
3046
|
price: 199900,
|
|
@@ -3071,8 +3071,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3071
3071
|
slug: "product-hot-wheels-rlc-porsche-918",
|
|
3072
3072
|
title: "Hot Wheels RLC Exclusive: Porsche 918 Spyder — Spectraflame White",
|
|
3073
3073
|
description: "Hot Wheels Red Line Club (RLC) Exclusive Porsche 918 Spyder in Spectraflame White with Real Riders rubber tyres. Limited production RLC release — sold out at retail. Includes collector's card and numbered certificate. Car is brand new in sealed protective case.",
|
|
3074
|
-
|
|
3075
|
-
|
|
3074
|
+
categorySlugs: ["category-hot-wheels"],
|
|
3075
|
+
categoryNames: ["Hot Wheels"],
|
|
3076
3076
|
brand: "Hot Wheels",
|
|
3077
3077
|
brandSlug: "brand-hot-wheels",
|
|
3078
3078
|
price: 349900,
|
|
@@ -3104,8 +3104,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3104
3104
|
slug: "product-tomica-land-cruiser-300",
|
|
3105
3105
|
title: "Tomica: Toyota Land Cruiser 300 (No. 107) — Diecast 1:64",
|
|
3106
3106
|
description: "Official Tomica die-cast model of the Toyota Land Cruiser 300 (LC300) in scale 1:64. Tomica No. 107. Comes in original Tomica box. Made in Japan. Faithful recreation with opening doors, accurate body lines, and detailed interior.",
|
|
3107
|
-
|
|
3108
|
-
|
|
3107
|
+
categorySlugs: ["category-tomica"],
|
|
3108
|
+
categoryNames: ["Tomica"],
|
|
3109
3109
|
brand: "Tomica",
|
|
3110
3110
|
brandSlug: "brand-tomica",
|
|
3111
3111
|
price: 59900,
|
|
@@ -3136,8 +3136,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3136
3136
|
slug: "product-tomica-civic-type-r-fl5",
|
|
3137
3137
|
title: "Tomica: Honda Civic Type R FL5 (No. 29) — Diecast 1:64",
|
|
3138
3138
|
description: "Tomica die-cast model of the Honda Civic Type R FL5 in Championship White. Tomica No. 29. Features opening doors, authentic spoiler detail, and precise body lines. Made in Vietnam. Original Tomica packaging.",
|
|
3139
|
-
|
|
3140
|
-
|
|
3139
|
+
categorySlugs: ["category-tomica"],
|
|
3140
|
+
categoryNames: ["Tomica"],
|
|
3141
3141
|
brand: "Tomica",
|
|
3142
3142
|
brandSlug: "brand-tomica",
|
|
3143
3143
|
price: 64900,
|
|
@@ -3168,8 +3168,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3168
3168
|
slug: "product-hot-wheels-ultra-hots-5pack",
|
|
3169
3169
|
title: "Hot Wheels Ultra Hots 5-Car Gift Pack — Premium Retro Assortment",
|
|
3170
3170
|
description: "Hot Wheels Ultra Hots premium 5-car gift pack featuring retro-styled graphics and Real Riders tyres. Each car in this pack is a tribute to the legendary Ultra Hots line from the 1980s with modern die-cast quality.",
|
|
3171
|
-
|
|
3172
|
-
|
|
3171
|
+
categorySlugs: ["category-hot-wheels"],
|
|
3172
|
+
categoryNames: ["Hot Wheels"],
|
|
3173
3173
|
brand: "Hot Wheels",
|
|
3174
3174
|
brandSlug: "brand-hot-wheels",
|
|
3175
3175
|
price: 169900,
|
|
@@ -3200,8 +3200,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3200
3200
|
slug: "product-matchbox-moving-parts-assortment",
|
|
3201
3201
|
title: "Matchbox Moving Parts 5-Car Assortment (2024 Edition)",
|
|
3202
3202
|
description: "Matchbox Moving Parts series 5-car assortment with working hoods, doors, and trunks that open and close. 2024 edition includes SUVs and trucks. Recycled materials construction. 1:64 scale die-cast.",
|
|
3203
|
-
|
|
3204
|
-
|
|
3203
|
+
categorySlugs: ["category-hot-wheels"],
|
|
3204
|
+
categoryNames: ["Hot Wheels"],
|
|
3205
3205
|
brand: "Matchbox",
|
|
3206
3206
|
brandSlug: "brand-matchbox",
|
|
3207
3207
|
price: 149900,
|
|
@@ -3232,8 +3232,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3232
3232
|
slug: "product-corgi-aston-martin-db5",
|
|
3233
3233
|
title: "Corgi: Aston Martin DB5 — James Bond 007 Edition (1:36 Scale)",
|
|
3234
3234
|
description: "Corgi die-cast Aston Martin DB5 in the iconic James Bond 007 livery. Features working ejector seat mechanism, revolving number plates, and retractable machine guns — all the Q-branch gadgets. 1:36 scale. Comes in presentation box. A must-have for Bond and die-cast collectors.",
|
|
3235
|
-
|
|
3236
|
-
|
|
3235
|
+
categorySlugs: ["category-hot-wheels"],
|
|
3236
|
+
categoryNames: ["Hot Wheels"],
|
|
3237
3237
|
brand: "Corgi",
|
|
3238
3238
|
brandSlug: "brand-corgi",
|
|
3239
3239
|
price: 299900,
|
|
@@ -3266,8 +3266,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3266
3266
|
slug: "product-beyblade-x-bx01-dran-sword-starter-pack",
|
|
3267
3267
|
title: "Beyblade X: BX-01 Dran Sword 3-60F — Starter Pack",
|
|
3268
3268
|
description: "Official Beyblade X BX-01 Dran Sword 3-60F starter pack. The launch set that introduced the Beyblade X format with the new Xtreme Dash and Xtreme Line mechanics. Includes Dran Sword Beyblade, BX Launcher, and ripcord. Perfect entry point for the X-generation format.",
|
|
3269
|
-
|
|
3270
|
-
|
|
3269
|
+
categorySlugs: ["category-beyblade-x"],
|
|
3270
|
+
categoryNames: ["Beyblade X"],
|
|
3271
3271
|
brand: "Takara Tomy",
|
|
3272
3272
|
brandSlug: "brand-takara-tomy",
|
|
3273
3273
|
price: 159900,
|
|
@@ -3298,8 +3298,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3298
3298
|
slug: "product-beyblade-x-bx07-hells-chain",
|
|
3299
3299
|
title: "Beyblade X: BX-07 Hells Chain 5-60HT — Booster",
|
|
3300
3300
|
description: "Beyblade X BX-07 Hells Chain 5-60HT booster pack. A stamina-type Beyblade with the unique HT (High Taper) driver for extended spin. One of the most competitive X-format stamina Beyblades. Official Takara Tomy release.",
|
|
3301
|
-
|
|
3302
|
-
|
|
3301
|
+
categorySlugs: ["category-beyblade-x"],
|
|
3302
|
+
categoryNames: ["Beyblade X"],
|
|
3303
3303
|
brand: "Takara Tomy",
|
|
3304
3304
|
brandSlug: "brand-takara-tomy",
|
|
3305
3305
|
price: 139900,
|
|
@@ -3330,8 +3330,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3330
3330
|
slug: "product-beyblade-x-bx09-rd-dragon",
|
|
3331
3331
|
title: "Beyblade X: BX-09 Rd (Red) Dragon 4-80B — Booster",
|
|
3332
3332
|
description: "Beyblade X BX-09 Rd Dragon 4-80B booster pack. A balance-type Beyblade with wide 4 blades and the B (Ball) driver. Versatile attack/balance combo with the iconic dragon motif. Popular in tournaments across India.",
|
|
3333
|
-
|
|
3334
|
-
|
|
3333
|
+
categorySlugs: ["category-beyblade-x"],
|
|
3334
|
+
categoryNames: ["Beyblade X"],
|
|
3335
3335
|
brand: "Takara Tomy",
|
|
3336
3336
|
brandSlug: "brand-takara-tomy",
|
|
3337
3337
|
price: 149900,
|
|
@@ -3362,8 +3362,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3362
3362
|
slug: "product-beyblade-x-bx12-phoenix-wing",
|
|
3363
3363
|
title: "Beyblade X: BX-12 Phoenix Wing 9-60GF — Booster",
|
|
3364
3364
|
description: "Beyblade X BX-12 Phoenix Wing 9-60GF booster pack. A defence-type Beyblade with the GF (Gear Flat) driver for high-speed movement and defence. The Phoenix Wing features unique 9-point blade design for superior defence and Xtreme Dash activation.",
|
|
3365
|
-
|
|
3366
|
-
|
|
3365
|
+
categorySlugs: ["category-beyblade-x"],
|
|
3366
|
+
categoryNames: ["Beyblade X"],
|
|
3367
3367
|
brand: "Takara Tomy",
|
|
3368
3368
|
brandSlug: "brand-takara-tomy",
|
|
3369
3369
|
price: 159900,
|
|
@@ -3394,8 +3394,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3394
3394
|
slug: "product-beyblade-x-bx16-sword-launcher",
|
|
3395
3395
|
title: "Beyblade X: BX-16 Sword Launcher — String Launcher (Official)",
|
|
3396
3396
|
description: "Official Beyblade X BX-16 Sword Launcher. High-performance string launcher compatible with all Beyblade X beyblades. Features a sword grip design for precise launching angle control. Recommended for competitive play.",
|
|
3397
|
-
|
|
3398
|
-
|
|
3397
|
+
categorySlugs: ["category-beyblade-x"],
|
|
3398
|
+
categoryNames: ["Beyblade X"],
|
|
3399
3399
|
brand: "Takara Tomy",
|
|
3400
3400
|
brandSlug: "brand-takara-tomy",
|
|
3401
3401
|
price: 89900,
|
|
@@ -3429,8 +3429,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3429
3429
|
partOfBundleTitles: ["LetItRip Curated: Premium Articulated Figure Display Set"],
|
|
3430
3430
|
title: "figma: The Legend of Zelda: Tears of the Kingdom — Link (Non-Scale)",
|
|
3431
3431
|
description: "Max Factory figma articulated figure of Link from The Legend of Zelda: Tears of the Kingdom. Features 30+ points of articulation, Ultrahand ability accessories, multiple interchangeable expression faceplates, and weapons including the Master Sword and Hylian Shield. Non-scale PVC/ABS.",
|
|
3432
|
-
|
|
3433
|
-
|
|
3432
|
+
categorySlugs: ["category-poseable-figures"],
|
|
3433
|
+
categoryNames: ["Poseable Figures"],
|
|
3434
3434
|
brand: "Max Factory",
|
|
3435
3435
|
brandSlug: "brand-max-factory",
|
|
3436
3436
|
price: 699900,
|
|
@@ -3464,8 +3464,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3464
3464
|
partOfBundleTitles: ["LetItRip Curated: Anime Funko Pop Starter Collection"],
|
|
3465
3465
|
title: "Funko Pop! Animation: Jujutsu Kaisen — Gojo Satoru (Blindfold) #1373",
|
|
3466
3466
|
description: "Funko Pop! Animation figure of Gojo Satoru from Jujutsu Kaisen, depicting him with his iconic blindfold. Vinyl figure stands approx. 3.75 inches tall. Official licensed product. Comes in standard window-display box.",
|
|
3467
|
-
|
|
3468
|
-
|
|
3467
|
+
categorySlugs: ["category-poseable-figures"],
|
|
3468
|
+
categoryNames: ["Poseable Figures"],
|
|
3469
3469
|
brand: "Funko",
|
|
3470
3470
|
brandSlug: "brand-funko",
|
|
3471
3471
|
price: 149900,
|
|
@@ -3496,8 +3496,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3496
3496
|
slug: "product-nendoroid-hatsune-miku-v4x",
|
|
3497
3497
|
title: "Nendoroid: Hatsune Miku V4X — Good Smile Company",
|
|
3498
3498
|
description: "Good Smile Company Nendoroid of Hatsune Miku in her V4X design. Features the upgraded V4X twin-tail design with multiple interchangeable parts and expression faceplates. Includes leek accessory, microphone stand, and posing base. Approx. 100mm PVC figure.",
|
|
3499
|
-
|
|
3500
|
-
|
|
3499
|
+
categorySlugs: ["category-nendoroids-chibis"],
|
|
3500
|
+
categoryNames: ["Nendoroids & Chibis"],
|
|
3501
3501
|
brand: "Good Smile Company",
|
|
3502
3502
|
brandSlug: "brand-good-smile",
|
|
3503
3503
|
price: 499900,
|
|
@@ -3531,8 +3531,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3531
3531
|
partOfBundleTitles: ["LetItRip Curated: Premium Articulated Figure Display Set"],
|
|
3532
3532
|
title: "S.H.Figuarts: Dragon Ball Super — Ultra Instinct Goku (2nd Release)",
|
|
3533
3533
|
description: "Bandai S.H.Figuarts Ultra Instinct Goku from Dragon Ball Super. 2nd release with improved articulation and silver aura effect parts. Features multiple hand sets, energy effect parts, and display stand. Approx. 140mm. Official Bandai Spirits product.",
|
|
3534
|
-
|
|
3535
|
-
|
|
3534
|
+
categorySlugs: ["category-poseable-figures"],
|
|
3535
|
+
categoryNames: ["Poseable Figures"],
|
|
3536
3536
|
brand: "Bandai",
|
|
3537
3537
|
brandSlug: "brand-bandai",
|
|
3538
3538
|
price: 649900,
|
|
@@ -3566,8 +3566,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3566
3566
|
partOfBundleTitles: ["LetItRip Curated: Anime Funko Pop Starter Collection"],
|
|
3567
3567
|
title: "Funko Pop! Deluxe: Demon Slayer — Tanjiro Kamado with Nezuko (Diorama)",
|
|
3568
3568
|
description: "Funko Pop! Deluxe figure of Tanjiro Kamado with Nezuko from Demon Slayer: Kimetsu no Yaiba. Diorama set with Tanjiro in battle pose and Nezuko in bamboo-muzzle form. Larger format deluxe figure with detailed base. Official licensed product.",
|
|
3569
|
-
|
|
3570
|
-
|
|
3569
|
+
categorySlugs: ["category-poseable-figures"],
|
|
3570
|
+
categoryNames: ["Poseable Figures"],
|
|
3571
3571
|
brand: "Funko",
|
|
3572
3572
|
brandSlug: "brand-funko",
|
|
3573
3573
|
price: 249900,
|
|
@@ -3600,8 +3600,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3600
3600
|
partOfBundleTitles: ["LetItRip Curated: Premium Articulated Figure Display Set"],
|
|
3601
3601
|
title: "MAFEX No.240: Miles Morales Spider-Man (Across the Spider-Verse)",
|
|
3602
3602
|
description: "Medicom Toy MAFEX No.240 Miles Morales Spider-Man based on his appearance in Across the Spider-Verse. Highly articulated figure with fabric suit elements, web effect parts, and multiple expression faceplates. Approx. 155mm. One of the most detailed Miles Morales figures available.",
|
|
3603
|
-
|
|
3604
|
-
|
|
3603
|
+
categorySlugs: ["category-poseable-figures"],
|
|
3604
|
+
categoryNames: ["Poseable Figures"],
|
|
3605
3605
|
brand: "Medicom Toy",
|
|
3606
3606
|
brandSlug: "brand-medicom-toy",
|
|
3607
3607
|
price: 849900,
|
|
@@ -3634,8 +3634,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3634
3634
|
slug: "product-figma-makima-chainsaw-man",
|
|
3635
3635
|
title: "figma: Chainsaw Man — Makima (Non-Scale Articulated Figure)",
|
|
3636
3636
|
description: "Max Factory figma Makima from Chainsaw Man. Features 30+ articulation points, multiple expression faceplates including her iconic calm and menacing expressions, interchangeable hands, and display stand. Non-scale PVC/ABS. Official licensed from the Chainsaw Man anime.",
|
|
3637
|
-
|
|
3638
|
-
|
|
3637
|
+
categorySlugs: ["category-poseable-figures"],
|
|
3638
|
+
categoryNames: ["Poseable Figures"],
|
|
3639
3639
|
brand: "Max Factory",
|
|
3640
3640
|
brandSlug: "brand-max-factory",
|
|
3641
3641
|
price: 679900,
|
|
@@ -3667,8 +3667,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3667
3667
|
slug: "product-nendoroid-zero-two-darling",
|
|
3668
3668
|
title: "Nendoroid: DARLING in the FRANXX — Zero Two #952",
|
|
3669
3669
|
description: "Good Smile Company Nendoroid Zero Two from DARLING in the FRANXX (#952). Features three expression faceplates, interchangeable parts, FRANXX control interface accessory, and display base. ~100mm PVC. One of the best-selling Nendoroids from the DARLING in the FRANXX series.",
|
|
3670
|
-
|
|
3671
|
-
|
|
3670
|
+
categorySlugs: ["category-nendoroids-chibis"],
|
|
3671
|
+
categoryNames: ["Nendoroids & Chibis"],
|
|
3672
3672
|
brand: "Good Smile Company",
|
|
3673
3673
|
brandSlug: "brand-good-smile",
|
|
3674
3674
|
price: 479900,
|
|
@@ -3700,8 +3700,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3700
3700
|
slug: "product-gsc-aqua-konosuba-scale",
|
|
3701
3701
|
title: "Good Smile Company: KonoSuba — Aqua 1/7 Scale Figure",
|
|
3702
3702
|
description: "Good Smile Company 1/7 scale PVC figure of Aqua from KonoSuba: God's Blessing on this Wonderful World! Features her iconic blue-haired goddess look with detailed blue dress and water effect base. Approx. 230mm tall.",
|
|
3703
|
-
|
|
3704
|
-
|
|
3703
|
+
categorySlugs: ["category-scale-figures"],
|
|
3704
|
+
categoryNames: ["Scale Figures"],
|
|
3705
3705
|
brand: "Good Smile Company",
|
|
3706
3706
|
brandSlug: "brand-good-smile",
|
|
3707
3707
|
price: 899900,
|
|
@@ -3733,8 +3733,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3733
3733
|
slug: "product-figma-levi-attack-on-titan",
|
|
3734
3734
|
title: "figma: Attack on Titan — Levi Ackerman (Survey Corps Version)",
|
|
3735
3735
|
description: "Max Factory figma Levi Ackerman in Survey Corps uniform from Attack on Titan. Includes ODM gear effect parts, multiple blade accessories, adjustable wire effect, and multiple expression faceplates. 30+ articulation points. Non-scale PVC/ABS.",
|
|
3736
|
-
|
|
3737
|
-
|
|
3736
|
+
categorySlugs: ["category-poseable-figures"],
|
|
3737
|
+
categoryNames: ["Poseable Figures"],
|
|
3738
3738
|
brand: "Max Factory",
|
|
3739
3739
|
brandSlug: "brand-max-factory",
|
|
3740
3740
|
price: 699900,
|
|
@@ -3765,8 +3765,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3765
3765
|
slug: "product-nendoroid-killua-hxh",
|
|
3766
3766
|
title: "Nendoroid: Hunter × Hunter — Killua Zoldyck #1179",
|
|
3767
3767
|
description: "Good Smile Company Nendoroid Killua Zoldyck from Hunter × Hunter (#1179). Includes skateboard accessory, yo-yo Godspeed effect parts, three expression faceplates, and display stand. Captures Killua's playful and intense sides perfectly.",
|
|
3768
|
-
|
|
3769
|
-
|
|
3768
|
+
categorySlugs: ["category-nendoroids-chibis"],
|
|
3769
|
+
categoryNames: ["Nendoroids & Chibis"],
|
|
3770
3770
|
brand: "Good Smile Company",
|
|
3771
3771
|
brandSlug: "brand-good-smile",
|
|
3772
3772
|
price: 459900,
|
|
@@ -3797,8 +3797,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3797
3797
|
slug: "product-alter-rem-wedding-scale",
|
|
3798
3798
|
title: "ALTER: Re:ZERO — Rem (Wedding Ver.) 1/7 Scale Figure",
|
|
3799
3799
|
description: "ALTER 1/7 scale PVC figure of Rem from Re:ZERO in her beautiful wedding dress. ALTER is known for the highest quality finish among Japanese figure manufacturers. Features intricate lace dress detail, floral bouquet, and display base. Approx. 230mm.",
|
|
3800
|
-
|
|
3801
|
-
|
|
3800
|
+
categorySlugs: ["category-scale-figures"],
|
|
3801
|
+
categoryNames: ["Scale Figures"],
|
|
3802
3802
|
brand: "Alter",
|
|
3803
3803
|
brandSlug: "brand-alter",
|
|
3804
3804
|
price: 1299900,
|
|
@@ -3830,8 +3830,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3830
3830
|
slug: "product-funko-pop-luffy-gear5",
|
|
3831
3831
|
title: "Funko Pop! Animation: One Piece — Monkey D. Luffy (Gear 5) #1618",
|
|
3832
3832
|
description: "Funko Pop! Animation figure of Monkey D. Luffy in his awakened Gear 5 form from One Piece. Features his white hair and iconic laughing expression. Official licensed product. Standard window-display box.",
|
|
3833
|
-
|
|
3834
|
-
|
|
3833
|
+
categorySlugs: ["category-poseable-figures"],
|
|
3834
|
+
categoryNames: ["Poseable Figures"],
|
|
3835
3835
|
brand: "Funko",
|
|
3836
3836
|
brandSlug: "brand-funko",
|
|
3837
3837
|
price: 159900,
|
|
@@ -3863,8 +3863,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3863
3863
|
slug: "product-hg-aerial-rebuild-gundam",
|
|
3864
3864
|
title: "Bandai HG 1/144: Mobile Suit Gundam: The Witch from Mercury — Aerial Rebuild",
|
|
3865
3865
|
description: "Bandai High Grade (HG) 1/144 scale plastic model kit of the Gundam Aerial Rebuild from Mobile Suit Gundam: The Witch from Mercury. Features the stunning white and blue colour scheme with Permet particle effects. Snap-fit assembly, no glue required.",
|
|
3866
|
-
|
|
3867
|
-
|
|
3866
|
+
categorySlugs: ["category-gunpla"],
|
|
3867
|
+
categoryNames: ["Gunpla"],
|
|
3868
3868
|
brand: "Bandai",
|
|
3869
3869
|
brandSlug: "brand-bandai",
|
|
3870
3870
|
price: 249900,
|
|
@@ -3895,8 +3895,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3895
3895
|
slug: "product-mg-nu-gundam-ver-ka",
|
|
3896
3896
|
title: "Bandai MG 1/100: RX-93 Nu Gundam (Ver. Ka) — Master Grade",
|
|
3897
3897
|
description: "Bandai Master Grade (MG) 1/100 scale Nu Gundam Ver. Ka designed by Hajime Katoki. One of the most iconic MG kits featuring the full psychoframe design, detailed cockpit, LED-compatible inner frame, and Nu Gundam's iconic fin funnels. A centrepiece for any Gunpla collection.",
|
|
3898
|
-
|
|
3899
|
-
|
|
3898
|
+
categorySlugs: ["category-gunpla"],
|
|
3899
|
+
categoryNames: ["Gunpla"],
|
|
3900
3900
|
brand: "Bandai",
|
|
3901
3901
|
brandSlug: "brand-bandai",
|
|
3902
3902
|
price: 749900,
|
|
@@ -3928,8 +3928,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3928
3928
|
slug: "product-rg-eva-unit-01-rebuild",
|
|
3929
3929
|
title: "Bandai RG 1/144: Evangelion Unit-01 (Rebuild of Evangelion) — Real Grade",
|
|
3930
3930
|
description: "Bandai Real Grade (RG) 1/144 scale Evangelion Unit-01 from Rebuild of Evangelion. Features the RG inner skeleton system for maximum articulation in a compact 1/144 scale. Restraint harness, progressive knife, and Lance of Longinus effect parts included.",
|
|
3931
|
-
|
|
3932
|
-
|
|
3931
|
+
categorySlugs: ["category-gunpla"],
|
|
3932
|
+
categoryNames: ["Gunpla"],
|
|
3933
3933
|
brand: "Bandai",
|
|
3934
3934
|
brandSlug: "brand-bandai",
|
|
3935
3935
|
price: 449900,
|
|
@@ -3961,8 +3961,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3961
3961
|
slug: "product-pg-unleashed-rx78-2",
|
|
3962
3962
|
title: "Bandai PG Unleashed 1/60: RX-78-2 Gundam — Perfect Grade",
|
|
3963
3963
|
description: "Bandai Perfect Grade (PG) Unleashed 1/60 scale RX-78-2 Gundam — the ultimate expression of the original Gundam. Features an internal LED system (batteries sold separately), over 500 parts with inner frame detail, and the fully articulated Core Fighter. The crown jewel of any Gunpla collection.",
|
|
3964
|
-
|
|
3965
|
-
|
|
3964
|
+
categorySlugs: ["category-gunpla"],
|
|
3965
|
+
categoryNames: ["Gunpla"],
|
|
3966
3966
|
brand: "Bandai",
|
|
3967
3967
|
brandSlug: "brand-bandai",
|
|
3968
3968
|
price: 2499900,
|
|
@@ -3994,8 +3994,8 @@ const _rawProductsStandardSeedData = [
|
|
|
3994
3994
|
slug: "product-hg-calibarn-witch-mercury",
|
|
3995
3995
|
title: "Bandai HG 1/144: Gundam Calibarn — The Witch from Mercury",
|
|
3996
3996
|
description: "Bandai High Grade 1/144 scale Gundam Calibarn from The Witch from Mercury. The mysterious grey and black Gundam piloted by Suletta. Features articulated joints, GUND-bit effect parts, and weapon accessories. Snap-fit assembly.",
|
|
3997
|
-
|
|
3998
|
-
|
|
3997
|
+
categorySlugs: ["category-gunpla"],
|
|
3998
|
+
categoryNames: ["Gunpla"],
|
|
3999
3999
|
brand: "Bandai",
|
|
4000
4000
|
brandSlug: "brand-bandai",
|
|
4001
4001
|
price: 279900,
|
|
@@ -4026,8 +4026,8 @@ const _rawProductsStandardSeedData = [
|
|
|
4026
4026
|
slug: "product-mg-strike-freedom-gundam",
|
|
4027
4027
|
title: "Bandai MG 1/100: ZGMF-X20A Strike Freedom Gundam (Full Burst Mode)",
|
|
4028
4028
|
description: "Bandai Master Grade 1/100 Strike Freedom Gundam Full Burst Mode from Gundam SEED Destiny. Features the iconic gold wings of light (metal-coated effect parts), 14 dragoon beam guns, and dual beam rifles. One of the most visually striking MG kits available.",
|
|
4029
|
-
|
|
4030
|
-
|
|
4029
|
+
categorySlugs: ["category-gunpla"],
|
|
4030
|
+
categoryNames: ["Gunpla"],
|
|
4031
4031
|
brand: "Bandai",
|
|
4032
4032
|
brandSlug: "brand-bandai",
|
|
4033
4033
|
price: 699900,
|
|
@@ -4060,8 +4060,8 @@ const _rawProductsStandardSeedData = [
|
|
|
4060
4060
|
slug: "product-hot-wheels-twin-mill-1970-redline",
|
|
4061
4061
|
title: "Hot Wheels Vintage: Twin Mill I — 1970 Redline (Brown, Near Mint)",
|
|
4062
4062
|
description: "Hot Wheels 1970 Twin Mill I in brown with Redline tyres. Near Mint condition — no paint chips, minimal play wear, strong colour. This was the first year Twin Mill was produced as part of the original Redline era. A staple of any serious vintage Hot Wheels collection. Sold loose with correct tyres.",
|
|
4063
|
-
|
|
4064
|
-
|
|
4063
|
+
categorySlugs: ["category-vintage-figures"],
|
|
4064
|
+
categoryNames: ["Vintage Figures"],
|
|
4065
4065
|
brand: "Hot Wheels",
|
|
4066
4066
|
brandSlug: "brand-hot-wheels",
|
|
4067
4067
|
price: 699900,
|
|
@@ -4093,8 +4093,8 @@ const _rawProductsStandardSeedData = [
|
|
|
4093
4093
|
slug: "product-gijoe-hawk-v1-1983-moc",
|
|
4094
4094
|
title: "G.I. Joe: Hawk v1 (1983) — MOC (Mint On Card, Straight-Cut)",
|
|
4095
4095
|
description: "G.I. Joe Real American Hero Hawk version 1 from 1983, Mint On Card. Straight-cut card with full card art. Bubble is intact with zero yellowing. This is the original Hawk, the first Commander-class figure in the Real American Hero line. Extremely rare to find MOC in India.",
|
|
4096
|
-
|
|
4097
|
-
|
|
4096
|
+
categorySlugs: ["category-vintage-figures"],
|
|
4097
|
+
categoryNames: ["Vintage Figures"],
|
|
4098
4098
|
brand: "Hasbro",
|
|
4099
4099
|
brandSlug: "brand-hasbro",
|
|
4100
4100
|
price: 1499900,
|
|
@@ -4142,8 +4142,8 @@ export const productsStandardSeedData = [
|
|
|
4142
4142
|
listingType: "classified",
|
|
4143
4143
|
title: "Funko Pop Lot — 12 Anime Figures (Bangalore Meetup / Pickup)",
|
|
4144
4144
|
description: "Selling a bulk lot of 12 Funko Pop anime figures I've collected over 3 years — decluttering my shelf. Includes Naruto, Goku SSJ3, Tanjiro, Deku Full Cowl, Levi, Sasuke, Vegeta, Bakugo, Killua, Zero Two, Gojo, and Luffy Gear 5. All are in original window boxes — mint on card, never opened. I'm preferring local meetup in Bangalore (Koramangala / BTM Layout). Shipping possible at buyer's cost. Price is firm but includes all 12 figures. Not splitting — lot only.",
|
|
4145
|
-
|
|
4146
|
-
|
|
4145
|
+
categorySlugs: ["category-poseable-figures"],
|
|
4146
|
+
categoryNames: ["Poseable Action Figures"],
|
|
4147
4147
|
brand: "Funko",
|
|
4148
4148
|
brandSlug: "brand-funko",
|
|
4149
4149
|
price: 1499900,
|
|
@@ -4193,8 +4193,8 @@ export const productsStandardSeedData = [
|
|
|
4193
4193
|
listingType: "digital-code",
|
|
4194
4194
|
title: "Cyberpunk 2077 — Steam PC Key (Instant Delivery)",
|
|
4195
4195
|
description: "Genuine Cyberpunk 2077 Steam PC key purchased directly from CD Projekt RED's authorised distributor. Activates on Steam — no region lock (global). Includes the base game and the free 2.0 update with the Phantom Liberty expansion sold separately. Code is delivered instantly to your order detail page after payment confirmation — no waiting, no emails. One code per order.",
|
|
4196
|
-
|
|
4197
|
-
|
|
4196
|
+
categorySlugs: ["category-sealed-product"],
|
|
4197
|
+
categoryNames: ["Sealed Product"],
|
|
4198
4198
|
price: 149900,
|
|
4199
4199
|
currency: SCHEMA_DEFAULTS.CURRENCY,
|
|
4200
4200
|
stockQuantity: 50,
|
|
@@ -4241,8 +4241,8 @@ export const productsStandardSeedData = [
|
|
|
4241
4241
|
listingType: "live",
|
|
4242
4242
|
title: "Leucistic Axolotl — Juvenile (6 cm), Live Animal",
|
|
4243
4243
|
description: "Beautiful leucistic (white with black eyes) axolotl juvenile, approximately 6 cm at time of listing and growing fast. Hatched from a captive breeding programme in Pune. Currently eating frozen bloodworms and pellets — transitioned off live brine shrimp. Healthy, active, full limb set, no signs of stress. Axolotls are legal to own in Maharashtra, Karnataka, and Tamil Nadu; delivery is restricted to these states only (see jurisdiction note below). Packed by specialist courier with oxygen pouch, insulated box, and live arrival guarantee.",
|
|
4244
|
-
|
|
4245
|
-
|
|
4244
|
+
categorySlugs: ["category-scale-figures"],
|
|
4245
|
+
categoryNames: ["Scale Figures"],
|
|
4246
4246
|
price: 249900,
|
|
4247
4247
|
currency: SCHEMA_DEFAULTS.CURRENCY,
|
|
4248
4248
|
stockQuantity: 1,
|