@mohasinac/appkit 2.3.1 → 2.4.0
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/client.d.ts +54 -18
- package/dist/client.js +29 -10
- package/dist/constants/api-endpoints.d.ts +384 -22
- package/dist/constants/api-endpoints.js +68 -13
- package/dist/constants/index.d.ts +1 -1
- package/dist/constants/index.js +1 -1
- package/dist/core/contact-submissions.repository.d.ts +32 -0
- package/dist/core/contact-submissions.repository.js +49 -0
- package/dist/core/hooks/useSyncManager.d.ts +1 -0
- package/dist/core/hooks/useSyncManager.js +83 -0
- package/dist/core/index.d.ts +2 -0
- package/dist/core/index.js +1 -0
- package/dist/core/integration-keys.d.ts +4 -0
- package/dist/core/integration-keys.js +8 -0
- package/dist/features/about/components/FAQPageView.js +9 -11
- package/dist/features/about/components/HowPayoutsWorkView.js +1 -1
- package/dist/features/about/components/PolicyPageView.js +32 -11
- package/dist/features/about/components/PublicProfileView.js +77 -11
- package/dist/features/account/components/AddressFilters.d.ts +5 -0
- package/dist/features/account/components/AddressFilters.js +20 -0
- package/dist/features/account/components/AddressesIndexListing.d.ts +6 -0
- package/dist/features/account/components/AddressesIndexListing.js +76 -0
- package/dist/features/account/components/UserOffersPanel.d.ts +8 -0
- package/dist/features/account/components/UserOffersPanel.js +81 -0
- package/dist/features/account/components/UserSettingsView.d.ts +2 -1
- package/dist/features/account/components/UserSettingsView.js +2 -1
- package/dist/features/account/components/UserSidebar.d.ts +12 -3
- package/dist/features/account/components/UserSidebar.js +64 -10
- package/dist/features/account/components/index.d.ts +2 -0
- package/dist/features/account/components/index.js +1 -0
- package/dist/features/account/hooks/useAddresses.d.ts +7 -0
- package/dist/features/account/hooks/useAddresses.js +12 -1
- package/dist/features/admin/actions/admin-actions.d.ts +1 -1
- package/dist/features/admin/actions/admin-actions.js +13 -3
- package/dist/features/admin/actions/admin-read-actions.d.ts +12 -0
- package/dist/features/admin/actions/admin-read-actions.js +18 -0
- package/dist/features/admin/components/AdminAdEditorView.js +6 -7
- package/dist/features/admin/components/AdminAllEventEntriesView.d.ts +4 -0
- package/dist/features/admin/components/AdminAllEventEntriesView.js +102 -0
- package/dist/features/admin/components/AdminBidsView.js +94 -8
- package/dist/features/admin/components/AdminBlogEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminBlogEditorView.js +162 -0
- package/dist/features/admin/components/AdminBlogView.d.ts +4 -1
- package/dist/features/admin/components/AdminBlogView.js +64 -10
- package/dist/features/admin/components/AdminBrandEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminBrandEditorView.js +104 -0
- package/dist/features/admin/components/AdminBrandsView.d.ts +4 -0
- package/dist/features/admin/components/AdminBrandsView.js +76 -0
- package/dist/features/admin/components/AdminCarouselEditorView.d.ts +8 -0
- package/dist/features/admin/components/AdminCarouselEditorView.js +204 -0
- package/dist/features/admin/components/AdminCarouselView.js +155 -20
- package/dist/features/admin/components/AdminCartsView.d.ts +4 -0
- package/dist/features/admin/components/AdminCartsView.js +82 -0
- package/dist/features/admin/components/AdminCategoriesView.d.ts +4 -1
- package/dist/features/admin/components/AdminCategoriesView.js +69 -26
- package/dist/features/admin/components/AdminCategoryEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminCategoryEditorView.js +115 -0
- package/dist/features/admin/components/AdminContactEditorView.d.ts +11 -0
- package/dist/features/admin/components/AdminContactEditorView.js +32 -0
- package/dist/features/admin/components/AdminContactView.d.ts +4 -0
- package/dist/features/admin/components/AdminContactView.js +141 -0
- package/dist/features/admin/components/AdminCouponEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminCouponEditorView.js +179 -0
- package/dist/features/admin/components/AdminCouponsView.d.ts +4 -1
- package/dist/features/admin/components/AdminCouponsView.js +57 -9
- package/dist/features/admin/components/AdminDashboardView.js +3 -0
- package/dist/features/admin/components/AdminFaqEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminFaqEditorView.js +128 -0
- package/dist/features/admin/components/AdminFaqsView.d.ts +4 -1
- package/dist/features/admin/components/AdminFaqsView.js +55 -6
- package/dist/features/admin/components/AdminFeatureFlagsView.js +33 -24
- package/dist/features/admin/components/AdminListingScaffold.d.ts +17 -2
- package/dist/features/admin/components/AdminListingScaffold.js +14 -3
- package/dist/features/admin/components/AdminMediaView.js +18 -8
- package/dist/features/admin/components/AdminNavEditorView.d.ts +20 -0
- package/dist/features/admin/components/AdminNavEditorView.js +84 -0
- package/dist/features/admin/components/AdminNavigationView.d.ts +1 -7
- package/dist/features/admin/components/AdminNavigationView.js +84 -72
- package/dist/features/admin/components/AdminNewsletterView.d.ts +4 -0
- package/dist/features/admin/components/AdminNewsletterView.js +132 -0
- package/dist/features/admin/components/AdminNotificationsView.d.ts +4 -0
- package/dist/features/admin/components/AdminNotificationsView.js +119 -0
- package/dist/features/admin/components/AdminOrderEditorView.d.ts +8 -0
- package/dist/features/admin/components/AdminOrderEditorView.js +74 -0
- package/dist/features/admin/components/AdminOrdersView.js +64 -8
- package/dist/features/admin/components/AdminPayoutsView.js +122 -13
- package/dist/features/admin/components/AdminProductEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminProductEditorView.js +143 -0
- package/dist/features/admin/components/AdminProductsView.d.ts +4 -1
- package/dist/features/admin/components/AdminProductsView.js +124 -7
- package/dist/features/admin/components/AdminReturnRequestsView.d.ts +5 -0
- package/dist/features/admin/components/AdminReturnRequestsView.js +101 -0
- package/dist/features/admin/components/AdminReviewsView.js +140 -6
- package/dist/features/admin/components/AdminSectionsView.js +361 -472
- package/dist/features/admin/components/AdminSessionsView.d.ts +4 -0
- package/dist/features/admin/components/AdminSessionsView.js +119 -0
- package/dist/features/admin/components/AdminSidebar.d.ts +18 -3
- package/dist/features/admin/components/AdminSidebar.js +51 -4
- package/dist/features/admin/components/AdminSiteSettingsView.d.ts +7 -0
- package/dist/features/admin/components/AdminSiteSettingsView.js +319 -0
- package/dist/features/admin/components/AdminStoreAddressesView.d.ts +5 -0
- package/dist/features/admin/components/AdminStoreAddressesView.js +52 -0
- package/dist/features/admin/components/AdminStoreEditorView.d.ts +9 -0
- package/dist/features/admin/components/AdminStoreEditorView.js +55 -0
- package/dist/features/admin/components/AdminStoresView.js +62 -5
- package/dist/features/admin/components/AdminUserEditorView.d.ts +10 -0
- package/dist/features/admin/components/AdminUserEditorView.js +72 -0
- package/dist/features/admin/components/AdminUsersView.js +73 -14
- package/dist/features/admin/components/AdminWishlistsView.d.ts +4 -0
- package/dist/features/admin/components/AdminWishlistsView.js +53 -0
- package/dist/features/admin/components/BrandQuickCreateForm.d.ts +5 -0
- package/dist/features/admin/components/BrandQuickCreateForm.js +36 -0
- package/dist/features/admin/components/CategoryQuickCreateForm.d.ts +5 -0
- package/dist/features/admin/components/CategoryQuickCreateForm.js +35 -0
- package/dist/features/admin/components/DataTable.d.ts +5 -2
- package/dist/features/admin/components/DataTable.js +38 -4
- package/dist/features/admin/components/index.d.ts +53 -1
- package/dist/features/admin/components/index.js +26 -0
- package/dist/features/admin/components/sections/adminSectionsBuildParse.d.ts +48 -0
- package/dist/features/admin/components/sections/adminSectionsBuildParse.js +653 -0
- package/dist/features/admin/components/sections/adminSectionsTypes.d.ts +298 -0
- package/dist/features/admin/components/sections/adminSectionsTypes.js +278 -0
- package/dist/features/admin/hooks/useAdminListingData.d.ts +3 -1
- package/dist/features/admin/hooks/useAdminListingData.js +12 -7
- package/dist/features/admin/schemas/firestore.d.ts +26 -0
- package/dist/features/admin/schemas/firestore.js +1 -0
- package/dist/features/admin/server.d.ts +3 -0
- package/dist/features/admin/server.js +2 -0
- package/dist/features/admin/types/product.types.d.ts +2 -3
- package/dist/features/auctions/actions/bid-actions.js +6 -2
- package/dist/features/auctions/components/AuctionDetailPageView.d.ts +3 -1
- package/dist/features/auctions/components/AuctionDetailPageView.js +125 -53
- package/dist/features/auctions/components/AuctionFilters.d.ts +10 -0
- package/dist/features/auctions/components/AuctionFilters.js +16 -0
- package/dist/features/auctions/components/AuctionsListView.d.ts +6 -1
- package/dist/features/auctions/components/AuctionsListView.js +37 -5
- package/dist/features/auctions/components/CollapsibleBidHistory.d.ts +7 -0
- package/dist/features/auctions/components/CollapsibleBidHistory.js +8 -0
- package/dist/features/auctions/components/MarketplaceAuctionCard.d.ts +4 -0
- package/dist/features/auctions/components/MarketplaceAuctionCard.js +43 -9
- package/dist/features/auctions/components/MarketplaceAuctionGrid.js +1 -0
- package/dist/features/auctions/components/PlaceBidFormClient.d.ts +18 -0
- package/dist/features/auctions/components/PlaceBidFormClient.js +33 -0
- package/dist/features/auctions/hooks/useAuctions.d.ts +1 -0
- package/dist/features/auctions/hooks/useAuctions.js +1 -0
- package/dist/features/auctions/schemas/index.d.ts +18 -8
- package/dist/features/auth/actions/profile-actions.d.ts +5 -3
- package/dist/features/auth/actions/profile-actions.js +30 -11
- package/dist/features/auth/auth-helpers.js +1 -0
- package/dist/features/auth/components/LoginForm.js +2 -1
- package/dist/features/auth/hooks/useAuth.js +16 -4
- package/dist/features/auth/permissions/constants.d.ts +63 -0
- package/dist/features/auth/permissions/constants.js +323 -0
- package/dist/features/auth/schemas/firestore.d.ts +20 -0
- package/dist/features/auth/schemas/index.d.ts +4 -4
- package/dist/features/auth/schemas/index.js +3 -2
- package/dist/features/auth/types/index.d.ts +1 -1
- package/dist/features/before-after/schemas/index.d.ts +2 -2
- package/dist/features/blog/actions/blog-actions.d.ts +15 -15
- package/dist/features/blog/components/BlogFeaturedCard.d.ts +1 -7
- package/dist/features/blog/components/BlogFeaturedCard.js +4 -5
- package/dist/features/blog/components/BlogFilters.js +2 -1
- package/dist/features/blog/components/BlogIndexListing.js +66 -9
- package/dist/features/blog/components/BlogIndexPageView.d.ts +6 -1
- package/dist/features/blog/components/BlogIndexPageView.js +24 -4
- package/dist/features/blog/components/BlogListView.d.ts +2 -1
- package/dist/features/blog/components/BlogListView.js +10 -3
- package/dist/features/blog/components/BlogPostForm.js +6 -2
- package/dist/features/blog/components/BlogPostView.js +2 -1
- package/dist/features/blog/hooks/useBlog.d.ts +2 -0
- package/dist/features/blog/hooks/useBlog.js +2 -0
- package/dist/features/blog/schemas/index.d.ts +46 -12
- package/dist/features/brands/actions/brand-actions.d.ts +2 -0
- package/dist/features/brands/actions/brand-actions.js +5 -0
- package/dist/features/brands/index.d.ts +3 -0
- package/dist/features/brands/index.js +3 -0
- package/dist/features/brands/repository/brands.repository.d.ts +13 -0
- package/dist/features/brands/repository/brands.repository.js +60 -0
- package/dist/features/brands/schemas/index.d.ts +33 -0
- package/dist/features/brands/schemas/index.js +15 -0
- package/dist/features/brands/server.d.ts +7 -0
- package/dist/features/brands/server.js +7 -0
- package/dist/features/cart/actions/cart-actions.js +2 -2
- package/dist/features/cart/components/CartDrawer.d.ts +5 -1
- package/dist/features/cart/components/CartDrawer.js +3 -3
- package/dist/features/cart/hooks/useCartCount.d.ts +3 -2
- package/dist/features/cart/hooks/useCartCount.js +4 -2
- package/dist/features/cart/hooks/useGuestCartMerge.js +1 -1
- package/dist/features/cart/index.d.ts +1 -0
- package/dist/features/cart/index.js +1 -0
- package/dist/features/cart/repository/cart.repository.d.ts +5 -1
- package/dist/features/cart/repository/cart.repository.js +36 -5
- package/dist/features/cart/schemas/firestore.d.ts +25 -6
- package/dist/features/cart/schemas/firestore.js +2 -2
- package/dist/features/cart/schemas/index.d.ts +9 -9
- package/dist/features/cart/schemas/index.js +1 -1
- package/dist/features/cart/types/index.d.ts +1 -1
- package/dist/features/cart/utils/pending-ops.d.ts +33 -0
- package/dist/features/cart/utils/pending-ops.js +102 -0
- package/dist/features/categories/components/BrandDetailPageView.d.ts +4 -0
- package/dist/features/categories/components/BrandDetailPageView.js +54 -0
- package/dist/features/categories/components/BrandDetailTabs.d.ts +10 -0
- package/dist/features/categories/components/BrandDetailTabs.js +22 -0
- package/dist/features/categories/components/CategoriesIndexListing.d.ts +3 -1
- package/dist/features/categories/components/CategoriesIndexListing.js +117 -38
- package/dist/features/categories/components/CategoriesIndexPageView.d.ts +6 -1
- package/dist/features/categories/components/CategoriesIndexPageView.js +41 -2
- package/dist/features/categories/components/CategoryDetailPageView.js +47 -19
- package/dist/features/categories/components/CategoryDetailTabs.d.ts +11 -0
- package/dist/features/categories/components/CategoryDetailTabs.js +22 -0
- package/dist/features/categories/components/CategoryFilters.js +2 -1
- package/dist/features/categories/components/CategoryForm.js +10 -4
- package/dist/features/categories/components/CategoryGrid.d.ts +2 -1
- package/dist/features/categories/components/CategoryGrid.js +8 -6
- package/dist/features/categories/components/CategoryProductsListing.d.ts +4 -1
- package/dist/features/categories/components/CategoryProductsListing.js +53 -13
- package/dist/features/categories/components/ConcernCard.js +1 -1
- package/dist/features/categories/components/index.d.ts +2 -0
- package/dist/features/categories/components/index.js +1 -0
- package/dist/features/categories/hooks/useCategories.d.ts +20 -0
- package/dist/features/categories/hooks/useCategories.js +52 -1
- package/dist/features/categories/hooks/useCategoryTree.d.ts +17 -0
- package/dist/features/categories/hooks/useCategoryTree.js +65 -0
- package/dist/features/categories/repository/categories.repository.js +2 -3
- package/dist/features/categories/schemas/firestore.d.ts +23 -2
- package/dist/features/categories/schemas/firestore.js +8 -0
- package/dist/features/categories/schemas/index.d.ts +8 -8
- package/dist/features/categories/types/index.d.ts +1 -0
- package/dist/features/collections/schemas/index.d.ts +2 -2
- package/dist/features/events/components/AdminEventEditorView.d.ts +6 -0
- package/dist/features/events/components/AdminEventEditorView.js +203 -0
- package/dist/features/events/components/AdminEventsView.d.ts +4 -1
- package/dist/features/events/components/AdminEventsView.js +66 -14
- package/dist/features/events/components/EventCard.js +4 -2
- package/dist/features/events/components/EventFilters.js +2 -1
- package/dist/features/events/components/EventPollWidget.d.ts +12 -0
- package/dist/features/events/components/EventPollWidget.js +62 -0
- package/dist/features/events/components/EventsIndexListing.js +92 -10
- package/dist/features/events/components/EventsListPageView.d.ts +6 -1
- package/dist/features/events/components/EventsListPageView.js +40 -7
- package/dist/features/events/components/index.d.ts +4 -0
- package/dist/features/events/components/index.js +2 -0
- package/dist/features/events/hooks/useEvents.d.ts +1 -0
- package/dist/features/events/hooks/useEvents.js +3 -0
- package/dist/features/events/repository/events.repository.js +3 -0
- package/dist/features/events/schemas/firestore.d.ts +1 -0
- package/dist/features/events/schemas/index.d.ts +44 -0
- package/dist/features/events/types/index.d.ts +3 -0
- package/dist/features/faq/actions/faq-actions.d.ts +16 -16
- package/dist/features/faq/hooks/useFaqList.js +1 -1
- package/dist/features/faq/schemas/firestore.d.ts +2 -2
- package/dist/features/faq/schemas/firestore.js +2 -1
- package/dist/features/faq/schemas/index.d.ts +4 -4
- package/dist/features/filters/FilterFacetSection.d.ts +1 -0
- package/dist/features/filters/FilterFacetSection.js +13 -1
- package/dist/features/filters/SwitchFilter.js +1 -1
- package/dist/features/grouped/schemas/firestore.d.ts +32 -0
- package/dist/features/grouped/schemas/firestore.js +19 -0
- package/dist/features/homepage/components/AdSlot.d.ts +1 -3
- package/dist/features/homepage/components/AdSlot.js +15 -14
- package/dist/features/homepage/components/BlogArticlesSection.d.ts +3 -1
- package/dist/features/homepage/components/BlogArticlesSection.js +3 -3
- package/dist/features/homepage/components/BrandsSection.d.ts +3 -1
- package/dist/features/homepage/components/BrandsSection.js +4 -3
- package/dist/features/homepage/components/CustomCardsSection.d.ts +3 -0
- package/dist/features/homepage/components/CustomCardsSection.js +76 -0
- package/dist/features/homepage/components/EventsSection.d.ts +3 -1
- package/dist/features/homepage/components/EventsSection.js +3 -3
- package/dist/features/homepage/components/FeaturedAuctionsSection.d.ts +4 -1
- package/dist/features/homepage/components/FeaturedAuctionsSection.js +3 -3
- package/dist/features/homepage/components/FeaturedPreOrdersSection.d.ts +4 -1
- package/dist/features/homepage/components/FeaturedPreOrdersSection.js +3 -3
- package/dist/features/homepage/components/FeaturedProductsSection.d.ts +4 -1
- package/dist/features/homepage/components/FeaturedProductsSection.js +8 -3
- package/dist/features/homepage/components/FeaturedStoresSection.d.ts +3 -1
- package/dist/features/homepage/components/FeaturedStoresSection.js +3 -3
- package/dist/features/homepage/components/GoogleReviewsSection.d.ts +3 -0
- package/dist/features/homepage/components/GoogleReviewsSection.js +65 -0
- package/dist/features/homepage/components/HeroCarousel.js +129 -85
- package/dist/features/homepage/components/MarketplaceHomepageView.d.ts +2 -20
- package/dist/features/homepage/components/MarketplaceHomepageView.js +73 -220
- package/dist/features/homepage/components/SectionCarousel.d.ts +1 -1
- package/dist/features/homepage/components/SectionCarousel.js +6 -4
- package/dist/features/homepage/components/ShopByCategorySection.d.ts +3 -1
- package/dist/features/homepage/components/ShopByCategorySection.js +8 -4
- package/dist/features/homepage/components/SocialFeedSection.d.ts +3 -0
- package/dist/features/homepage/components/SocialFeedSection.js +86 -0
- package/dist/features/homepage/components/SocialPostCard.d.ts +7 -0
- package/dist/features/homepage/components/SocialPostCard.js +39 -0
- package/dist/features/homepage/components/StatsCounterSection.js +1 -1
- package/dist/features/homepage/components/WelcomeSection.js +1 -1
- package/dist/features/homepage/components/WhatsAppCommunitySection.js +1 -1
- package/dist/features/homepage/hooks/useActiveAd.d.ts +23 -0
- package/dist/features/homepage/hooks/useActiveAd.js +20 -0
- package/dist/features/homepage/hooks/useBlogArticles.d.ts +1 -0
- package/dist/features/homepage/hooks/useBlogArticles.js +10 -0
- package/dist/features/homepage/hooks/useFeaturedAuctions.d.ts +4 -1
- package/dist/features/homepage/hooks/useFeaturedAuctions.js +8 -4
- package/dist/features/homepage/hooks/useFeaturedPreOrders.d.ts +4 -1
- package/dist/features/homepage/hooks/useFeaturedPreOrders.js +8 -4
- package/dist/features/homepage/hooks/useFeaturedProducts.d.ts +1 -0
- package/dist/features/homepage/hooks/useFeaturedProducts.js +6 -3
- package/dist/features/homepage/hooks/useFeaturedStores.d.ts +3 -1
- package/dist/features/homepage/hooks/useFeaturedStores.js +2 -1
- package/dist/features/homepage/hooks/useHomepageEvents.d.ts +3 -1
- package/dist/features/homepage/hooks/useHomepageEvents.js +2 -1
- package/dist/features/homepage/hooks/useTopBrands.d.ts +3 -1
- package/dist/features/homepage/hooks/useTopBrands.js +2 -1
- package/dist/features/homepage/index.d.ts +2 -0
- package/dist/features/homepage/index.js +1 -0
- package/dist/features/homepage/lib/google-reviews-fetcher.d.ts +14 -0
- package/dist/features/homepage/lib/google-reviews-fetcher.js +27 -0
- package/dist/features/homepage/lib/live-stats.d.ts +14 -0
- package/dist/features/homepage/lib/live-stats.js +62 -0
- package/dist/features/homepage/lib/section-defaults.d.ts +11 -0
- package/dist/features/homepage/lib/section-defaults.js +45 -0
- package/dist/features/homepage/lib/section-helpers.d.ts +5 -0
- package/dist/features/homepage/lib/section-helpers.js +25 -0
- package/dist/features/homepage/lib/section-renderer.d.ts +33 -0
- package/dist/features/homepage/lib/section-renderer.js +164 -0
- package/dist/features/homepage/lib/social-feed-fetcher.d.ts +5 -0
- package/dist/features/homepage/lib/social-feed-fetcher.js +193 -0
- package/dist/features/homepage/schemas/firestore.d.ts +180 -29
- package/dist/features/homepage/schemas/firestore.js +7 -1
- package/dist/features/homepage/types/index.d.ts +48 -19
- package/dist/features/layout/AppLayoutShell.d.ts +11 -2
- package/dist/features/layout/AppLayoutShell.js +30 -10
- package/dist/features/layout/BottomActions.js +1 -1
- package/dist/features/layout/BottomNavbar.d.ts +15 -1
- package/dist/features/layout/BottomNavbar.js +8 -2
- package/dist/features/layout/FooterLayout.d.ts +7 -1
- package/dist/features/layout/FooterLayout.js +3 -3
- package/dist/features/layout/ListingLayout.js +2 -2
- package/dist/features/layout/MainNavbar.d.ts +6 -14
- package/dist/features/layout/MainNavbar.js +4 -16
- package/dist/features/layout/NavItem.js +1 -1
- package/dist/features/layout/NavbarLayout.d.ts +3 -1
- package/dist/features/layout/NavbarLayout.js +5 -5
- package/dist/features/layout/TitleBar.d.ts +4 -2
- package/dist/features/layout/TitleBar.js +5 -3
- package/dist/features/layout/TitleBarLayout.d.ts +3 -1
- package/dist/features/layout/TitleBarLayout.js +2 -2
- package/dist/features/layout/index.d.ts +1 -1
- package/dist/features/media/MediaPickerModal.d.ts +30 -0
- package/dist/features/media/MediaPickerModal.js +72 -0
- package/dist/features/media/index.d.ts +3 -1
- package/dist/features/media/index.js +1 -0
- package/dist/features/media/types/index.d.ts +12 -0
- package/dist/features/media/types/index.js +4 -2
- package/dist/features/media/upload/MediaUploadField.d.ts +5 -1
- package/dist/features/media/upload/MediaUploadField.js +56 -3
- package/dist/features/messages/schemas/firestore.d.ts +36 -0
- package/dist/features/messages/schemas/firestore.js +16 -0
- package/dist/features/orders/repository/orders.repository.d.ts +2 -2
- package/dist/features/orders/repository/orders.repository.js +2 -2
- package/dist/features/orders/schemas/firestore.d.ts +17 -4
- package/dist/features/orders/schemas/firestore.js +2 -2
- package/dist/features/orders/schemas/index.d.ts +18 -18
- package/dist/features/orders/schemas/index.js +3 -3
- package/dist/features/orders/types/index.d.ts +1 -1
- package/dist/features/orders/utils/order-splitter.d.ts +1 -1
- package/dist/features/orders/utils/order-splitter.js +2 -2
- package/dist/features/payments/repository/payout.repository.d.ts +4 -4
- package/dist/features/payments/repository/payout.repository.js +7 -7
- package/dist/features/payments/schemas/firestore.d.ts +6 -6
- package/dist/features/payments/schemas/firestore.js +6 -6
- package/dist/features/pre-orders/components/MarketplacePreorderCard.d.ts +3 -1
- package/dist/features/pre-orders/components/MarketplacePreorderCard.js +13 -8
- package/dist/features/pre-orders/components/PreOrderActionsClient.d.ts +11 -0
- package/dist/features/pre-orders/components/PreOrderActionsClient.js +28 -0
- package/dist/features/pre-orders/components/PreOrderDetailPageView.d.ts +2 -1
- package/dist/features/pre-orders/components/PreOrderDetailPageView.js +100 -14
- package/dist/features/pre-orders/components/PreOrderFilters.d.ts +10 -0
- package/dist/features/pre-orders/components/PreOrderFilters.js +24 -0
- package/dist/features/pre-orders/components/PreOrdersIndexListing.d.ts +4 -1
- package/dist/features/pre-orders/components/PreOrdersIndexListing.js +166 -11
- package/dist/features/pre-orders/components/PreOrdersListView.d.ts +6 -1
- package/dist/features/pre-orders/components/PreOrdersListView.js +26 -7
- package/dist/features/pre-orders/components/PreorderCard.js +1 -1
- package/dist/features/pre-orders/components/index.d.ts +2 -0
- package/dist/features/pre-orders/components/index.js +1 -0
- package/dist/features/pre-orders/schemas/index.d.ts +10 -0
- package/dist/features/products/actions/product-actions.d.ts +2 -2
- package/dist/features/products/actions/product-actions.js +5 -5
- package/dist/features/products/api/[id]/route.js +5 -2
- package/dist/features/products/api/route.js +10 -14
- package/dist/features/products/columns/productTableColumns.js +2 -2
- package/dist/features/products/components/AuctionDetailView.d.ts +2 -1
- package/dist/features/products/components/AuctionDetailView.js +2 -2
- package/dist/features/products/components/AuctionsIndexListing.d.ts +4 -1
- package/dist/features/products/components/AuctionsIndexListing.js +124 -10
- package/dist/features/products/components/BidHistory.d.ts +2 -1
- package/dist/features/products/components/BidHistory.js +18 -2
- package/dist/features/products/components/InteractiveProductCard.d.ts +2 -4
- package/dist/features/products/components/InteractiveProductCard.js +2 -2
- package/dist/features/products/components/MakeOfferButton.d.ts +10 -0
- package/dist/features/products/components/MakeOfferButton.js +68 -0
- package/dist/features/products/components/ProductDetailPageView.d.ts +11 -1
- package/dist/features/products/components/ProductDetailPageView.js +136 -26
- package/dist/features/products/components/ProductFilters.d.ts +13 -12
- package/dist/features/products/components/ProductFilters.js +8 -4
- package/dist/features/products/components/ProductForm.d.ts +19 -1
- package/dist/features/products/components/ProductForm.js +24 -6
- package/dist/features/products/components/ProductGrid.d.ts +16 -2
- package/dist/features/products/components/ProductGrid.js +80 -18
- package/dist/features/products/components/ProductTabsShell.d.ts +3 -11
- package/dist/features/products/components/ProductTabsShell.js +14 -14
- package/dist/features/products/components/ProductsIndexListing.js +160 -10
- package/dist/features/products/components/ProductsIndexPageView.d.ts +6 -1
- package/dist/features/products/components/ProductsIndexPageView.js +39 -6
- package/dist/features/products/components/RelatedProductsCarousel.d.ts +7 -0
- package/dist/features/products/components/RelatedProductsCarousel.js +11 -0
- package/dist/features/products/components/ShareButton.d.ts +7 -0
- package/dist/features/products/components/ShareButton.js +22 -0
- package/dist/features/products/components/index.d.ts +3 -0
- package/dist/features/products/components/index.js +2 -0
- package/dist/features/products/hooks/useProducts.d.ts +7 -0
- package/dist/features/products/hooks/useProducts.js +20 -2
- package/dist/features/products/repository/products.repository.d.ts +9 -5
- package/dist/features/products/repository/products.repository.js +19 -50
- package/dist/features/products/schemas/firestore.d.ts +11 -9
- package/dist/features/products/schemas/firestore.js +11 -3
- package/dist/features/products/schemas/index.d.ts +43 -42
- package/dist/features/products/schemas/index.js +2 -5
- package/dist/features/products/types/index.d.ts +24 -4
- package/dist/features/promotions/actions/coupon-actions.d.ts +2 -2
- package/dist/features/promotions/actions/coupon-actions.js +1 -1
- package/dist/features/promotions/actions/seller-coupon-actions.js +11 -6
- package/dist/features/promotions/api/route.js +3 -3
- package/dist/features/promotions/components/CouponCard.js +16 -7
- package/dist/features/promotions/components/CouponsIndexListing.d.ts +9 -0
- package/dist/features/promotions/components/CouponsIndexListing.js +80 -0
- package/dist/features/promotions/components/PromotionsView.d.ts +11 -5
- package/dist/features/promotions/components/PromotionsView.js +6 -1
- package/dist/features/promotions/components/index.d.ts +4 -2
- package/dist/features/promotions/components/index.js +2 -1
- package/dist/features/promotions/hooks/useCouponValidate.d.ts +1 -1
- package/dist/features/promotions/hooks/usePromotions.js +2 -2
- package/dist/features/promotions/repository/coupons.repository.d.ts +21 -15
- package/dist/features/promotions/repository/coupons.repository.js +97 -125
- package/dist/features/promotions/schemas/firestore.d.ts +31 -2
- package/dist/features/promotions/schemas/firestore.js +29 -0
- package/dist/features/promotions/schemas/index.d.ts +9 -12
- package/dist/features/promotions/schemas/index.js +1 -2
- package/dist/features/promotions/types/index.d.ts +1 -2
- package/dist/features/reviews/actions/review-actions.js +3 -2
- package/dist/features/reviews/components/ReviewDetailPageView.d.ts +4 -0
- package/dist/features/reviews/components/ReviewDetailPageView.js +16 -0
- package/dist/features/reviews/components/ReviewDetailShell.d.ts +7 -0
- package/dist/features/reviews/components/ReviewDetailShell.js +80 -0
- package/dist/features/reviews/components/ReviewFilters.d.ts +3 -3
- package/dist/features/reviews/components/ReviewFilters.js +5 -4
- package/dist/features/reviews/components/ReviewsIndexListing.d.ts +4 -3
- package/dist/features/reviews/components/ReviewsIndexListing.js +86 -51
- package/dist/features/reviews/components/ReviewsIndexPageView.d.ts +6 -1
- package/dist/features/reviews/components/ReviewsIndexPageView.js +49 -3
- package/dist/features/reviews/components/ReviewsList.js +9 -1
- package/dist/features/reviews/components/index.d.ts +1 -0
- package/dist/features/reviews/hooks/useReviews.d.ts +1 -0
- package/dist/features/reviews/hooks/useReviews.js +16 -1
- package/dist/features/reviews/repository/reviews.repository.d.ts +9 -4
- package/dist/features/reviews/repository/reviews.repository.js +18 -7
- package/dist/features/reviews/schemas/firestore.d.ts +5 -2
- package/dist/features/reviews/schemas/firestore.js +1 -0
- package/dist/features/reviews/schemas/index.d.ts +19 -16
- package/dist/features/reviews/schemas/index.js +3 -2
- package/dist/features/reviews/types/index.d.ts +9 -3
- package/dist/features/scams/actions/scam-actions.d.ts +29 -0
- package/dist/features/scams/actions/scam-actions.js +62 -0
- package/dist/features/scams/components/ScamProfileView.d.ts +7 -0
- package/dist/features/scams/components/ScamProfileView.js +49 -0
- package/dist/features/scams/components/ScamRegistryView.d.ts +6 -0
- package/dist/features/scams/components/ScamRegistryView.js +41 -0
- package/dist/features/scams/components/index.d.ts +4 -0
- package/dist/features/scams/components/index.js +2 -0
- package/dist/features/scams/constants/scam-types.d.ts +38 -0
- package/dist/features/scams/constants/scam-types.js +443 -0
- package/dist/features/scams/repository/scammer.repository.d.ts +67 -0
- package/dist/features/scams/repository/scammer.repository.js +160 -0
- package/dist/features/scams/schemas/firestore.d.ts +362 -0
- package/dist/features/scams/schemas/firestore.js +233 -0
- package/dist/features/search/components/Search.d.ts +12 -2
- package/dist/features/search/components/Search.js +26 -7
- package/dist/features/search/components/index.d.ts +1 -1
- package/dist/features/search/hooks/useNavSuggestions.d.ts +1 -1
- package/dist/features/search/hooks/useNavSuggestions.js +2 -2
- package/dist/features/search/schemas/index.d.ts +7 -7
- package/dist/features/seller/actions/offer-actions.js +52 -36
- package/dist/features/seller/actions/seller-actions.js +19 -13
- package/dist/features/seller/api/products/route.js +9 -4
- package/dist/features/seller/components/SellerAddressesView.d.ts +3 -12
- package/dist/features/seller/components/SellerAddressesView.js +144 -4
- package/dist/features/seller/components/SellerAuctionsView.js +58 -5
- package/dist/features/seller/components/SellerBidsView.d.ts +4 -0
- package/dist/features/seller/components/SellerBidsView.js +131 -0
- package/dist/features/seller/components/SellerCouponEditorView.d.ts +19 -0
- package/dist/features/seller/components/SellerCouponEditorView.js +67 -0
- package/dist/features/seller/components/SellerCouponsView.d.ts +5 -3
- package/dist/features/seller/components/SellerCouponsView.js +135 -13
- package/dist/features/seller/components/SellerCreateProductView.d.ts +4 -10
- package/dist/features/seller/components/SellerCreateProductView.js +4 -3
- package/dist/features/seller/components/SellerEditProductView.d.ts +4 -10
- package/dist/features/seller/components/SellerEditProductView.js +4 -3
- package/dist/features/seller/components/SellerOffersPanel.d.ts +20 -0
- package/dist/features/seller/components/SellerOffersPanel.js +138 -0
- package/dist/features/seller/components/SellerOffersView.js +56 -5
- package/dist/features/seller/components/SellerOrdersView.d.ts +2 -1
- package/dist/features/seller/components/SellerOrdersView.js +185 -16
- package/dist/features/seller/components/SellerPayoutRequestView.d.ts +7 -0
- package/dist/features/seller/components/SellerPayoutRequestView.js +63 -0
- package/dist/features/seller/components/SellerPayoutSettingsView.d.ts +3 -10
- package/dist/features/seller/components/SellerPayoutSettingsView.js +89 -3
- package/dist/features/seller/components/SellerPayoutsView.js +56 -5
- package/dist/features/seller/components/SellerProductShell.d.ts +68 -0
- package/dist/features/seller/components/SellerProductShell.js +179 -0
- package/dist/features/seller/components/SellerProductsView.d.ts +2 -3
- package/dist/features/seller/components/SellerProductsView.js +194 -18
- package/dist/features/seller/components/SellerReviewsView.d.ts +5 -0
- package/dist/features/seller/components/SellerReviewsView.js +100 -0
- package/dist/features/seller/components/SellerShippingView.d.ts +3 -11
- package/dist/features/seller/components/SellerShippingView.js +87 -3
- package/dist/features/seller/components/SellerSidebar.d.ts +18 -6
- package/dist/features/seller/components/SellerSidebar.js +54 -8
- package/dist/features/seller/components/SellerStorefrontView.d.ts +26 -11
- package/dist/features/seller/components/SellerStorefrontView.js +45 -7
- package/dist/features/seller/components/index.d.ts +45 -1
- package/dist/features/seller/components/index.js +24 -0
- package/dist/features/seller/hooks/useSellerListingData.d.ts +3 -1
- package/dist/features/seller/hooks/useSellerListingData.js +6 -4
- package/dist/features/seller/hooks/useSellerStore.d.ts +2 -0
- package/dist/features/seller/hooks/useSellerStore.js +2 -0
- package/dist/features/seller/permission-map.d.ts +4 -2
- package/dist/features/seller/permission-map.js +16 -14
- package/dist/features/seller/repository/offer.repository.d.ts +3 -3
- package/dist/features/seller/repository/offer.repository.js +6 -6
- package/dist/features/seller/schemas/firestore.d.ts +7 -7
- package/dist/features/seller/schemas/firestore.js +4 -4
- package/dist/features/seller/schemas/index.d.ts +18 -18
- package/dist/features/shell/FormShell.d.ts +29 -0
- package/dist/features/shell/FormShell.js +103 -0
- package/dist/features/shell/QuickFormDrawer.d.ts +29 -0
- package/dist/features/shell/QuickFormDrawer.js +117 -0
- package/dist/features/shell/StepForm.d.ts +44 -0
- package/dist/features/shell/StepForm.js +81 -0
- package/dist/features/shell/index.d.ts +6 -0
- package/dist/features/shell/index.js +3 -0
- package/dist/features/stores/actions/store-query-actions.js +3 -3
- package/dist/features/stores/api/[storeSlug]/auctions/route.js +1 -1
- package/dist/features/stores/api/[storeSlug]/products/route.js +1 -1
- package/dist/features/stores/api/[storeSlug]/reviews/route.d.ts +1 -1
- package/dist/features/stores/api/[storeSlug]/reviews/route.js +25 -20
- package/dist/features/stores/components/InteractiveStoreCard.d.ts +2 -7
- package/dist/features/stores/components/InteractiveStoreCard.js +24 -10
- package/dist/features/stores/components/StoreAboutView.js +1 -1
- package/dist/features/stores/components/StoreAuctionsListing.d.ts +5 -2
- package/dist/features/stores/components/StoreAuctionsListing.js +103 -12
- package/dist/features/stores/components/StoreAuctionsPageView.js +8 -7
- package/dist/features/stores/components/StoreDetailLayoutView.d.ts +1 -0
- package/dist/features/stores/components/StoreDetailLayoutView.js +30 -4
- package/dist/features/stores/components/StoreFilters.d.ts +5 -0
- package/dist/features/stores/components/StoreFilters.js +20 -0
- package/dist/features/stores/components/StoreHeader.js +3 -2
- package/dist/features/stores/components/StorePreOrdersListing.d.ts +7 -0
- package/dist/features/stores/components/StorePreOrdersListing.js +92 -0
- package/dist/features/stores/components/StorePreOrdersPageView.d.ts +4 -0
- package/dist/features/stores/components/StorePreOrdersPageView.js +22 -0
- package/dist/features/stores/components/StoreProductsListing.d.ts +5 -2
- package/dist/features/stores/components/StoreProductsListing.js +113 -14
- package/dist/features/stores/components/StoreProductsPageView.js +8 -7
- package/dist/features/stores/components/StoreReviewsListing.js +4 -9
- package/dist/features/stores/components/StoresIndexListing.js +106 -9
- package/dist/features/stores/components/StoresIndexPageView.d.ts +6 -1
- package/dist/features/stores/components/StoresIndexPageView.js +9 -2
- package/dist/features/stores/components/StoresListView.js +1 -1
- package/dist/features/stores/components/index.d.ts +3 -0
- package/dist/features/stores/components/index.js +1 -0
- package/dist/features/stores/hooks/useStores.d.ts +8 -1
- package/dist/features/stores/hooks/useStores.js +17 -3
- package/dist/features/stores/schemas/firestore.d.ts +34 -0
- package/dist/features/stores/schemas/index.d.ts +10 -10
- package/dist/features/stores/types/index.d.ts +3 -0
- package/dist/features/sublisting/schemas/firestore.d.ts +30 -0
- package/dist/features/sublisting/schemas/firestore.js +19 -0
- package/dist/features/support/schemas/firestore.d.ts +113 -0
- package/dist/features/support/schemas/firestore.js +95 -0
- package/dist/features/whatsapp-bot/components/SellerWhatsAppSettingsView.d.ts +5 -0
- package/dist/features/whatsapp-bot/components/SellerWhatsAppSettingsView.js +143 -0
- package/dist/features/whatsapp-bot/components/index.d.ts +2 -0
- package/dist/features/whatsapp-bot/components/index.js +1 -0
- package/dist/features/whatsapp-bot/helpers/whatsapp.d.ts +23 -1
- package/dist/features/whatsapp-bot/helpers/whatsapp.js +104 -0
- package/dist/features/whatsapp-bot/server.d.ts +1 -0
- package/dist/features/whatsapp-bot/server.js +1 -0
- package/dist/features/whatsapp-bot/types/index.d.ts +49 -0
- package/dist/features/wishlist/components/WishlistView.d.ts +0 -10
- package/dist/features/wishlist/components/WishlistView.js +13 -6
- package/dist/features/wishlist/hooks/useGuestWishlist.d.ts +20 -0
- package/dist/features/wishlist/hooks/useGuestWishlist.js +49 -0
- package/dist/features/wishlist/hooks/useWishlist.js +2 -0
- package/dist/features/wishlist/hooks/useWishlistCount.d.ts +15 -0
- package/dist/features/wishlist/hooks/useWishlistCount.js +95 -0
- package/dist/features/wishlist/hooks/useWishlistWithGuest.d.ts +56 -0
- package/dist/features/wishlist/hooks/useWishlistWithGuest.js +57 -0
- package/dist/features/wishlist/index.d.ts +3 -0
- package/dist/features/wishlist/index.js +3 -0
- package/dist/features/wishlist/schemas/index.d.ts +2 -2
- package/dist/features/wishlist/types/index.d.ts +16 -0
- package/dist/features/wishlist/utils/guest-wishlist.d.ts +22 -0
- package/dist/features/wishlist/utils/guest-wishlist.js +70 -0
- package/dist/http/api-handler.js +8 -1
- package/dist/index.d.ts +158 -13
- package/dist/index.js +188 -21
- package/dist/monitoring/server-logger.js +9 -3
- package/dist/next/routing/route-map.d.ts +184 -36
- package/dist/next/routing/route-map.js +81 -22
- package/dist/providers/db-firebase/realtime.d.ts +1 -1
- package/dist/react/contexts/SessionContext.js +17 -26
- package/dist/react/hooks/useBulkSelection.d.ts +7 -24
- package/dist/react/hooks/useBulkSelection.js +27 -34
- package/dist/react/hooks/useLongPress.d.ts +3 -16
- package/dist/react/hooks/useLongPress.js +6 -25
- package/dist/react/index.d.ts +1 -0
- package/dist/react/index.js +2 -0
- package/dist/repositories/index.d.ts +3 -0
- package/dist/repositories/index.js +2 -0
- package/dist/seed/actions/demo-seed-actions.d.ts +2 -2
- package/dist/seed/actions/demo-seed-actions.js +1 -1
- package/dist/seed/addresses-seed-data.js +62 -261
- package/dist/seed/anime-figures-seed-data.d.ts +8 -0
- package/dist/seed/anime-figures-seed-data.js +1033 -0
- package/dist/seed/beyblade-seed-data.d.ts +7 -0
- package/dist/seed/beyblade-seed-data.js +1129 -0
- package/dist/seed/bids-seed-data.d.ts +4 -2
- package/dist/seed/bids-seed-data.js +343 -1067
- package/dist/seed/blog-posts-seed-data.d.ts +3 -2
- package/dist/seed/blog-posts-seed-data.js +258 -181
- package/dist/seed/brands-seed-data.d.ts +7 -0
- package/dist/seed/brands-seed-data.js +410 -0
- package/dist/seed/carousel-slides-seed-data.d.ts +3 -2
- package/dist/seed/carousel-slides-seed-data.js +177 -216
- package/dist/seed/cart-seed-data.d.ts +8 -8
- package/dist/seed/cart-seed-data.js +73 -74
- package/dist/seed/categories-seed-data.d.ts +4 -2
- package/dist/seed/categories-seed-data.js +720 -879
- package/dist/seed/conversations-seed-data.d.ts +8 -0
- package/dist/seed/conversations-seed-data.js +388 -0
- package/dist/seed/cosplay-accessories-seed-data.d.ts +8 -0
- package/dist/seed/cosplay-accessories-seed-data.js +647 -0
- package/dist/seed/coupon-usage-seed-data.d.ts +25 -0
- package/dist/seed/coupon-usage-seed-data.js +69 -0
- package/dist/seed/coupons-seed-data.d.ts +4 -2
- package/dist/seed/coupons-seed-data.js +204 -338
- package/dist/seed/events-seed-data.d.ts +4 -2
- package/dist/seed/events-seed-data.js +125 -588
- package/dist/seed/factories/cart.factory.d.ts +0 -1
- package/dist/seed/factories/cart.factory.js +2 -2
- package/dist/seed/faq-seed-data.d.ts +11 -41
- package/dist/seed/faq-seed-data.js +833 -1977
- package/dist/seed/grouped-listings-seed-data.d.ts +8 -0
- package/dist/seed/grouped-listings-seed-data.js +201 -0
- package/dist/seed/homepage-sections-seed-data.d.ts +3 -13
- package/dist/seed/homepage-sections-seed-data.js +228 -252
- package/dist/seed/hot-wheels-seed-data.d.ts +7 -0
- package/dist/seed/hot-wheels-seed-data.js +1612 -0
- package/dist/seed/index.d.ts +12 -6
- package/dist/seed/index.js +10 -7
- package/dist/seed/letitrip-official-seed-data.d.ts +8 -0
- package/dist/seed/letitrip-official-seed-data.js +399 -0
- package/dist/seed/manifest.d.ts +15 -0
- package/dist/seed/manifest.js +140 -0
- package/dist/seed/notifications-seed-data.d.ts +4 -2
- package/dist/seed/notifications-seed-data.js +117 -440
- package/dist/seed/orders-seed-data.d.ts +4 -2
- package/dist/seed/orders-seed-data.js +1090 -521
- package/dist/seed/payouts-seed-data.d.ts +4 -2
- package/dist/seed/payouts-seed-data.js +522 -145
- package/dist/seed/pokemon-carousel-slides-seed-data.d.ts +4 -2
- package/dist/seed/pokemon-carousel-slides-seed-data.js +157 -268
- package/dist/seed/pokemon-categories-seed-data.d.ts +18 -21
- package/dist/seed/pokemon-categories-seed-data.js +445 -1025
- package/dist/seed/pokemon-coupons-seed-data.d.ts +6 -0
- package/dist/seed/pokemon-coupons-seed-data.js +465 -0
- package/dist/seed/pokemon-homepage-sections-seed-data.d.ts +3 -2
- package/dist/seed/pokemon-homepage-sections-seed-data.js +120 -249
- package/dist/seed/pokemon-products-seed-data.d.ts +1 -1
- package/dist/seed/pokemon-products-seed-data.js +720 -48
- package/dist/seed/pokemon-seed-bundle.d.ts +36 -11
- package/dist/seed/pokemon-seed-bundle.js +60 -11
- package/dist/seed/pokemon-stores-seed-data.d.ts +2 -3
- package/dist/seed/pokemon-stores-seed-data.js +135 -34
- package/dist/seed/pokemon-users-seed-data.d.ts +2 -2
- package/dist/seed/pokemon-users-seed-data.js +344 -261
- package/dist/seed/products-auctions-seed-data.d.ts +10 -0
- package/dist/seed/products-auctions-seed-data.js +689 -0
- package/dist/seed/products-preorders-seed-data.d.ts +9 -0
- package/dist/seed/products-preorders-seed-data.js +483 -0
- package/dist/seed/products-seed-data.js +34 -13
- package/dist/seed/products-standard-seed-data.d.ts +8 -0
- package/dist/seed/products-standard-seed-data.js +4179 -0
- package/dist/seed/retro-gaming-seed-data.d.ts +8 -0
- package/dist/seed/retro-gaming-seed-data.js +801 -0
- package/dist/seed/reviews-seed-data.d.ts +4 -2
- package/dist/seed/reviews-seed-data.js +1005 -441
- package/dist/seed/scammers-seed-data.d.ts +17 -0
- package/dist/seed/scammers-seed-data.js +118 -0
- package/dist/seed/site-settings-seed-data.js +39 -16
- package/dist/seed/store-addresses-seed-data.js +187 -65
- package/dist/seed/stores-seed-data.d.ts +3 -9
- package/dist/seed/stores-seed-data.js +212 -102
- package/dist/seed/sublisting-categories-seed-data.d.ts +7 -0
- package/dist/seed/sublisting-categories-seed-data.js +315 -0
- package/dist/seed/transformers-seed-data.d.ts +7 -0
- package/dist/seed/transformers-seed-data.js +530 -0
- package/dist/seed/users-seed-data.d.ts +3 -2
- package/dist/seed/users-seed-data.js +531 -440
- package/dist/seed/wishlists-seed-data.d.ts +5 -1
- package/dist/seed/wishlists-seed-data.js +84 -6
- package/dist/server.d.ts +10 -2
- package/dist/server.js +14 -4
- package/dist/tokens/index.d.ts +6 -0
- package/dist/tokens/index.js +2 -0
- package/dist/tokens/tokens.css +76 -31
- package/dist/ui/components/Avatar.style.css +10 -12
- package/dist/ui/components/BaseListingCard.d.ts +8 -3
- package/dist/ui/components/BaseListingCard.js +39 -30
- package/dist/ui/components/BaseListingCard.style.css +8 -6
- package/dist/ui/components/BulkActionsBar.d.ts +16 -0
- package/dist/ui/components/BulkActionsBar.js +22 -0
- package/dist/ui/components/Button.style.css +23 -23
- package/dist/ui/components/Card.style.css +60 -62
- package/dist/ui/components/Checkbox.style.css +19 -21
- package/dist/ui/components/DashboardStatsCard.style.css +12 -14
- package/dist/ui/components/Drawer.style.css +18 -14
- package/dist/ui/components/Dropdown.style.css +25 -27
- package/dist/ui/components/EmptyState.style.css +2 -4
- package/dist/ui/components/HorizontalScroller.d.ts +3 -1
- package/dist/ui/components/HorizontalScroller.js +130 -21
- package/dist/ui/components/HorizontalScroller.style.css +2 -2
- package/dist/ui/components/ImageLightbox.d.ts +0 -9
- package/dist/ui/components/ImageLightbox.js +43 -9
- package/dist/ui/components/InlineCreateSelect.d.ts +38 -0
- package/dist/ui/components/InlineCreateSelect.js +70 -0
- package/dist/ui/components/ListingLayout.style.css +41 -77
- package/dist/ui/components/ListingToolbar.d.ts +54 -0
- package/dist/ui/components/ListingToolbar.js +34 -0
- package/dist/ui/components/Modal.style.css +14 -10
- package/dist/ui/components/PageLoader.d.ts +11 -0
- package/dist/ui/components/PageLoader.js +21 -0
- package/dist/ui/components/Radio.style.css +34 -36
- package/dist/ui/components/RichTextEditor.js +1 -1
- package/dist/ui/components/RowActionMenu.d.ts +1 -0
- package/dist/ui/components/RowActionMenu.js +4 -2
- package/dist/ui/components/SectionTabs.js +1 -1
- package/dist/ui/components/SectionTabs.style.css +1 -0
- package/dist/ui/components/SideDrawer.style.css +3 -11
- package/dist/ui/components/SideModal.style.css +4 -8
- package/dist/ui/components/Slider.style.css +2 -4
- package/dist/ui/components/Tabs.style.css +8 -10
- package/dist/ui/components/Toast.style.css +22 -24
- package/dist/ui/components/Toggle.style.css +11 -13
- package/dist/ui/index.d.ts +9 -0
- package/dist/ui/index.js +5 -0
- package/dist/ui/rich-text/RichText.js +21 -2
- package/dist/ui/rich-text/RichText.style.css +292 -5
- package/dist/ui/rich-text/RichTextRenderer.d.ts +15 -0
- package/dist/ui/rich-text/RichTextRenderer.js +15 -0
- package/dist/utils/id-generators.d.ts +10 -0
- package/dist/utils/id-generators.js +12 -0
- package/dist/validation/schemas.d.ts +9 -9
- package/package.json +5 -1
- package/README.md +0 -116
|
@@ -0,0 +1,4179 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Standard Products Seed Data — Collectibles Edition
|
|
3
|
+
* 20 products across 5 stores covering all collectibles verticals.
|
|
4
|
+
* id === slug convention enforced throughout.
|
|
5
|
+
* Prices in INR paise (₹1 = 100 paise).
|
|
6
|
+
*/
|
|
7
|
+
const NOW = new Date();
|
|
8
|
+
const daysAgo = (n) => new Date(NOW.getTime() - n * 86400000);
|
|
9
|
+
export const productsStandardSeedData = [
|
|
10
|
+
// ── Store: Pokémon Palace (user-aryan-kapoor) — 5 products ─────────────────
|
|
11
|
+
// 1. Pokémon SV Paldean Fates ETB
|
|
12
|
+
{
|
|
13
|
+
id: "product-pokemon-sv-etb",
|
|
14
|
+
slug: "product-pokemon-sv-etb",
|
|
15
|
+
title: "Pokémon TCG: Scarlet & Violet — Paldean Fates Elite Trainer Box",
|
|
16
|
+
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.",
|
|
17
|
+
category: "category-pokemon-tcg",
|
|
18
|
+
categoryName: "Pokémon TCG",
|
|
19
|
+
brand: "brand-pokemon-company",
|
|
20
|
+
price: 449900,
|
|
21
|
+
currency: "INR",
|
|
22
|
+
stockQuantity: 15,
|
|
23
|
+
availableQuantity: 15,
|
|
24
|
+
mainImage: "https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
25
|
+
images: [
|
|
26
|
+
"https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
27
|
+
"https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
28
|
+
"https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
|
|
29
|
+
],
|
|
30
|
+
status: "published",
|
|
31
|
+
storeName: "Pokémon Palace",
|
|
32
|
+
storeId: "store-pokemon-palace",
|
|
33
|
+
featured: false,
|
|
34
|
+
isAuction: false,
|
|
35
|
+
isPreOrder: false,
|
|
36
|
+
isPromoted: true,
|
|
37
|
+
tags: [
|
|
38
|
+
"pokemon",
|
|
39
|
+
"etb",
|
|
40
|
+
"paldean-fates",
|
|
41
|
+
"scarlet-violet",
|
|
42
|
+
"sealed",
|
|
43
|
+
"shiny",
|
|
44
|
+
],
|
|
45
|
+
condition: "new",
|
|
46
|
+
specifications: [
|
|
47
|
+
{ name: "Set", value: "Scarlet & Violet — Paldean Fates" },
|
|
48
|
+
{ name: "Language", value: "English" },
|
|
49
|
+
{ name: "Contents", value: "9 booster packs, 65 sleeves, dice, coin" },
|
|
50
|
+
{ name: "Year", value: "2024" },
|
|
51
|
+
{ name: "Publisher", value: "The Pokémon Company International" },
|
|
52
|
+
],
|
|
53
|
+
features: [
|
|
54
|
+
"Factory sealed — authentic PTCGI guarantee",
|
|
55
|
+
"9 booster packs with Shiny Pokémon cards",
|
|
56
|
+
"Includes 65 protective card sleeves",
|
|
57
|
+
"Competition-legal accessories included",
|
|
58
|
+
"Sourced directly from official distributor",
|
|
59
|
+
],
|
|
60
|
+
shippingInfo: "Double-boxed with foam inserts. Free shipping on orders above ₹1,499. 3–7 business days.",
|
|
61
|
+
returnPolicy: "7-day return on factory-sealed product (seal must be intact). No returns on opened packs.",
|
|
62
|
+
allowOffers: false,
|
|
63
|
+
createdAt: daysAgo(60),
|
|
64
|
+
updatedAt: daysAgo(2),
|
|
65
|
+
},
|
|
66
|
+
// 2. Pokémon 151 Booster Box (sealed)
|
|
67
|
+
{
|
|
68
|
+
id: "product-pokemon-151-booster-box",
|
|
69
|
+
slug: "product-pokemon-151-booster-box",
|
|
70
|
+
title: "Pokémon TCG: Scarlet & Violet — 151 Booster Box (36 Packs)",
|
|
71
|
+
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.",
|
|
72
|
+
category: "category-sealed-product",
|
|
73
|
+
categoryName: "Sealed Product",
|
|
74
|
+
brand: "brand-pokemon-company",
|
|
75
|
+
price: 1499900,
|
|
76
|
+
currency: "INR",
|
|
77
|
+
stockQuantity: 5,
|
|
78
|
+
availableQuantity: 5,
|
|
79
|
+
mainImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
80
|
+
images: [
|
|
81
|
+
"https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
82
|
+
"https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
83
|
+
"https://images.unsplash.com/photo-1578301978162-7aae4d755744?w=800&h=800&fit=crop",
|
|
84
|
+
],
|
|
85
|
+
status: "published",
|
|
86
|
+
storeName: "Pokémon Palace",
|
|
87
|
+
storeId: "store-pokemon-palace",
|
|
88
|
+
featured: true,
|
|
89
|
+
isAuction: false,
|
|
90
|
+
isPreOrder: false,
|
|
91
|
+
isPromoted: false,
|
|
92
|
+
tags: [
|
|
93
|
+
"pokemon",
|
|
94
|
+
"booster-box",
|
|
95
|
+
"151",
|
|
96
|
+
"scarlet-violet",
|
|
97
|
+
"sealed",
|
|
98
|
+
"investment",
|
|
99
|
+
],
|
|
100
|
+
condition: "new",
|
|
101
|
+
specifications: [
|
|
102
|
+
{ name: "Set", value: "Scarlet & Violet — 151" },
|
|
103
|
+
{ name: "Packs per Box", value: "36" },
|
|
104
|
+
{ name: "Cards per Pack", value: "10" },
|
|
105
|
+
{ name: "Language", value: "English" },
|
|
106
|
+
{ name: "Year", value: "2023" },
|
|
107
|
+
],
|
|
108
|
+
features: [
|
|
109
|
+
"Factory sealed booster box",
|
|
110
|
+
"36 booster packs — one case equivalent",
|
|
111
|
+
"Features Mew, Venusaur, Charizard, Blastoise chase cards",
|
|
112
|
+
"Investment-grade sealed collectible",
|
|
113
|
+
"Sourced from official UK distributor shipment",
|
|
114
|
+
],
|
|
115
|
+
shippingInfo: "Double-boxed with foam inserts — no corner damage guarantee. Free shipping. 3–7 business days.",
|
|
116
|
+
returnPolicy: "7-day return on factory-sealed product (seal must be intact). No returns on opened boxes.",
|
|
117
|
+
allowOffers: true,
|
|
118
|
+
minOfferPercent: 90,
|
|
119
|
+
createdAt: daysAgo(55),
|
|
120
|
+
updatedAt: daysAgo(3),
|
|
121
|
+
},
|
|
122
|
+
// 3. Pokémon Pikachu Plush 8"
|
|
123
|
+
{
|
|
124
|
+
id: "product-pokemon-pikachu-plush-8",
|
|
125
|
+
slug: "product-pokemon-pikachu-plush-8",
|
|
126
|
+
title: "Pokémon Center: Pikachu Sitting Cuties Plush — 8 Inch",
|
|
127
|
+
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.",
|
|
128
|
+
category: "category-nendoroids-chibis",
|
|
129
|
+
categoryName: "Nendoroids & Chibis",
|
|
130
|
+
brand: "brand-pokemon-company",
|
|
131
|
+
price: 129900,
|
|
132
|
+
currency: "INR",
|
|
133
|
+
stockQuantity: 25,
|
|
134
|
+
availableQuantity: 25,
|
|
135
|
+
mainImage: "https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
|
|
136
|
+
images: [
|
|
137
|
+
"https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
|
|
138
|
+
"https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
139
|
+
"https://images.unsplash.com/photo-1559128010-7c1ad6e1b6a5?w=800&h=800&fit=crop",
|
|
140
|
+
],
|
|
141
|
+
status: "published",
|
|
142
|
+
storeName: "Pokémon Palace",
|
|
143
|
+
storeId: "store-pokemon-palace",
|
|
144
|
+
featured: false,
|
|
145
|
+
isAuction: false,
|
|
146
|
+
isPreOrder: false,
|
|
147
|
+
isPromoted: false,
|
|
148
|
+
tags: ["pokemon", "pikachu", "plush", "pokemon-center", "official", "gift"],
|
|
149
|
+
condition: "new",
|
|
150
|
+
specifications: [
|
|
151
|
+
{ name: "Size", value: "8 inches", unit: "inches" },
|
|
152
|
+
{ name: "Material", value: "Polyester plush" },
|
|
153
|
+
{ name: "License", value: "Official Pokémon Center" },
|
|
154
|
+
{ name: "Age Rating", value: "3+" },
|
|
155
|
+
],
|
|
156
|
+
features: [
|
|
157
|
+
"Official Pokémon Center licensed product",
|
|
158
|
+
"CE safety certified — safe for children 3+",
|
|
159
|
+
"Super-soft polyester plush material",
|
|
160
|
+
"Embroidered face details for durability",
|
|
161
|
+
"Original hang-tag packaging included",
|
|
162
|
+
],
|
|
163
|
+
shippingInfo: "Bubble-padded envelope. Free shipping on orders above ₹1,499. 3–7 business days.",
|
|
164
|
+
returnPolicy: "7-day return if product is defective or not as described. Must be in original packaging.",
|
|
165
|
+
allowOffers: false,
|
|
166
|
+
createdAt: daysAgo(50),
|
|
167
|
+
updatedAt: daysAgo(5),
|
|
168
|
+
},
|
|
169
|
+
// 4. Pokémon Gengar Sitting Cuties Plush
|
|
170
|
+
{
|
|
171
|
+
id: "product-pokemon-gengar-sitting-cuties",
|
|
172
|
+
slug: "product-pokemon-gengar-sitting-cuties",
|
|
173
|
+
title: "Pokémon Center: Gengar Sitting Cuties Plush — 12 Inch",
|
|
174
|
+
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.",
|
|
175
|
+
category: "category-nendoroids-chibis",
|
|
176
|
+
categoryName: "Nendoroids & Chibis",
|
|
177
|
+
brand: "brand-pokemon-company",
|
|
178
|
+
price: 149900,
|
|
179
|
+
currency: "INR",
|
|
180
|
+
stockQuantity: 12,
|
|
181
|
+
availableQuantity: 12,
|
|
182
|
+
mainImage: "https://images.unsplash.com/photo-1559128010-7c1ad6e1b6a5?w=800&h=800&fit=crop",
|
|
183
|
+
images: [
|
|
184
|
+
"https://images.unsplash.com/photo-1559128010-7c1ad6e1b6a5?w=800&h=800&fit=crop",
|
|
185
|
+
"https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
|
|
186
|
+
"https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
187
|
+
],
|
|
188
|
+
status: "published",
|
|
189
|
+
storeName: "Pokémon Palace",
|
|
190
|
+
storeId: "store-pokemon-palace",
|
|
191
|
+
featured: false,
|
|
192
|
+
isAuction: false,
|
|
193
|
+
isPreOrder: false,
|
|
194
|
+
isPromoted: false,
|
|
195
|
+
tags: [
|
|
196
|
+
"pokemon",
|
|
197
|
+
"gengar",
|
|
198
|
+
"plush",
|
|
199
|
+
"pokemon-center",
|
|
200
|
+
"ghost-type",
|
|
201
|
+
"official",
|
|
202
|
+
],
|
|
203
|
+
condition: "new",
|
|
204
|
+
specifications: [
|
|
205
|
+
{ name: "Size", value: "12 inches", unit: "inches" },
|
|
206
|
+
{ name: "Material", value: "Polyester plush" },
|
|
207
|
+
{ name: "License", value: "Official Pokémon Center Japan" },
|
|
208
|
+
{ name: "Age Rating", value: "3+" },
|
|
209
|
+
],
|
|
210
|
+
features: [
|
|
211
|
+
"Official Pokémon Center Japan licensed product",
|
|
212
|
+
"12-inch extra-large format",
|
|
213
|
+
"Super-soft polyester plush",
|
|
214
|
+
"Embroidered grin and eye details",
|
|
215
|
+
"Japan import — direct sourcing",
|
|
216
|
+
],
|
|
217
|
+
shippingInfo: "Bubble-padded envelope. Free shipping on orders above ₹1,499. 3–7 business days.",
|
|
218
|
+
returnPolicy: "7-day return if product is defective or not as described. Must be in original packaging.",
|
|
219
|
+
allowOffers: false,
|
|
220
|
+
createdAt: daysAgo(45),
|
|
221
|
+
updatedAt: daysAgo(4),
|
|
222
|
+
},
|
|
223
|
+
// 5. Pokémon Base Set Booster Pack (Shadowless Sealed)
|
|
224
|
+
{
|
|
225
|
+
id: "product-pokemon-base-set-booster-sealed",
|
|
226
|
+
slug: "product-pokemon-base-set-booster-sealed",
|
|
227
|
+
title: "Pokémon Base Set Booster Pack — Shadowless 1st Print (Sealed, 1999)",
|
|
228
|
+
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.",
|
|
229
|
+
category: "category-vintage-tcg",
|
|
230
|
+
categoryName: "Vintage TCG",
|
|
231
|
+
brand: "brand-pokemon-company",
|
|
232
|
+
price: 8999900,
|
|
233
|
+
currency: "INR",
|
|
234
|
+
stockQuantity: 1,
|
|
235
|
+
availableQuantity: 1,
|
|
236
|
+
mainImage: "https://images.unsplash.com/photo-1578301978162-7aae4d755744?w=800&h=800&fit=crop",
|
|
237
|
+
images: [
|
|
238
|
+
"https://images.unsplash.com/photo-1578301978162-7aae4d755744?w=800&h=800&fit=crop",
|
|
239
|
+
"https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
240
|
+
"https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
241
|
+
],
|
|
242
|
+
status: "published",
|
|
243
|
+
storeName: "Pokémon Palace",
|
|
244
|
+
storeId: "store-pokemon-palace",
|
|
245
|
+
featured: true,
|
|
246
|
+
isAuction: false,
|
|
247
|
+
isPreOrder: false,
|
|
248
|
+
isPromoted: false,
|
|
249
|
+
tags: [
|
|
250
|
+
"pokemon",
|
|
251
|
+
"base-set",
|
|
252
|
+
"shadowless",
|
|
253
|
+
"1999",
|
|
254
|
+
"sealed",
|
|
255
|
+
"vintage",
|
|
256
|
+
"investment",
|
|
257
|
+
"rare",
|
|
258
|
+
],
|
|
259
|
+
condition: "new",
|
|
260
|
+
specifications: [
|
|
261
|
+
{ name: "Set", value: "Base Set — Shadowless" },
|
|
262
|
+
{ name: "Print Run", value: "1st Print (Shadowless)" },
|
|
263
|
+
{ name: "Year", value: "1999" },
|
|
264
|
+
{ name: "Booster Art", value: "Clefairy" },
|
|
265
|
+
{ name: "Language", value: "English" },
|
|
266
|
+
{ name: "Condition", value: "Sealed — never opened" },
|
|
267
|
+
],
|
|
268
|
+
features: [
|
|
269
|
+
"1999 Shadowless first-print run — extremely rare",
|
|
270
|
+
"Sealed in original factory crimp",
|
|
271
|
+
"Stored in UV-protected sleeve since acquisition",
|
|
272
|
+
"Certificate of authenticity included",
|
|
273
|
+
"Investment-grade — estimated appreciation potential",
|
|
274
|
+
],
|
|
275
|
+
shippingInfo: "Insured courier with signature on delivery. Double-boxed with foam insert. Extra care packaging at no charge.",
|
|
276
|
+
returnPolicy: "3-day return window if pack is proven to be a reproduction. No returns for any other reason — please ask all questions before purchasing.",
|
|
277
|
+
insurance: true,
|
|
278
|
+
insuranceCost: 50000,
|
|
279
|
+
allowOffers: true,
|
|
280
|
+
minOfferPercent: 85,
|
|
281
|
+
createdAt: daysAgo(30),
|
|
282
|
+
updatedAt: daysAgo(1),
|
|
283
|
+
},
|
|
284
|
+
// ── Store: CardGame Hub (user-nisha-reddy) — 2 products ────────────────────
|
|
285
|
+
// 6. Yu-Gi-Oh! 25th Anniversary Tin
|
|
286
|
+
{
|
|
287
|
+
id: "product-yugioh-25th-tin",
|
|
288
|
+
slug: "product-yugioh-25th-tin",
|
|
289
|
+
title: "Yu-Gi-Oh! 25th Anniversary Tin: Dueling Mirrors",
|
|
290
|
+
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.",
|
|
291
|
+
category: "category-yugioh-tcg",
|
|
292
|
+
categoryName: "Yu-Gi-Oh! TCG",
|
|
293
|
+
brand: "brand-konami",
|
|
294
|
+
price: 299900,
|
|
295
|
+
currency: "INR",
|
|
296
|
+
stockQuantity: 8,
|
|
297
|
+
availableQuantity: 8,
|
|
298
|
+
mainImage: "https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=800&h=800&fit=crop",
|
|
299
|
+
images: [
|
|
300
|
+
"https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=800&h=800&fit=crop",
|
|
301
|
+
"https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
302
|
+
"https://images.unsplash.com/photo-1578301978162-7aae4d755744?w=800&h=800&fit=crop",
|
|
303
|
+
],
|
|
304
|
+
status: "published",
|
|
305
|
+
storeName: "CardGame Hub",
|
|
306
|
+
storeId: "store-cardgame-hub",
|
|
307
|
+
featured: true,
|
|
308
|
+
isAuction: false,
|
|
309
|
+
isPreOrder: false,
|
|
310
|
+
isPromoted: false,
|
|
311
|
+
tags: [
|
|
312
|
+
"yugioh",
|
|
313
|
+
"tin",
|
|
314
|
+
"25th-anniversary",
|
|
315
|
+
"konami",
|
|
316
|
+
"ghost-rare",
|
|
317
|
+
"secret-rare",
|
|
318
|
+
],
|
|
319
|
+
condition: "new",
|
|
320
|
+
specifications: [
|
|
321
|
+
{ name: "Product", value: "25th Anniversary Tin: Dueling Mirrors" },
|
|
322
|
+
{ name: "Mega-Packs", value: "3" },
|
|
323
|
+
{ name: "Cards per Mega-Pack", value: "16" },
|
|
324
|
+
{ name: "Guaranteed Ghost Rare", value: "1 per tin" },
|
|
325
|
+
{ name: "Secret Rares", value: "3+ per tin" },
|
|
326
|
+
{ name: "Language", value: "English" },
|
|
327
|
+
],
|
|
328
|
+
features: [
|
|
329
|
+
"25th Anniversary commemorative tin",
|
|
330
|
+
"Guaranteed Ghost Rare card",
|
|
331
|
+
"3 Secret Rare cards minimum",
|
|
332
|
+
"Tournament staple reprints",
|
|
333
|
+
"Collector-grade embossed tin included",
|
|
334
|
+
],
|
|
335
|
+
shippingInfo: "Singles shipped in toploader inside padded envelope. Free shipping on orders above ₹1,199. 4–6 business days.",
|
|
336
|
+
returnPolicy: "7-day return on factory-sealed product only. No returns on opened tins.",
|
|
337
|
+
allowOffers: false,
|
|
338
|
+
createdAt: daysAgo(70),
|
|
339
|
+
updatedAt: daysAgo(5),
|
|
340
|
+
},
|
|
341
|
+
// 7. Yu-Gi-Oh! Structure Deck: Alba Strike
|
|
342
|
+
{
|
|
343
|
+
id: "product-yugioh-structure-albaz",
|
|
344
|
+
slug: "product-yugioh-structure-albaz",
|
|
345
|
+
title: "Yu-Gi-Oh! Structure Deck: Alba Strike",
|
|
346
|
+
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.",
|
|
347
|
+
category: "category-yugioh-tcg",
|
|
348
|
+
categoryName: "Yu-Gi-Oh! TCG",
|
|
349
|
+
brand: "brand-konami",
|
|
350
|
+
price: 89900,
|
|
351
|
+
currency: "INR",
|
|
352
|
+
stockQuantity: 20,
|
|
353
|
+
availableQuantity: 20,
|
|
354
|
+
mainImage: "https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=800&h=800&fit=crop",
|
|
355
|
+
images: [
|
|
356
|
+
"https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=800&h=800&fit=crop",
|
|
357
|
+
"https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
358
|
+
"https://images.unsplash.com/photo-1578292992345-7ee038c5fb7c?w=800&h=800&fit=crop",
|
|
359
|
+
],
|
|
360
|
+
status: "published",
|
|
361
|
+
storeName: "CardGame Hub",
|
|
362
|
+
storeId: "store-cardgame-hub",
|
|
363
|
+
featured: false,
|
|
364
|
+
isAuction: false,
|
|
365
|
+
isPreOrder: false,
|
|
366
|
+
isPromoted: false,
|
|
367
|
+
tags: [
|
|
368
|
+
"yugioh",
|
|
369
|
+
"structure-deck",
|
|
370
|
+
"alba-strike",
|
|
371
|
+
"albaz",
|
|
372
|
+
"dogmatika",
|
|
373
|
+
"konami",
|
|
374
|
+
],
|
|
375
|
+
condition: "new",
|
|
376
|
+
specifications: [
|
|
377
|
+
{ name: "Deck Size", value: "41 cards" },
|
|
378
|
+
{ name: "Ultra Rare", value: "2" },
|
|
379
|
+
{ name: "Super Rare", value: "2" },
|
|
380
|
+
{ name: "Commons", value: "37" },
|
|
381
|
+
{ name: "Strategy", value: "Albaz Fusion / Dogmatika" },
|
|
382
|
+
{ name: "Language", value: "English" },
|
|
383
|
+
],
|
|
384
|
+
features: [
|
|
385
|
+
"Ready-to-play 41-card deck",
|
|
386
|
+
"Includes powerful Mirrorjade the Iceblade Dragon",
|
|
387
|
+
"Deck guide for new players included",
|
|
388
|
+
"Game mat included",
|
|
389
|
+
"Great entry point for competitive Albaz strategy",
|
|
390
|
+
],
|
|
391
|
+
shippingInfo: "Bubble-padded envelope. Free shipping on orders above ₹1,199. 4–6 business days.",
|
|
392
|
+
returnPolicy: "7-day return on factory-sealed product (box must be unopened). No returns on opened decks.",
|
|
393
|
+
allowOffers: false,
|
|
394
|
+
createdAt: daysAgo(65),
|
|
395
|
+
updatedAt: daysAgo(7),
|
|
396
|
+
},
|
|
397
|
+
// ── Store: Diecast Depot (user-vikram-mehta) — 5 products ──────────────────
|
|
398
|
+
// 8. Hot Wheels Redline 1969 Camaro (Vintage)
|
|
399
|
+
{
|
|
400
|
+
id: "product-hot-wheels-redline-1969-camaro",
|
|
401
|
+
slug: "product-hot-wheels-redline-1969-camaro",
|
|
402
|
+
title: "Hot Wheels Redline 1969 Custom Camaro — Orange (Vintage, Near Mint)",
|
|
403
|
+
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.",
|
|
404
|
+
category: "category-hot-wheels",
|
|
405
|
+
categoryName: "Hot Wheels",
|
|
406
|
+
brand: "brand-hot-wheels",
|
|
407
|
+
price: 499900,
|
|
408
|
+
currency: "INR",
|
|
409
|
+
stockQuantity: 1,
|
|
410
|
+
availableQuantity: 1,
|
|
411
|
+
mainImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=800&fit=crop",
|
|
412
|
+
images: [
|
|
413
|
+
"https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=800&fit=crop",
|
|
414
|
+
"https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?w=800&h=800&fit=crop",
|
|
415
|
+
"https://images.unsplash.com/photo-1603584173870-7f23fdae1b7a?w=800&h=800&fit=crop",
|
|
416
|
+
],
|
|
417
|
+
status: "published",
|
|
418
|
+
storeName: "Diecast Depot",
|
|
419
|
+
storeId: "store-diecast-depot",
|
|
420
|
+
featured: true,
|
|
421
|
+
isAuction: false,
|
|
422
|
+
isPreOrder: false,
|
|
423
|
+
isPromoted: false,
|
|
424
|
+
tags: [
|
|
425
|
+
"hot-wheels",
|
|
426
|
+
"redline",
|
|
427
|
+
"1969",
|
|
428
|
+
"camaro",
|
|
429
|
+
"vintage",
|
|
430
|
+
"collector",
|
|
431
|
+
"rare",
|
|
432
|
+
],
|
|
433
|
+
condition: "used",
|
|
434
|
+
specifications: [
|
|
435
|
+
{ name: "Year", value: "1969" },
|
|
436
|
+
{ name: "Scale", value: "1:64" },
|
|
437
|
+
{ name: "Colour", value: "Orange" },
|
|
438
|
+
{ name: "Wheels", value: "Redline" },
|
|
439
|
+
{ name: "Condition Grade", value: "Near Mint (NM)" },
|
|
440
|
+
{ name: "Country of Origin", value: "USA (Hong Kong manufactured)" },
|
|
441
|
+
],
|
|
442
|
+
features: [
|
|
443
|
+
"First-year Hot Wheels Redline series (1969)",
|
|
444
|
+
"Near Mint condition — vibrant original paint",
|
|
445
|
+
"Authentic red-line tyres intact",
|
|
446
|
+
"US estate sale provenance",
|
|
447
|
+
"UV-protected storage history",
|
|
448
|
+
],
|
|
449
|
+
shippingInfo: "Each car bubble-wrapped individually and packed in rigid mailer. Insured shipping included. 3–5 business days.",
|
|
450
|
+
returnPolicy: "3-day return window if car is misrepresented in condition grading. Photos taken before shipping for reference.",
|
|
451
|
+
insurance: true,
|
|
452
|
+
insuranceCost: 10000,
|
|
453
|
+
allowOffers: true,
|
|
454
|
+
minOfferPercent: 88,
|
|
455
|
+
createdAt: daysAgo(40),
|
|
456
|
+
updatedAt: daysAgo(2),
|
|
457
|
+
},
|
|
458
|
+
// 9. Hot Wheels Car Culture Premium 5-Pack
|
|
459
|
+
{
|
|
460
|
+
id: "product-hot-wheels-premium-5pack",
|
|
461
|
+
slug: "product-hot-wheels-premium-5pack",
|
|
462
|
+
title: "Hot Wheels Car Culture: Modern Classics Premium 5-Pack",
|
|
463
|
+
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.",
|
|
464
|
+
category: "category-hot-wheels",
|
|
465
|
+
categoryName: "Hot Wheels",
|
|
466
|
+
brand: "brand-hot-wheels",
|
|
467
|
+
price: 129900,
|
|
468
|
+
currency: "INR",
|
|
469
|
+
stockQuantity: 18,
|
|
470
|
+
availableQuantity: 18,
|
|
471
|
+
mainImage: "https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?w=800&h=800&fit=crop",
|
|
472
|
+
images: [
|
|
473
|
+
"https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?w=800&h=800&fit=crop",
|
|
474
|
+
"https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=800&fit=crop",
|
|
475
|
+
"https://images.unsplash.com/photo-1603584173870-7f23fdae1b7a?w=800&h=800&fit=crop",
|
|
476
|
+
],
|
|
477
|
+
status: "published",
|
|
478
|
+
storeName: "Diecast Depot",
|
|
479
|
+
storeId: "store-diecast-depot",
|
|
480
|
+
featured: false,
|
|
481
|
+
isAuction: false,
|
|
482
|
+
isPreOrder: false,
|
|
483
|
+
isPromoted: true,
|
|
484
|
+
tags: [
|
|
485
|
+
"hot-wheels",
|
|
486
|
+
"car-culture",
|
|
487
|
+
"premium",
|
|
488
|
+
"5-pack",
|
|
489
|
+
"jdm",
|
|
490
|
+
"modern-classics",
|
|
491
|
+
],
|
|
492
|
+
condition: "new",
|
|
493
|
+
specifications: [
|
|
494
|
+
{ name: "Set", value: "Car Culture — Modern Classics" },
|
|
495
|
+
{ name: "Cars", value: "5" },
|
|
496
|
+
{ name: "Scale", value: "1:64" },
|
|
497
|
+
{ name: "Wheels", value: "Premium rubber" },
|
|
498
|
+
{ name: "Features", value: "Opening hoods (select cars)" },
|
|
499
|
+
],
|
|
500
|
+
features: [
|
|
501
|
+
"Premium 5-car set — Japanese performance cars",
|
|
502
|
+
"Real rubber tyres for premium feel",
|
|
503
|
+
"Opening hoods on select vehicles",
|
|
504
|
+
"Individually numbered collector cards included",
|
|
505
|
+
"Die-cast metal with premium paint",
|
|
506
|
+
],
|
|
507
|
+
shippingInfo: "Cars packed individually in bubble wrap inside rigid mailer. Free shipping on orders above ₹999. 3–5 business days.",
|
|
508
|
+
returnPolicy: "7-day return on factory-sealed blister pack (blister must be unopened).",
|
|
509
|
+
allowOffers: false,
|
|
510
|
+
createdAt: daysAgo(35),
|
|
511
|
+
updatedAt: daysAgo(1),
|
|
512
|
+
},
|
|
513
|
+
// 10. Tomica Limited Vintage Datsun 240Z
|
|
514
|
+
{
|
|
515
|
+
id: "product-tomica-limited-datsun",
|
|
516
|
+
slug: "product-tomica-limited-datsun",
|
|
517
|
+
title: "Tomica Limited Vintage: Datsun Fairlady 240Z (Silver) — TLV-N43",
|
|
518
|
+
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.",
|
|
519
|
+
category: "category-tomica",
|
|
520
|
+
categoryName: "Tomica",
|
|
521
|
+
brand: "brand-tomica",
|
|
522
|
+
price: 299900,
|
|
523
|
+
currency: "INR",
|
|
524
|
+
stockQuantity: 6,
|
|
525
|
+
availableQuantity: 6,
|
|
526
|
+
mainImage: "https://images.unsplash.com/photo-1603584173870-7f23fdae1b7a?w=800&h=800&fit=crop",
|
|
527
|
+
images: [
|
|
528
|
+
"https://images.unsplash.com/photo-1603584173870-7f23fdae1b7a?w=800&h=800&fit=crop",
|
|
529
|
+
"https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=800&fit=crop",
|
|
530
|
+
"https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?w=800&h=800&fit=crop",
|
|
531
|
+
],
|
|
532
|
+
status: "published",
|
|
533
|
+
storeName: "Diecast Depot",
|
|
534
|
+
storeId: "store-diecast-depot",
|
|
535
|
+
featured: false,
|
|
536
|
+
isAuction: false,
|
|
537
|
+
isPreOrder: false,
|
|
538
|
+
isPromoted: false,
|
|
539
|
+
tags: [
|
|
540
|
+
"tomica",
|
|
541
|
+
"limited-vintage",
|
|
542
|
+
"datsun",
|
|
543
|
+
"240z",
|
|
544
|
+
"fairlady",
|
|
545
|
+
"tlv",
|
|
546
|
+
"japanese-cars",
|
|
547
|
+
],
|
|
548
|
+
condition: "new",
|
|
549
|
+
specifications: [
|
|
550
|
+
{ name: "Model", value: "Datsun Fairlady 240Z" },
|
|
551
|
+
{ name: "Series", value: "Tomica Limited Vintage (TLV-N43)" },
|
|
552
|
+
{ name: "Colour", value: "Silver" },
|
|
553
|
+
{ name: "Scale", value: "1:64" },
|
|
554
|
+
{ name: "Features", value: "Opening doors, rubber tyres, photo-etched badges" },
|
|
555
|
+
],
|
|
556
|
+
features: [
|
|
557
|
+
"Premium TLV-Vintage precision casting",
|
|
558
|
+
"Opening doors with interior detail",
|
|
559
|
+
"Real rubber tyres",
|
|
560
|
+
"Photo-etched badges and emblems",
|
|
561
|
+
"Original box with protective tray",
|
|
562
|
+
],
|
|
563
|
+
shippingInfo: "Individually bubble-wrapped and packed in rigid mailer. Free shipping on orders above ₹999. 3–5 business days.",
|
|
564
|
+
returnPolicy: "7-day return on factory-sealed cars (box must be unopened). Loose cars: 3-day return if misrepresented.",
|
|
565
|
+
allowOffers: true,
|
|
566
|
+
minOfferPercent: 90,
|
|
567
|
+
createdAt: daysAgo(25),
|
|
568
|
+
updatedAt: daysAgo(3),
|
|
569
|
+
},
|
|
570
|
+
// 11. Hot Wheels RLC Bone Shaker
|
|
571
|
+
{
|
|
572
|
+
id: "product-hot-wheels-rlc-bone-shaker",
|
|
573
|
+
slug: "product-hot-wheels-rlc-bone-shaker",
|
|
574
|
+
title: "Hot Wheels RLC Exclusive: Bone Shaker — Matte Black (2023 Members Only)",
|
|
575
|
+
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.",
|
|
576
|
+
category: "category-hot-wheels",
|
|
577
|
+
categoryName: "Hot Wheels",
|
|
578
|
+
brand: "brand-hot-wheels",
|
|
579
|
+
price: 399900,
|
|
580
|
+
currency: "INR",
|
|
581
|
+
stockQuantity: 2,
|
|
582
|
+
availableQuantity: 2,
|
|
583
|
+
mainImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=800&fit=crop",
|
|
584
|
+
images: [
|
|
585
|
+
"https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=800&fit=crop",
|
|
586
|
+
"https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?w=800&h=800&fit=crop",
|
|
587
|
+
"https://images.unsplash.com/photo-1603584173870-7f23fdae1b7a?w=800&h=800&fit=crop",
|
|
588
|
+
],
|
|
589
|
+
status: "published",
|
|
590
|
+
storeName: "Diecast Depot",
|
|
591
|
+
storeId: "store-diecast-depot",
|
|
592
|
+
featured: true,
|
|
593
|
+
isAuction: false,
|
|
594
|
+
isPreOrder: false,
|
|
595
|
+
isPromoted: true,
|
|
596
|
+
tags: [
|
|
597
|
+
"hot-wheels",
|
|
598
|
+
"rlc",
|
|
599
|
+
"bone-shaker",
|
|
600
|
+
"exclusive",
|
|
601
|
+
"limited",
|
|
602
|
+
"red-line-club",
|
|
603
|
+
"2023",
|
|
604
|
+
],
|
|
605
|
+
condition: "new",
|
|
606
|
+
specifications: [
|
|
607
|
+
{ name: "Series", value: "Red Line Club (RLC) Members Exclusive" },
|
|
608
|
+
{ name: "Year", value: "2023" },
|
|
609
|
+
{ name: "Colour", value: "Matte Black with Gold Spectraflame" },
|
|
610
|
+
{ name: "Production Run", value: "Under 10,000 units worldwide" },
|
|
611
|
+
{ name: "Certificate", value: "Numbered CoA included" },
|
|
612
|
+
],
|
|
613
|
+
features: [
|
|
614
|
+
"RLC Members-only exclusive (2023)",
|
|
615
|
+
"Strictly limited worldwide production",
|
|
616
|
+
"Matte black with gold spectraflame finish",
|
|
617
|
+
"Numbered certificate of authenticity",
|
|
618
|
+
"Original RLC collector packaging",
|
|
619
|
+
],
|
|
620
|
+
shippingInfo: "Individually bubble-wrapped in rigid mailer with foam insert. Insured shipping. 3–5 business days.",
|
|
621
|
+
returnPolicy: "7-day return on factory-sealed cars (blister must be unopened). No returns on opened RLC product.",
|
|
622
|
+
insurance: true,
|
|
623
|
+
insuranceCost: 5000,
|
|
624
|
+
allowOffers: true,
|
|
625
|
+
minOfferPercent: 90,
|
|
626
|
+
createdAt: daysAgo(20),
|
|
627
|
+
updatedAt: daysAgo(1),
|
|
628
|
+
},
|
|
629
|
+
// 12. Hot Wheels Redline 1968 Banana (Vintage)
|
|
630
|
+
{
|
|
631
|
+
id: "product-hot-wheels-redline-banana-1968",
|
|
632
|
+
slug: "product-hot-wheels-redline-banana-1968",
|
|
633
|
+
title: "Hot Wheels Redline 1968 Custom Camaro — Antifreeze Yellow (Banana, Vintage)",
|
|
634
|
+
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.",
|
|
635
|
+
category: "category-hot-wheels",
|
|
636
|
+
categoryName: "Hot Wheels",
|
|
637
|
+
brand: "brand-hot-wheels",
|
|
638
|
+
price: 1299900,
|
|
639
|
+
currency: "INR",
|
|
640
|
+
stockQuantity: 1,
|
|
641
|
+
availableQuantity: 1,
|
|
642
|
+
mainImage: "https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?w=800&h=800&fit=crop",
|
|
643
|
+
images: [
|
|
644
|
+
"https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?w=800&h=800&fit=crop",
|
|
645
|
+
"https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=800&fit=crop",
|
|
646
|
+
"https://images.unsplash.com/photo-1603584173870-7f23fdae1b7a?w=800&h=800&fit=crop",
|
|
647
|
+
],
|
|
648
|
+
status: "published",
|
|
649
|
+
storeName: "Diecast Depot",
|
|
650
|
+
storeId: "store-diecast-depot",
|
|
651
|
+
featured: false,
|
|
652
|
+
isAuction: false,
|
|
653
|
+
isPreOrder: false,
|
|
654
|
+
isPromoted: false,
|
|
655
|
+
tags: [
|
|
656
|
+
"hot-wheels",
|
|
657
|
+
"redline",
|
|
658
|
+
"1968",
|
|
659
|
+
"camaro",
|
|
660
|
+
"banana",
|
|
661
|
+
"antifreeze",
|
|
662
|
+
"vintage",
|
|
663
|
+
"rare",
|
|
664
|
+
],
|
|
665
|
+
condition: "used",
|
|
666
|
+
specifications: [
|
|
667
|
+
{ name: "Year", value: "1968" },
|
|
668
|
+
{ name: "Scale", value: "1:64" },
|
|
669
|
+
{ name: "Colour", value: "Antifreeze Yellow (Banana)" },
|
|
670
|
+
{ name: "Wheels", value: "Redline" },
|
|
671
|
+
{ name: "Condition Grade", value: "Good to Very Good (G-VG)" },
|
|
672
|
+
{ name: "Rarity", value: "Low production Banana colour" },
|
|
673
|
+
],
|
|
674
|
+
features: [
|
|
675
|
+
"First-year 1968 Hot Wheels Redline (Banana)",
|
|
676
|
+
"Rare Antifreeze Yellow — low production colourway",
|
|
677
|
+
"Honest play wear only — no reproduction parts",
|
|
678
|
+
"Strong red-line tyres — all four wheels spin",
|
|
679
|
+
"Japan trip sourced — original US market car",
|
|
680
|
+
],
|
|
681
|
+
shippingInfo: "Individually bubble-wrapped in rigid mailer with foam insert. Insured shipping. 3–5 business days.",
|
|
682
|
+
returnPolicy: "3-day return if car is misrepresented in condition grading. Detailed photos taken before shipping.",
|
|
683
|
+
insurance: true,
|
|
684
|
+
insuranceCost: 20000,
|
|
685
|
+
allowOffers: true,
|
|
686
|
+
minOfferPercent: 87,
|
|
687
|
+
createdAt: daysAgo(15),
|
|
688
|
+
updatedAt: daysAgo(2),
|
|
689
|
+
},
|
|
690
|
+
// ── Store: LetItRip Official (user-admin-letitrip) — 6 products ─────────────
|
|
691
|
+
// 13. S.H.Figuarts Goku Ultra Instinct
|
|
692
|
+
{
|
|
693
|
+
id: "product-shf-goku-ultra-instinct",
|
|
694
|
+
slug: "product-shf-goku-ultra-instinct",
|
|
695
|
+
title: "Bandai S.H.Figuarts Son Goku -Ultra Instinct- (Dragon Ball Super: Super Hero Ver.)",
|
|
696
|
+
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.",
|
|
697
|
+
category: "category-poseable-figures",
|
|
698
|
+
categoryName: "Poseable Action Figures",
|
|
699
|
+
brand: "brand-bandai",
|
|
700
|
+
price: 699900,
|
|
701
|
+
currency: "INR",
|
|
702
|
+
stockQuantity: 8,
|
|
703
|
+
availableQuantity: 8,
|
|
704
|
+
mainImage: "https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
705
|
+
images: [
|
|
706
|
+
"https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
707
|
+
"https://images.unsplash.com/photo-1560762484-813fc97650a0?w=800&h=800&fit=crop",
|
|
708
|
+
"https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
|
|
709
|
+
],
|
|
710
|
+
status: "published",
|
|
711
|
+
storeName: "LetItRip Official",
|
|
712
|
+
storeId: "store-letitrip-official",
|
|
713
|
+
featured: true,
|
|
714
|
+
isAuction: false,
|
|
715
|
+
isPreOrder: false,
|
|
716
|
+
isPromoted: true,
|
|
717
|
+
tags: [
|
|
718
|
+
"bandai",
|
|
719
|
+
"sh-figuarts",
|
|
720
|
+
"goku",
|
|
721
|
+
"ultra-instinct",
|
|
722
|
+
"dragon-ball",
|
|
723
|
+
"anime-figure",
|
|
724
|
+
"tamashii",
|
|
725
|
+
],
|
|
726
|
+
condition: "new",
|
|
727
|
+
specifications: [
|
|
728
|
+
{ name: "Character", value: "Son Goku — Ultra Instinct" },
|
|
729
|
+
{ name: "Series", value: "Dragon Ball Super: Super Hero" },
|
|
730
|
+
{ name: "Height", value: "~14 cm", unit: "cm" },
|
|
731
|
+
{ name: "Articulation", value: "20+ points" },
|
|
732
|
+
{ name: "Edition", value: "Tamashii Web Exclusive" },
|
|
733
|
+
{ name: "Manufacturer", value: "Bandai Spirits" },
|
|
734
|
+
],
|
|
735
|
+
features: [
|
|
736
|
+
"20+ points of articulation for dynamic posing",
|
|
737
|
+
"Multiple expression faceplates",
|
|
738
|
+
"Ultra Instinct aura effect parts",
|
|
739
|
+
"Interchangeable hands (12 pairs)",
|
|
740
|
+
"Tamashii Nations display stand included",
|
|
741
|
+
],
|
|
742
|
+
shippingInfo: "Double-boxed with foam inserts. Fast dispatch within 24 hours. 3–5 business days across India.",
|
|
743
|
+
returnPolicy: "7-day hassle-free returns. Items must be in original condition. Full refund or replacement guaranteed.",
|
|
744
|
+
allowOffers: false,
|
|
745
|
+
createdAt: daysAgo(80),
|
|
746
|
+
updatedAt: daysAgo(3),
|
|
747
|
+
},
|
|
748
|
+
// 14. Nendoroid Rem Re:Zero
|
|
749
|
+
{
|
|
750
|
+
id: "product-nendoroid-rem-rezero",
|
|
751
|
+
slug: "product-nendoroid-rem-rezero",
|
|
752
|
+
title: "Good Smile Company Nendoroid Rem (Re:Zero) — #663",
|
|
753
|
+
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.",
|
|
754
|
+
category: "category-nendoroids-chibis",
|
|
755
|
+
categoryName: "Nendoroids & Chibis",
|
|
756
|
+
brand: "brand-good-smile",
|
|
757
|
+
price: 499900,
|
|
758
|
+
currency: "INR",
|
|
759
|
+
stockQuantity: 10,
|
|
760
|
+
availableQuantity: 10,
|
|
761
|
+
mainImage: "https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
|
|
762
|
+
images: [
|
|
763
|
+
"https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
|
|
764
|
+
"https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
765
|
+
"https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
|
|
766
|
+
],
|
|
767
|
+
status: "published",
|
|
768
|
+
storeName: "LetItRip Official",
|
|
769
|
+
storeId: "store-letitrip-official",
|
|
770
|
+
featured: true,
|
|
771
|
+
isAuction: false,
|
|
772
|
+
isPreOrder: false,
|
|
773
|
+
isPromoted: false,
|
|
774
|
+
tags: [
|
|
775
|
+
"nendoroid",
|
|
776
|
+
"rem",
|
|
777
|
+
"re-zero",
|
|
778
|
+
"good-smile",
|
|
779
|
+
"gsc",
|
|
780
|
+
"anime-figure",
|
|
781
|
+
"chibi",
|
|
782
|
+
],
|
|
783
|
+
condition: "new",
|
|
784
|
+
specifications: [
|
|
785
|
+
{ name: "Nendoroid Number", value: "#663" },
|
|
786
|
+
{ name: "Character", value: "Rem" },
|
|
787
|
+
{ name: "Series", value: "Re:Zero -Starting Life in Another World-" },
|
|
788
|
+
{ name: "Height", value: "~10 cm", unit: "cm" },
|
|
789
|
+
{ name: "Manufacturer", value: "Good Smile Company" },
|
|
790
|
+
{ name: "Edition", value: "Re-release" },
|
|
791
|
+
],
|
|
792
|
+
features: [
|
|
793
|
+
"One of the best-selling Nendoroids ever made",
|
|
794
|
+
"3 interchangeable expression faceplates",
|
|
795
|
+
"Includes morning star weapon effect part",
|
|
796
|
+
"Nendoroid display stand included",
|
|
797
|
+
"Re-release — authentic GSC quality",
|
|
798
|
+
],
|
|
799
|
+
shippingInfo: "Double-boxed with foam inserts. Fast dispatch within 24 hours. 3–5 business days across India.",
|
|
800
|
+
returnPolicy: "7-day hassle-free returns. Items must be in original condition. Full refund or replacement guaranteed.",
|
|
801
|
+
allowOffers: false,
|
|
802
|
+
createdAt: daysAgo(75),
|
|
803
|
+
updatedAt: daysAgo(2),
|
|
804
|
+
},
|
|
805
|
+
// 15. Funko Pop Naruto Sage Mode
|
|
806
|
+
{
|
|
807
|
+
id: "product-funko-pop-naruto-sage",
|
|
808
|
+
slug: "product-funko-pop-naruto-sage",
|
|
809
|
+
title: "Funko Pop! Animation: Naruto Shippuden — Naruto Sage Mode #932",
|
|
810
|
+
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.",
|
|
811
|
+
category: "category-poseable-figures",
|
|
812
|
+
categoryName: "Poseable Action Figures",
|
|
813
|
+
brand: "brand-funko",
|
|
814
|
+
price: 149900,
|
|
815
|
+
currency: "INR",
|
|
816
|
+
stockQuantity: 30,
|
|
817
|
+
availableQuantity: 30,
|
|
818
|
+
mainImage: "https://images.unsplash.com/photo-1578292992345-7ee038c5fb7c?w=800&h=800&fit=crop",
|
|
819
|
+
images: [
|
|
820
|
+
"https://images.unsplash.com/photo-1578292992345-7ee038c5fb7c?w=800&h=800&fit=crop",
|
|
821
|
+
"https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
822
|
+
"https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
|
|
823
|
+
],
|
|
824
|
+
status: "published",
|
|
825
|
+
storeName: "LetItRip Official",
|
|
826
|
+
storeId: "store-letitrip-official",
|
|
827
|
+
featured: false,
|
|
828
|
+
isAuction: false,
|
|
829
|
+
isPreOrder: false,
|
|
830
|
+
isPromoted: false,
|
|
831
|
+
tags: [
|
|
832
|
+
"funko-pop",
|
|
833
|
+
"naruto",
|
|
834
|
+
"sage-mode",
|
|
835
|
+
"shippuden",
|
|
836
|
+
"anime",
|
|
837
|
+
"vinyl-figure",
|
|
838
|
+
],
|
|
839
|
+
condition: "new",
|
|
840
|
+
specifications: [
|
|
841
|
+
{ name: "Pop Number", value: "#932" },
|
|
842
|
+
{ name: "Character", value: "Naruto Uzumaki — Sage Mode" },
|
|
843
|
+
{ name: "Series", value: "Naruto Shippuden" },
|
|
844
|
+
{ name: "Height", value: "~9.5 cm", unit: "cm" },
|
|
845
|
+
{ name: "Manufacturer", value: "Funko" },
|
|
846
|
+
],
|
|
847
|
+
features: [
|
|
848
|
+
"Official Funko licensed Naruto Shippuden product",
|
|
849
|
+
"Sage Mode design with toad markings",
|
|
850
|
+
"Standard window box — mint on card",
|
|
851
|
+
"CE safety certified vinyl",
|
|
852
|
+
"Great display piece and gift item",
|
|
853
|
+
],
|
|
854
|
+
shippingInfo: "Bubble-padded envelope. Free shipping on orders above ₹999. 3–5 business days.",
|
|
855
|
+
returnPolicy: "7-day return if item is damaged or not as described. Original packaging required.",
|
|
856
|
+
allowOffers: false,
|
|
857
|
+
createdAt: daysAgo(70),
|
|
858
|
+
updatedAt: daysAgo(4),
|
|
859
|
+
},
|
|
860
|
+
// 16. McFarlane DC Multiverse Batman Dark Knight
|
|
861
|
+
{
|
|
862
|
+
id: "product-mcfarlane-batman-dark-knight",
|
|
863
|
+
slug: "product-mcfarlane-batman-dark-knight",
|
|
864
|
+
title: "McFarlane Toys DC Multiverse: Batman (The Dark Knight Returns) 7-Inch Figure",
|
|
865
|
+
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.",
|
|
866
|
+
category: "category-scale-figures",
|
|
867
|
+
categoryName: "Scale Figures",
|
|
868
|
+
brand: "brand-mcfarlane",
|
|
869
|
+
price: 349900,
|
|
870
|
+
currency: "INR",
|
|
871
|
+
stockQuantity: 7,
|
|
872
|
+
availableQuantity: 7,
|
|
873
|
+
mainImage: "https://images.unsplash.com/photo-1599420186946-7b6fb4e297f0?w=800&h=800&fit=crop",
|
|
874
|
+
images: [
|
|
875
|
+
"https://images.unsplash.com/photo-1599420186946-7b6fb4e297f0?w=800&h=800&fit=crop",
|
|
876
|
+
"https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
877
|
+
"https://images.unsplash.com/photo-1531259683007-016a7b628fc3?w=800&h=800&fit=crop",
|
|
878
|
+
],
|
|
879
|
+
status: "published",
|
|
880
|
+
storeName: "LetItRip Official",
|
|
881
|
+
storeId: "store-letitrip-official",
|
|
882
|
+
featured: false,
|
|
883
|
+
isAuction: false,
|
|
884
|
+
isPreOrder: false,
|
|
885
|
+
isPromoted: false,
|
|
886
|
+
tags: [
|
|
887
|
+
"mcfarlane",
|
|
888
|
+
"batman",
|
|
889
|
+
"dark-knight-returns",
|
|
890
|
+
"dc",
|
|
891
|
+
"comics",
|
|
892
|
+
"action-figure",
|
|
893
|
+
"frank-miller",
|
|
894
|
+
],
|
|
895
|
+
condition: "new",
|
|
896
|
+
specifications: [
|
|
897
|
+
{ name: "Character", value: "Batman" },
|
|
898
|
+
{ name: "Source", value: "The Dark Knight Returns (Frank Miller)" },
|
|
899
|
+
{ name: "Scale", value: "7-inch" },
|
|
900
|
+
{ name: "Articulation", value: "22+ points" },
|
|
901
|
+
{ name: "Accessories", value: "Batarang, display base" },
|
|
902
|
+
{ name: "Manufacturer", value: "McFarlane Toys" },
|
|
903
|
+
],
|
|
904
|
+
features: [
|
|
905
|
+
"Based on Frank Miller's The Dark Knight Returns",
|
|
906
|
+
"22+ articulation points for dynamic posing",
|
|
907
|
+
"Highly detailed weathered armour sculpt",
|
|
908
|
+
"Batarang accessory and display stand included",
|
|
909
|
+
"Collector-grade window box packaging",
|
|
910
|
+
],
|
|
911
|
+
shippingInfo: "Double-boxed with foam inserts. Free shipping on orders above ₹999. 3–5 business days.",
|
|
912
|
+
returnPolicy: "7-day hassle-free returns. Must be in original sealed packaging.",
|
|
913
|
+
allowOffers: false,
|
|
914
|
+
createdAt: daysAgo(60),
|
|
915
|
+
updatedAt: daysAgo(5),
|
|
916
|
+
},
|
|
917
|
+
// 17. Gunpla MG 1/100 RX-78-2 Gundam (Ver. 3.0)
|
|
918
|
+
{
|
|
919
|
+
id: "product-gundam-rx78-mg",
|
|
920
|
+
slug: "product-gundam-rx78-mg",
|
|
921
|
+
title: "Bandai Gunpla MG 1/100 RX-78-2 Gundam Ver. 3.0 — Master Grade Model Kit",
|
|
922
|
+
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+.",
|
|
923
|
+
category: "category-gunpla",
|
|
924
|
+
categoryName: "Gunpla",
|
|
925
|
+
brand: "brand-bandai",
|
|
926
|
+
price: 299900,
|
|
927
|
+
currency: "INR",
|
|
928
|
+
stockQuantity: 12,
|
|
929
|
+
availableQuantity: 12,
|
|
930
|
+
mainImage: "https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=800&h=800&fit=crop",
|
|
931
|
+
images: [
|
|
932
|
+
"https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=800&h=800&fit=crop",
|
|
933
|
+
"https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
|
|
934
|
+
"https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
935
|
+
],
|
|
936
|
+
status: "published",
|
|
937
|
+
storeName: "LetItRip Official",
|
|
938
|
+
storeId: "store-letitrip-official",
|
|
939
|
+
featured: true,
|
|
940
|
+
isAuction: false,
|
|
941
|
+
isPreOrder: false,
|
|
942
|
+
isPromoted: false,
|
|
943
|
+
tags: [
|
|
944
|
+
"gunpla",
|
|
945
|
+
"master-grade",
|
|
946
|
+
"rx-78-2",
|
|
947
|
+
"gundam",
|
|
948
|
+
"bandai",
|
|
949
|
+
"model-kit",
|
|
950
|
+
"mg",
|
|
951
|
+
],
|
|
952
|
+
condition: "new",
|
|
953
|
+
specifications: [
|
|
954
|
+
{ name: "Grade", value: "Master Grade (MG)" },
|
|
955
|
+
{ name: "Scale", value: "1/100" },
|
|
956
|
+
{ name: "Parts Count", value: "144 parts" },
|
|
957
|
+
{ name: "Height (assembled)", value: "~18 cm", unit: "cm" },
|
|
958
|
+
{ name: "Skill Level", value: "Intermediate (15+)" },
|
|
959
|
+
{ name: "Glue Required", value: "No — snap-fit" },
|
|
960
|
+
],
|
|
961
|
+
features: [
|
|
962
|
+
"Full internal frame with armour over-wrap",
|
|
963
|
+
"144 snap-fit parts — no glue or paint required",
|
|
964
|
+
"Beam rifle, sabre, shield, bazooka, Gundam hammer included",
|
|
965
|
+
"Exceptional articulation for action poses",
|
|
966
|
+
"Ver. 3.0 — definitive version of the iconic RX-78-2",
|
|
967
|
+
],
|
|
968
|
+
shippingInfo: "Rigid-box double-packed with foam. Free shipping on orders above ₹999. 3–5 business days.",
|
|
969
|
+
returnPolicy: "7-day return on factory-sealed kits (outer shrink wrap must be intact).",
|
|
970
|
+
allowOffers: false,
|
|
971
|
+
createdAt: daysAgo(65),
|
|
972
|
+
updatedAt: daysAgo(4),
|
|
973
|
+
},
|
|
974
|
+
// 18. Gunpla RG 1/144 Wing Gundam Zero (EW)
|
|
975
|
+
{
|
|
976
|
+
id: "product-gundam-wing-zero-rg",
|
|
977
|
+
slug: "product-gundam-wing-zero-rg",
|
|
978
|
+
title: "Bandai Gunpla RG 1/144 Wing Gundam Zero EW (Endless Waltz) — Real Grade Kit",
|
|
979
|
+
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.",
|
|
980
|
+
category: "category-gunpla",
|
|
981
|
+
categoryName: "Gunpla",
|
|
982
|
+
brand: "brand-bandai",
|
|
983
|
+
price: 199900,
|
|
984
|
+
currency: "INR",
|
|
985
|
+
stockQuantity: 9,
|
|
986
|
+
availableQuantity: 9,
|
|
987
|
+
mainImage: "https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=800&h=800&fit=crop",
|
|
988
|
+
images: [
|
|
989
|
+
"https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=800&h=800&fit=crop",
|
|
990
|
+
"https://images.unsplash.com/photo-1599420186946-7b6fb4e297f0?w=800&h=800&fit=crop",
|
|
991
|
+
"https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
992
|
+
],
|
|
993
|
+
status: "published",
|
|
994
|
+
storeName: "LetItRip Official",
|
|
995
|
+
storeId: "store-letitrip-official",
|
|
996
|
+
featured: false,
|
|
997
|
+
isAuction: false,
|
|
998
|
+
isPreOrder: false,
|
|
999
|
+
isPromoted: false,
|
|
1000
|
+
tags: [
|
|
1001
|
+
"gunpla",
|
|
1002
|
+
"real-grade",
|
|
1003
|
+
"wing-gundam-zero",
|
|
1004
|
+
"endless-waltz",
|
|
1005
|
+
"bandai",
|
|
1006
|
+
"model-kit",
|
|
1007
|
+
"rg",
|
|
1008
|
+
],
|
|
1009
|
+
condition: "new",
|
|
1010
|
+
specifications: [
|
|
1011
|
+
{ name: "Grade", value: "Real Grade (RG)" },
|
|
1012
|
+
{ name: "Scale", value: "1/144" },
|
|
1013
|
+
{ name: "Wing Feather Parts", value: "88 individual moving components" },
|
|
1014
|
+
{ name: "Height (assembled)", value: "~16 cm", unit: "cm" },
|
|
1015
|
+
{ name: "Skill Level", value: "Advanced (15+)" },
|
|
1016
|
+
{ name: "Glue Required", value: "No — snap-fit" },
|
|
1017
|
+
],
|
|
1018
|
+
features: [
|
|
1019
|
+
"Iconic Wing Gundam Zero Endless Waltz design",
|
|
1020
|
+
"88 individual micro-articulated wing feathers",
|
|
1021
|
+
"Advanced MS Joint inner frame",
|
|
1022
|
+
"Twin Buster Rifle in merge configuration",
|
|
1023
|
+
"Beam sabre effect parts included",
|
|
1024
|
+
],
|
|
1025
|
+
shippingInfo: "Rigid-box double-packed with foam. Free shipping on orders above ₹999. 3–5 business days.",
|
|
1026
|
+
returnPolicy: "7-day return on factory-sealed kits (outer shrink wrap must be intact).",
|
|
1027
|
+
allowOffers: false,
|
|
1028
|
+
createdAt: daysAgo(55),
|
|
1029
|
+
updatedAt: daysAgo(6),
|
|
1030
|
+
},
|
|
1031
|
+
// ── Store: Beyblade Arena (user-rohit-joshi) — 2 products ──────────────────
|
|
1032
|
+
// 19. Beyblade X BX-01 Dran Sword Starter Set
|
|
1033
|
+
{
|
|
1034
|
+
id: "product-beyblade-x-bx01-dran-sword",
|
|
1035
|
+
slug: "product-beyblade-x-bx01-dran-sword",
|
|
1036
|
+
title: "Beyblade X BX-01 Starter Set: Dran Sword 3-60F — Official Takara Tomy",
|
|
1037
|
+
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.",
|
|
1038
|
+
category: "category-beyblade-x",
|
|
1039
|
+
categoryName: "Beyblade X",
|
|
1040
|
+
brand: "brand-beyblade",
|
|
1041
|
+
price: 199900,
|
|
1042
|
+
currency: "INR",
|
|
1043
|
+
stockQuantity: 20,
|
|
1044
|
+
availableQuantity: 20,
|
|
1045
|
+
mainImage: "https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=800&h=800&fit=crop",
|
|
1046
|
+
images: [
|
|
1047
|
+
"https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=800&h=800&fit=crop",
|
|
1048
|
+
"https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
|
|
1049
|
+
"https://images.unsplash.com/photo-1612287230202-1ff1d85d1bdf?w=800&h=800&fit=crop",
|
|
1050
|
+
],
|
|
1051
|
+
status: "published",
|
|
1052
|
+
storeName: "Beyblade Arena",
|
|
1053
|
+
storeId: "store-beyblade-arena",
|
|
1054
|
+
featured: true,
|
|
1055
|
+
isAuction: false,
|
|
1056
|
+
isPreOrder: false,
|
|
1057
|
+
isPromoted: true,
|
|
1058
|
+
tags: [
|
|
1059
|
+
"beyblade-x",
|
|
1060
|
+
"bx-01",
|
|
1061
|
+
"dran-sword",
|
|
1062
|
+
"takara-tomy",
|
|
1063
|
+
"starter-set",
|
|
1064
|
+
"x-line",
|
|
1065
|
+
],
|
|
1066
|
+
condition: "new",
|
|
1067
|
+
specifications: [
|
|
1068
|
+
{ name: "Generation", value: "Beyblade X" },
|
|
1069
|
+
{ name: "Product Code", value: "BX-01" },
|
|
1070
|
+
{ name: "Top Name", value: "Dran Sword 3-60F" },
|
|
1071
|
+
{ name: "Bit", value: "Dran" },
|
|
1072
|
+
{ name: "Blade", value: "Sword 3" },
|
|
1073
|
+
{ name: "Manufacturer", value: "Takara Tomy Japan" },
|
|
1074
|
+
],
|
|
1075
|
+
features: [
|
|
1076
|
+
"Official Beyblade X debut product",
|
|
1077
|
+
"X-Line rail system for Extreme Dash mechanic",
|
|
1078
|
+
"High-grip X-String Launcher included",
|
|
1079
|
+
"Authentic Takara Tomy Japan import",
|
|
1080
|
+
"Activity guide booklet included",
|
|
1081
|
+
],
|
|
1082
|
+
shippingInfo: "All tops packed individually in foam-lined boxes. Free shipping on orders above ₹799. 4–6 business days.",
|
|
1083
|
+
returnPolicy: "7-day return on factory-sealed Beyblade product (box must be unopened). No returns on opened combo sets.",
|
|
1084
|
+
allowOffers: false,
|
|
1085
|
+
createdAt: daysAgo(45),
|
|
1086
|
+
updatedAt: daysAgo(2),
|
|
1087
|
+
},
|
|
1088
|
+
// 20. Beyblade Burst B-200 Infinite Valkyrie
|
|
1089
|
+
{
|
|
1090
|
+
id: "product-beyblade-burst-b200-valkyrie",
|
|
1091
|
+
slug: "product-beyblade-burst-b200-valkyrie",
|
|
1092
|
+
title: "Beyblade Burst QuadStrike B-200 Starter: Infinite Valkyrie — Official Takara Tomy",
|
|
1093
|
+
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.",
|
|
1094
|
+
category: "category-beyblade-burst",
|
|
1095
|
+
categoryName: "Beyblade Burst",
|
|
1096
|
+
brand: "brand-beyblade",
|
|
1097
|
+
price: 249900,
|
|
1098
|
+
currency: "INR",
|
|
1099
|
+
stockQuantity: 15,
|
|
1100
|
+
availableQuantity: 15,
|
|
1101
|
+
mainImage: "https://images.unsplash.com/photo-1612287230202-1ff1d85d1bdf?w=800&h=800&fit=crop",
|
|
1102
|
+
images: [
|
|
1103
|
+
"https://images.unsplash.com/photo-1612287230202-1ff1d85d1bdf?w=800&h=800&fit=crop",
|
|
1104
|
+
"https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=800&h=800&fit=crop",
|
|
1105
|
+
"https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
|
|
1106
|
+
],
|
|
1107
|
+
status: "published",
|
|
1108
|
+
storeName: "Beyblade Arena",
|
|
1109
|
+
storeId: "store-beyblade-arena",
|
|
1110
|
+
featured: false,
|
|
1111
|
+
isAuction: false,
|
|
1112
|
+
isPreOrder: false,
|
|
1113
|
+
isPromoted: false,
|
|
1114
|
+
tags: [
|
|
1115
|
+
"beyblade-burst",
|
|
1116
|
+
"quadstrike",
|
|
1117
|
+
"b-200",
|
|
1118
|
+
"valkyrie",
|
|
1119
|
+
"takara-tomy",
|
|
1120
|
+
"starter-set",
|
|
1121
|
+
],
|
|
1122
|
+
condition: "new",
|
|
1123
|
+
specifications: [
|
|
1124
|
+
{ name: "Generation", value: "Beyblade Burst QuadStrike" },
|
|
1125
|
+
{ name: "Product Code", value: "B-200" },
|
|
1126
|
+
{ name: "Top Name", value: "Infinite Valkyrie Knight Sword 1B" },
|
|
1127
|
+
{ name: "System", value: "QuadStrike — four-blade attack design" },
|
|
1128
|
+
{ name: "Manufacturer", value: "Takara Tomy Japan" },
|
|
1129
|
+
],
|
|
1130
|
+
features: [
|
|
1131
|
+
"QuadStrike system — four-blade attack design",
|
|
1132
|
+
"Valkyrie lineage — proven competitive performance",
|
|
1133
|
+
"QuadDrive Launcher included",
|
|
1134
|
+
"Authentic Takara Tomy Japan manufacture",
|
|
1135
|
+
"Activity guide included",
|
|
1136
|
+
],
|
|
1137
|
+
shippingInfo: "All tops packed individually in foam-lined boxes. Free shipping on orders above ₹799. 4–6 business days.",
|
|
1138
|
+
returnPolicy: "7-day return on factory-sealed Beyblade product (box must be unopened). No returns on opened combo sets.",
|
|
1139
|
+
allowOffers: false,
|
|
1140
|
+
createdAt: daysAgo(50),
|
|
1141
|
+
updatedAt: daysAgo(3),
|
|
1142
|
+
},
|
|
1143
|
+
// ── Store: Pokémon Palace (3 more) ──────────────────────────────────────────
|
|
1144
|
+
// 21. Pokémon SV Temporal Forces ETB
|
|
1145
|
+
{
|
|
1146
|
+
id: "product-pokemon-sv-temporal-forces-etb",
|
|
1147
|
+
slug: "product-pokemon-sv-temporal-forces-etb",
|
|
1148
|
+
title: "Pokémon TCG: Scarlet & Violet — Temporal Forces Elite Trainer Box",
|
|
1149
|
+
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.",
|
|
1150
|
+
category: "category-pokemon-tcg",
|
|
1151
|
+
categoryName: "Pokémon TCG",
|
|
1152
|
+
brand: "brand-pokemon-company",
|
|
1153
|
+
price: 469900,
|
|
1154
|
+
currency: "INR",
|
|
1155
|
+
stockQuantity: 20,
|
|
1156
|
+
availableQuantity: 20,
|
|
1157
|
+
mainImage: "https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
1158
|
+
images: [
|
|
1159
|
+
"https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
1160
|
+
"https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
1161
|
+
],
|
|
1162
|
+
status: "published",
|
|
1163
|
+
storeName: "Pokémon Palace",
|
|
1164
|
+
storeId: "store-pokemon-palace",
|
|
1165
|
+
featured: false,
|
|
1166
|
+
isAuction: false,
|
|
1167
|
+
isPreOrder: false,
|
|
1168
|
+
isPromoted: false,
|
|
1169
|
+
tags: ["pokemon", "etb", "temporal-forces", "scarlet-violet", "sealed", "iron-leaves"],
|
|
1170
|
+
condition: "new",
|
|
1171
|
+
specifications: [
|
|
1172
|
+
{ name: "Set", value: "Scarlet & Violet — Temporal Forces" },
|
|
1173
|
+
{ name: "Language", value: "English" },
|
|
1174
|
+
{ name: "Contents", value: "9 booster packs, 65 sleeves, dice" },
|
|
1175
|
+
{ name: "Year", value: "2024" },
|
|
1176
|
+
],
|
|
1177
|
+
features: [
|
|
1178
|
+
"Factory sealed — authentic PTCGI guarantee",
|
|
1179
|
+
"Includes ACE SPEC cards in packs",
|
|
1180
|
+
"Iron Leaves ex featured sleeves",
|
|
1181
|
+
"Sourced from official distributor",
|
|
1182
|
+
],
|
|
1183
|
+
shippingInfo: "Double-boxed with foam inserts. Free shipping on orders above ₹1,499. 3–7 business days.",
|
|
1184
|
+
returnPolicy: "7-day return on factory-sealed product (seal must be intact).",
|
|
1185
|
+
allowOffers: false,
|
|
1186
|
+
createdAt: daysAgo(25),
|
|
1187
|
+
updatedAt: daysAgo(1),
|
|
1188
|
+
},
|
|
1189
|
+
// 22. Pokémon Paradox Rift Booster Pack (singles)
|
|
1190
|
+
{
|
|
1191
|
+
id: "product-pokemon-paradox-rift-booster",
|
|
1192
|
+
slug: "product-pokemon-paradox-rift-booster",
|
|
1193
|
+
title: "Pokémon TCG: Scarlet & Violet — Paradox Rift Booster Pack (Single Pack)",
|
|
1194
|
+
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.",
|
|
1195
|
+
category: "category-pokemon-tcg",
|
|
1196
|
+
categoryName: "Pokémon TCG",
|
|
1197
|
+
brand: "brand-pokemon-company",
|
|
1198
|
+
price: 34900,
|
|
1199
|
+
currency: "INR",
|
|
1200
|
+
stockQuantity: 80,
|
|
1201
|
+
availableQuantity: 80,
|
|
1202
|
+
mainImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
1203
|
+
images: [
|
|
1204
|
+
"https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
1205
|
+
"https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
1206
|
+
],
|
|
1207
|
+
status: "published",
|
|
1208
|
+
storeName: "Pokémon Palace",
|
|
1209
|
+
storeId: "store-pokemon-palace",
|
|
1210
|
+
featured: false,
|
|
1211
|
+
isAuction: false,
|
|
1212
|
+
isPreOrder: false,
|
|
1213
|
+
isPromoted: false,
|
|
1214
|
+
tags: ["pokemon", "paradox-rift", "booster-pack", "scarlet-violet", "sealed"],
|
|
1215
|
+
condition: "new",
|
|
1216
|
+
specifications: [
|
|
1217
|
+
{ name: "Set", value: "Scarlet & Violet — Paradox Rift" },
|
|
1218
|
+
{ name: "Cards per Pack", value: "10" },
|
|
1219
|
+
{ name: "Language", value: "English" },
|
|
1220
|
+
],
|
|
1221
|
+
features: [
|
|
1222
|
+
"Single booster pack — ideal for collection or gifting",
|
|
1223
|
+
"10 cards per pack with 1 reverse holo minimum",
|
|
1224
|
+
"Factory sealed — authentic PTCGI",
|
|
1225
|
+
],
|
|
1226
|
+
shippingInfo: "Packed in rigid mailer with card support. Free shipping on orders above ₹1,499.",
|
|
1227
|
+
returnPolicy: "No returns on opened booster packs. Sealed packs: 7-day return.",
|
|
1228
|
+
allowOffers: false,
|
|
1229
|
+
createdAt: daysAgo(18),
|
|
1230
|
+
updatedAt: daysAgo(2),
|
|
1231
|
+
},
|
|
1232
|
+
// 23. Pokémon Eevee Evolutions Tin
|
|
1233
|
+
{
|
|
1234
|
+
id: "product-pokemon-eevee-evolutions-tin",
|
|
1235
|
+
slug: "product-pokemon-eevee-evolutions-tin",
|
|
1236
|
+
title: "Pokémon TCG: Eevee Evolutions Premium Collector Tin — Flareon",
|
|
1237
|
+
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.",
|
|
1238
|
+
category: "category-pokemon-tcg",
|
|
1239
|
+
categoryName: "Pokémon TCG",
|
|
1240
|
+
brand: "brand-pokemon-company",
|
|
1241
|
+
price: 179900,
|
|
1242
|
+
currency: "INR",
|
|
1243
|
+
stockQuantity: 12,
|
|
1244
|
+
availableQuantity: 12,
|
|
1245
|
+
mainImage: "https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
|
|
1246
|
+
images: [
|
|
1247
|
+
"https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
|
|
1248
|
+
"https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
1249
|
+
],
|
|
1250
|
+
status: "published",
|
|
1251
|
+
storeName: "Pokémon Palace",
|
|
1252
|
+
storeId: "store-pokemon-palace",
|
|
1253
|
+
featured: false,
|
|
1254
|
+
isAuction: false,
|
|
1255
|
+
isPreOrder: false,
|
|
1256
|
+
isPromoted: false,
|
|
1257
|
+
tags: ["pokemon", "eevee-evolutions", "flareon", "tin", "sealed", "gift"],
|
|
1258
|
+
condition: "new",
|
|
1259
|
+
specifications: [
|
|
1260
|
+
{ name: "Featured Pokémon", value: "Flareon" },
|
|
1261
|
+
{ name: "Booster Packs", value: "4 (mixed sets)" },
|
|
1262
|
+
{ name: "Promo Card", value: "Flareon V" },
|
|
1263
|
+
{ name: "Coin", value: "Metal Flareon coin" },
|
|
1264
|
+
],
|
|
1265
|
+
features: [
|
|
1266
|
+
"Premium embossed collector tin",
|
|
1267
|
+
"4 booster packs from recent sets",
|
|
1268
|
+
"Exclusive Flareon V promo card",
|
|
1269
|
+
"Factory sealed — great gift",
|
|
1270
|
+
],
|
|
1271
|
+
shippingInfo: "Double-boxed. Free shipping on orders above ₹1,499. 3–7 business days.",
|
|
1272
|
+
returnPolicy: "7-day return on factory-sealed product.",
|
|
1273
|
+
allowOffers: false,
|
|
1274
|
+
createdAt: daysAgo(12),
|
|
1275
|
+
updatedAt: daysAgo(2),
|
|
1276
|
+
},
|
|
1277
|
+
// ── Store: CardGame Hub (3 more) ─────────────────────────────────────────────
|
|
1278
|
+
// 24. Yu-Gi-Oh! Phantom Nightmare Booster Box
|
|
1279
|
+
{
|
|
1280
|
+
id: "product-yugioh-phantom-nightmare-box",
|
|
1281
|
+
slug: "product-yugioh-phantom-nightmare-box",
|
|
1282
|
+
title: "Yu-Gi-Oh! TCG: Phantom Nightmare Booster Box (24 Packs)",
|
|
1283
|
+
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.",
|
|
1284
|
+
category: "category-yugioh-tcg",
|
|
1285
|
+
categoryName: "Yu-Gi-Oh! TCG",
|
|
1286
|
+
brand: "brand-konami",
|
|
1287
|
+
price: 599900,
|
|
1288
|
+
currency: "INR",
|
|
1289
|
+
stockQuantity: 6,
|
|
1290
|
+
availableQuantity: 6,
|
|
1291
|
+
mainImage: "https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=800&h=800&fit=crop",
|
|
1292
|
+
images: [
|
|
1293
|
+
"https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=800&h=800&fit=crop",
|
|
1294
|
+
"https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
1295
|
+
],
|
|
1296
|
+
status: "published",
|
|
1297
|
+
storeName: "CardGame Hub",
|
|
1298
|
+
storeId: "store-cardgame-hub",
|
|
1299
|
+
featured: false,
|
|
1300
|
+
isAuction: false,
|
|
1301
|
+
isPreOrder: false,
|
|
1302
|
+
isPromoted: true,
|
|
1303
|
+
tags: ["yugioh", "phantom-nightmare", "booster-box", "snake-eye", "konami", "sealed"],
|
|
1304
|
+
condition: "new",
|
|
1305
|
+
specifications: [
|
|
1306
|
+
{ name: "Set", value: "Phantom Nightmare" },
|
|
1307
|
+
{ name: "Packs per Box", value: "24" },
|
|
1308
|
+
{ name: "Cards per Pack", value: "9" },
|
|
1309
|
+
{ name: "Language", value: "English" },
|
|
1310
|
+
],
|
|
1311
|
+
features: [
|
|
1312
|
+
"Factory sealed booster box — 24 packs",
|
|
1313
|
+
"Snake-Eyes and Branded support cards",
|
|
1314
|
+
"~12 Secret Rares per box statistically",
|
|
1315
|
+
"WCS-competitive card pool",
|
|
1316
|
+
],
|
|
1317
|
+
shippingInfo: "Bubble-padded box. Free shipping on orders above ₹1,199. 4–6 business days.",
|
|
1318
|
+
returnPolicy: "7-day return on factory-sealed product only.",
|
|
1319
|
+
allowOffers: true,
|
|
1320
|
+
minOfferPercent: 90,
|
|
1321
|
+
createdAt: daysAgo(30),
|
|
1322
|
+
updatedAt: daysAgo(2),
|
|
1323
|
+
},
|
|
1324
|
+
// 25. Yu-Gi-Oh! Dark Magician (MFC) raw NM
|
|
1325
|
+
{
|
|
1326
|
+
id: "product-yugioh-dark-magician-mfc-nm",
|
|
1327
|
+
slug: "product-yugioh-dark-magician-mfc-nm",
|
|
1328
|
+
title: "Yu-Gi-Oh! Dark Magician (MFC-000) Ultra Rare — Near Mint Raw",
|
|
1329
|
+
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.",
|
|
1330
|
+
category: "category-yugioh-tcg",
|
|
1331
|
+
categoryName: "Yu-Gi-Oh! TCG",
|
|
1332
|
+
brand: "brand-konami",
|
|
1333
|
+
price: 149900,
|
|
1334
|
+
currency: "INR",
|
|
1335
|
+
stockQuantity: 1,
|
|
1336
|
+
availableQuantity: 1,
|
|
1337
|
+
mainImage: "https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=800&h=800&fit=crop",
|
|
1338
|
+
images: [
|
|
1339
|
+
"https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=800&h=800&fit=crop",
|
|
1340
|
+
"https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
1341
|
+
],
|
|
1342
|
+
status: "published",
|
|
1343
|
+
storeName: "CardGame Hub",
|
|
1344
|
+
storeId: "store-cardgame-hub",
|
|
1345
|
+
featured: false,
|
|
1346
|
+
isAuction: false,
|
|
1347
|
+
isPreOrder: false,
|
|
1348
|
+
isPromoted: false,
|
|
1349
|
+
tags: ["yugioh", "dark-magician", "mfc-000", "ultra-rare", "raw", "vintage"],
|
|
1350
|
+
condition: "used",
|
|
1351
|
+
specifications: [
|
|
1352
|
+
{ name: "Card", value: "Dark Magician (MFC-000)" },
|
|
1353
|
+
{ name: "Rarity", value: "Ultra Rare" },
|
|
1354
|
+
{ name: "Condition", value: "Near Mint (NM) raw" },
|
|
1355
|
+
{ name: "Language", value: "English" },
|
|
1356
|
+
{ name: "Grade Estimate", value: "PSA 7–8 range" },
|
|
1357
|
+
],
|
|
1358
|
+
features: [
|
|
1359
|
+
"MFC Ultra Rare — iconic early print",
|
|
1360
|
+
"Near Mint condition — excellent surface",
|
|
1361
|
+
"Stored in hard sleeve since acquisition",
|
|
1362
|
+
"WCS collector provenance",
|
|
1363
|
+
],
|
|
1364
|
+
shippingInfo: "Shipped in toploader and penny sleeve inside rigid mailer. 4–6 business days.",
|
|
1365
|
+
returnPolicy: "3-day return if card is misrepresented in condition.",
|
|
1366
|
+
allowOffers: true,
|
|
1367
|
+
minOfferPercent: 88,
|
|
1368
|
+
createdAt: daysAgo(22),
|
|
1369
|
+
updatedAt: daysAgo(3),
|
|
1370
|
+
},
|
|
1371
|
+
// 26. Yu-Gi-Oh! Rarity Collection II
|
|
1372
|
+
{
|
|
1373
|
+
id: "product-yugioh-rarity-collection-ii",
|
|
1374
|
+
slug: "product-yugioh-rarity-collection-ii",
|
|
1375
|
+
title: "Yu-Gi-Oh! TCG: Rarity Collection II Premium Box (3 Packs)",
|
|
1376
|
+
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.",
|
|
1377
|
+
category: "category-yugioh-tcg",
|
|
1378
|
+
categoryName: "Yu-Gi-Oh! TCG",
|
|
1379
|
+
brand: "brand-konami",
|
|
1380
|
+
price: 349900,
|
|
1381
|
+
currency: "INR",
|
|
1382
|
+
stockQuantity: 10,
|
|
1383
|
+
availableQuantity: 10,
|
|
1384
|
+
mainImage: "https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=800&h=800&fit=crop",
|
|
1385
|
+
images: [
|
|
1386
|
+
"https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
1387
|
+
"https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=800&h=800&fit=crop",
|
|
1388
|
+
],
|
|
1389
|
+
status: "published",
|
|
1390
|
+
storeName: "CardGame Hub",
|
|
1391
|
+
storeId: "store-cardgame-hub",
|
|
1392
|
+
featured: false,
|
|
1393
|
+
isAuction: false,
|
|
1394
|
+
isPreOrder: false,
|
|
1395
|
+
isPromoted: false,
|
|
1396
|
+
tags: ["yugioh", "rarity-collection", "prismatic-secret-rare", "reprint", "premium"],
|
|
1397
|
+
condition: "new",
|
|
1398
|
+
specifications: [
|
|
1399
|
+
{ name: "Set", value: "Rarity Collection II" },
|
|
1400
|
+
{ name: "Packs", value: "3" },
|
|
1401
|
+
{ name: "Cards per Pack", value: "5" },
|
|
1402
|
+
{ name: "Minimum Rarity", value: "Ultra Rare or higher guaranteed" },
|
|
1403
|
+
],
|
|
1404
|
+
features: [
|
|
1405
|
+
"Guaranteed Ultra Rare or higher per card",
|
|
1406
|
+
"Prismatic Secret Rare treatment on top cards",
|
|
1407
|
+
"Competitive staple reprints",
|
|
1408
|
+
"Factory sealed premium box",
|
|
1409
|
+
],
|
|
1410
|
+
shippingInfo: "Bubble-padded envelope. Free shipping on orders above ₹1,199. 4–6 business days.",
|
|
1411
|
+
returnPolicy: "7-day return on factory-sealed product only.",
|
|
1412
|
+
allowOffers: false,
|
|
1413
|
+
createdAt: daysAgo(14),
|
|
1414
|
+
updatedAt: daysAgo(1),
|
|
1415
|
+
},
|
|
1416
|
+
// ── Store: Diecast Depot (3 more) ────────────────────────────────────────────
|
|
1417
|
+
// 27. Tomica Limited Vintage Nissan Skyline 2000 GT-R Hakosuka
|
|
1418
|
+
{
|
|
1419
|
+
id: "product-tomica-limited-hakosuka",
|
|
1420
|
+
slug: "product-tomica-limited-hakosuka",
|
|
1421
|
+
title: "Tomica Limited Vintage: Nissan Skyline 2000 GT-R (Hakosuka) — White",
|
|
1422
|
+
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.",
|
|
1423
|
+
category: "category-tomica",
|
|
1424
|
+
categoryName: "Tomica",
|
|
1425
|
+
brand: "brand-tomica",
|
|
1426
|
+
price: 349900,
|
|
1427
|
+
currency: "INR",
|
|
1428
|
+
stockQuantity: 4,
|
|
1429
|
+
availableQuantity: 4,
|
|
1430
|
+
mainImage: "https://images.unsplash.com/photo-1603584173870-7f23fdae1b7a?w=800&h=800&fit=crop",
|
|
1431
|
+
images: [
|
|
1432
|
+
"https://images.unsplash.com/photo-1603584173870-7f23fdae1b7a?w=800&h=800&fit=crop",
|
|
1433
|
+
"https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=800&fit=crop",
|
|
1434
|
+
],
|
|
1435
|
+
status: "published",
|
|
1436
|
+
storeName: "Diecast Depot",
|
|
1437
|
+
storeId: "store-diecast-depot",
|
|
1438
|
+
featured: false,
|
|
1439
|
+
isAuction: false,
|
|
1440
|
+
isPreOrder: false,
|
|
1441
|
+
isPromoted: false,
|
|
1442
|
+
tags: ["tomica", "limited-vintage", "hakosuka", "nissan", "skyline", "gt-r", "japanese-cars"],
|
|
1443
|
+
condition: "new",
|
|
1444
|
+
specifications: [
|
|
1445
|
+
{ name: "Model", value: "Nissan Skyline 2000 GT-R (Hakosuka C10)" },
|
|
1446
|
+
{ name: "Series", value: "Tomica Limited Vintage" },
|
|
1447
|
+
{ name: "Colour", value: "Pearl White" },
|
|
1448
|
+
{ name: "Scale", value: "1:64" },
|
|
1449
|
+
{ name: "Features", value: "Opening doors, rubber tyres, chrome bumpers" },
|
|
1450
|
+
],
|
|
1451
|
+
features: [
|
|
1452
|
+
"Iconic Hakosuka C10 GT-R precision casting",
|
|
1453
|
+
"Opening doors with interior detail",
|
|
1454
|
+
"Chrome bumpers and grille details",
|
|
1455
|
+
"Real rubber tyres",
|
|
1456
|
+
"Original TLV display case included",
|
|
1457
|
+
],
|
|
1458
|
+
shippingInfo: "Individually bubble-wrapped in rigid mailer. Free shipping on orders above ₹999. 3–5 business days.",
|
|
1459
|
+
returnPolicy: "7-day return on factory-sealed cars (box must be unopened).",
|
|
1460
|
+
allowOffers: true,
|
|
1461
|
+
minOfferPercent: 90,
|
|
1462
|
+
createdAt: daysAgo(10),
|
|
1463
|
+
updatedAt: daysAgo(1),
|
|
1464
|
+
},
|
|
1465
|
+
// 28. Hot Wheels Car Culture Japan Historics 5-Pack
|
|
1466
|
+
{
|
|
1467
|
+
id: "product-hot-wheels-japan-historics-5pack",
|
|
1468
|
+
slug: "product-hot-wheels-japan-historics-5pack",
|
|
1469
|
+
title: "Hot Wheels Car Culture: Japan Historics 2 Premium 5-Pack",
|
|
1470
|
+
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.",
|
|
1471
|
+
category: "category-hot-wheels",
|
|
1472
|
+
categoryName: "Hot Wheels",
|
|
1473
|
+
brand: "brand-hot-wheels",
|
|
1474
|
+
price: 149900,
|
|
1475
|
+
currency: "INR",
|
|
1476
|
+
stockQuantity: 8,
|
|
1477
|
+
availableQuantity: 8,
|
|
1478
|
+
mainImage: "https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?w=800&h=800&fit=crop",
|
|
1479
|
+
images: [
|
|
1480
|
+
"https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?w=800&h=800&fit=crop",
|
|
1481
|
+
"https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=800&fit=crop",
|
|
1482
|
+
],
|
|
1483
|
+
status: "published",
|
|
1484
|
+
storeName: "Diecast Depot",
|
|
1485
|
+
storeId: "store-diecast-depot",
|
|
1486
|
+
featured: false,
|
|
1487
|
+
isAuction: false,
|
|
1488
|
+
isPreOrder: false,
|
|
1489
|
+
isPromoted: false,
|
|
1490
|
+
tags: ["hot-wheels", "car-culture", "japan-historics", "jdm", "premium", "5-pack"],
|
|
1491
|
+
condition: "new",
|
|
1492
|
+
specifications: [
|
|
1493
|
+
{ name: "Set", value: "Car Culture — Japan Historics 2" },
|
|
1494
|
+
{ name: "Cars", value: "5" },
|
|
1495
|
+
{ name: "Scale", value: "1:64" },
|
|
1496
|
+
{ name: "Wheels", value: "Premium rubber" },
|
|
1497
|
+
],
|
|
1498
|
+
features: [
|
|
1499
|
+
"Japan Historics 2 — JDM fan favourite series",
|
|
1500
|
+
"Real rubber tyres on all 5 cars",
|
|
1501
|
+
"Die-cast metal with authentic liveries",
|
|
1502
|
+
"Factory sealed set",
|
|
1503
|
+
],
|
|
1504
|
+
shippingInfo: "Cars packed in bubble wrap inside rigid mailer. Free shipping on orders above ₹999. 3–5 business days.",
|
|
1505
|
+
returnPolicy: "7-day return on factory-sealed blister pack.",
|
|
1506
|
+
allowOffers: false,
|
|
1507
|
+
createdAt: daysAgo(8),
|
|
1508
|
+
updatedAt: daysAgo(1),
|
|
1509
|
+
},
|
|
1510
|
+
// 29. Hot Wheels Super Treasure Hunt Dodge Viper
|
|
1511
|
+
{
|
|
1512
|
+
id: "product-hot-wheels-sth-dodge-viper",
|
|
1513
|
+
slug: "product-hot-wheels-sth-dodge-viper",
|
|
1514
|
+
title: "Hot Wheels Super Treasure Hunt: Dodge Viper SRT10 (STH, Spectraflame)",
|
|
1515
|
+
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.",
|
|
1516
|
+
category: "category-hot-wheels",
|
|
1517
|
+
categoryName: "Hot Wheels",
|
|
1518
|
+
brand: "brand-hot-wheels",
|
|
1519
|
+
price: 299900,
|
|
1520
|
+
currency: "INR",
|
|
1521
|
+
stockQuantity: 1,
|
|
1522
|
+
availableQuantity: 1,
|
|
1523
|
+
mainImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=800&fit=crop",
|
|
1524
|
+
images: [
|
|
1525
|
+
"https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=800&fit=crop",
|
|
1526
|
+
"https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?w=800&h=800&fit=crop",
|
|
1527
|
+
],
|
|
1528
|
+
status: "published",
|
|
1529
|
+
storeName: "Diecast Depot",
|
|
1530
|
+
storeId: "store-diecast-depot",
|
|
1531
|
+
featured: false,
|
|
1532
|
+
isAuction: false,
|
|
1533
|
+
isPreOrder: false,
|
|
1534
|
+
isPromoted: true,
|
|
1535
|
+
tags: ["hot-wheels", "super-treasure-hunt", "sth", "dodge-viper", "spectraflame", "real-rider"],
|
|
1536
|
+
condition: "new",
|
|
1537
|
+
specifications: [
|
|
1538
|
+
{ name: "Type", value: "Super Treasure Hunt (STH)" },
|
|
1539
|
+
{ name: "Casting", value: "Dodge Viper SRT10" },
|
|
1540
|
+
{ name: "Finish", value: "Spectraflame Red" },
|
|
1541
|
+
{ name: "Wheels", value: "Real Riders rubber" },
|
|
1542
|
+
{ name: "Year", value: "2023" },
|
|
1543
|
+
],
|
|
1544
|
+
features: [
|
|
1545
|
+
"Super Treasure Hunt — ~1:10,000 ratio",
|
|
1546
|
+
"Spectraflame red paint — collector grade",
|
|
1547
|
+
"Real Riders rubber tyres",
|
|
1548
|
+
"Perfect blister — no card bends",
|
|
1549
|
+
"Immediately cased after retail pull",
|
|
1550
|
+
],
|
|
1551
|
+
shippingInfo: "Carded in hard blister protector, double-boxed. Insured shipping. 3–5 business days.",
|
|
1552
|
+
returnPolicy: "7-day return on factory-sealed blister pack.",
|
|
1553
|
+
insurance: true,
|
|
1554
|
+
insuranceCost: 5000,
|
|
1555
|
+
allowOffers: true,
|
|
1556
|
+
minOfferPercent: 88,
|
|
1557
|
+
createdAt: daysAgo(5),
|
|
1558
|
+
updatedAt: daysAgo(1),
|
|
1559
|
+
},
|
|
1560
|
+
// ── Store: Beyblade Arena (3 more) ───────────────────────────────────────────
|
|
1561
|
+
// 30. Beyblade X BX-04 Knight Shield Starter
|
|
1562
|
+
{
|
|
1563
|
+
id: "product-beyblade-x-bx04-knight-shield",
|
|
1564
|
+
slug: "product-beyblade-x-bx04-knight-shield",
|
|
1565
|
+
title: "Beyblade X BX-04 Starter Set: Knight Shield 3-80N — Official Takara Tomy",
|
|
1566
|
+
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.",
|
|
1567
|
+
category: "category-beyblade-x",
|
|
1568
|
+
categoryName: "Beyblade X",
|
|
1569
|
+
brand: "brand-beyblade",
|
|
1570
|
+
price: 219900,
|
|
1571
|
+
currency: "INR",
|
|
1572
|
+
stockQuantity: 18,
|
|
1573
|
+
availableQuantity: 18,
|
|
1574
|
+
mainImage: "https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=800&h=800&fit=crop",
|
|
1575
|
+
images: [
|
|
1576
|
+
"https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=800&h=800&fit=crop",
|
|
1577
|
+
"https://images.unsplash.com/photo-1612287230202-1ff1d85d1bdf?w=800&h=800&fit=crop",
|
|
1578
|
+
],
|
|
1579
|
+
status: "published",
|
|
1580
|
+
storeName: "Beyblade Arena",
|
|
1581
|
+
storeId: "store-beyblade-arena",
|
|
1582
|
+
featured: false,
|
|
1583
|
+
isAuction: false,
|
|
1584
|
+
isPreOrder: false,
|
|
1585
|
+
isPromoted: false,
|
|
1586
|
+
tags: ["beyblade-x", "bx-04", "knight-shield", "takara-tomy", "starter-set", "defense"],
|
|
1587
|
+
condition: "new",
|
|
1588
|
+
specifications: [
|
|
1589
|
+
{ name: "Generation", value: "Beyblade X" },
|
|
1590
|
+
{ name: "Product Code", value: "BX-04" },
|
|
1591
|
+
{ name: "Top Name", value: "Knight Shield 3-80N" },
|
|
1592
|
+
{ name: "Play Style", value: "Defense — wide contact points" },
|
|
1593
|
+
{ name: "Manufacturer", value: "Takara Tomy Japan" },
|
|
1594
|
+
],
|
|
1595
|
+
features: [
|
|
1596
|
+
"Defensive powerhouse of the BX first wave",
|
|
1597
|
+
"80N driver — superior stamina",
|
|
1598
|
+
"X-String Launcher included",
|
|
1599
|
+
"Authentic Takara Tomy Japan import",
|
|
1600
|
+
],
|
|
1601
|
+
shippingInfo: "Packed in foam-lined box. Free shipping on orders above ₹799. 4–6 business days.",
|
|
1602
|
+
returnPolicy: "7-day return on factory-sealed product (box must be unopened).",
|
|
1603
|
+
allowOffers: false,
|
|
1604
|
+
createdAt: daysAgo(38),
|
|
1605
|
+
updatedAt: daysAgo(2),
|
|
1606
|
+
},
|
|
1607
|
+
// 31. Beyblade X XStadium Official
|
|
1608
|
+
{
|
|
1609
|
+
id: "product-beyblade-x-xstadium-official",
|
|
1610
|
+
slug: "product-beyblade-x-xstadium-official",
|
|
1611
|
+
title: "Beyblade X BX-08 XStadium — Official Takara Tomy Tournament Stadium",
|
|
1612
|
+
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.",
|
|
1613
|
+
category: "category-beyblade-x",
|
|
1614
|
+
categoryName: "Beyblade X",
|
|
1615
|
+
brand: "brand-beyblade",
|
|
1616
|
+
price: 399900,
|
|
1617
|
+
currency: "INR",
|
|
1618
|
+
stockQuantity: 10,
|
|
1619
|
+
availableQuantity: 10,
|
|
1620
|
+
mainImage: "https://images.unsplash.com/photo-1612287230202-1ff1d85d1bdf?w=800&h=800&fit=crop",
|
|
1621
|
+
images: [
|
|
1622
|
+
"https://images.unsplash.com/photo-1612287230202-1ff1d85d1bdf?w=800&h=800&fit=crop",
|
|
1623
|
+
"https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=800&h=800&fit=crop",
|
|
1624
|
+
],
|
|
1625
|
+
status: "published",
|
|
1626
|
+
storeName: "Beyblade Arena",
|
|
1627
|
+
storeId: "store-beyblade-arena",
|
|
1628
|
+
featured: false,
|
|
1629
|
+
isAuction: false,
|
|
1630
|
+
isPreOrder: false,
|
|
1631
|
+
isPromoted: false,
|
|
1632
|
+
tags: ["beyblade-x", "xstadium", "bx-08", "stadium", "takara-tomy", "tournament"],
|
|
1633
|
+
condition: "new",
|
|
1634
|
+
specifications: [
|
|
1635
|
+
{ name: "Product Code", value: "BX-08" },
|
|
1636
|
+
{ name: "Stadium Type", value: "XStadium — X-Line rail system" },
|
|
1637
|
+
{ name: "Battle Modes", value: "2 (standard + X-Line)" },
|
|
1638
|
+
{ name: "Manufacturer", value: "Takara Tomy Japan" },
|
|
1639
|
+
],
|
|
1640
|
+
features: [
|
|
1641
|
+
"Official tournament XStadium — BX-08",
|
|
1642
|
+
"X-Line rail system for Extreme Dash",
|
|
1643
|
+
"2 battle modes in one stadium",
|
|
1644
|
+
"Authentic Takara Tomy Japan product",
|
|
1645
|
+
],
|
|
1646
|
+
shippingInfo: "Boxed securely in original packaging. Free shipping on orders above ₹799. 4–6 business days.",
|
|
1647
|
+
returnPolicy: "7-day return on factory-sealed stadium (box must be unopened).",
|
|
1648
|
+
allowOffers: false,
|
|
1649
|
+
createdAt: daysAgo(32),
|
|
1650
|
+
updatedAt: daysAgo(2),
|
|
1651
|
+
},
|
|
1652
|
+
// 32. Beyblade Burst B-184 Tempest Dragon
|
|
1653
|
+
{
|
|
1654
|
+
id: "product-beyblade-burst-b184-tempest",
|
|
1655
|
+
slug: "product-beyblade-burst-b184-tempest",
|
|
1656
|
+
title: "Beyblade Burst QuadStrike B-184 Booster: Tempest Dragon — Official Takara Tomy",
|
|
1657
|
+
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.",
|
|
1658
|
+
category: "category-beyblade-burst",
|
|
1659
|
+
categoryName: "Beyblade Burst",
|
|
1660
|
+
brand: "brand-beyblade",
|
|
1661
|
+
price: 149900,
|
|
1662
|
+
currency: "INR",
|
|
1663
|
+
stockQuantity: 22,
|
|
1664
|
+
availableQuantity: 22,
|
|
1665
|
+
mainImage: "https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=800&h=800&fit=crop",
|
|
1666
|
+
images: [
|
|
1667
|
+
"https://images.unsplash.com/photo-1612287230202-1ff1d85d1bdf?w=800&h=800&fit=crop",
|
|
1668
|
+
"https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=800&h=800&fit=crop",
|
|
1669
|
+
],
|
|
1670
|
+
status: "published",
|
|
1671
|
+
storeName: "Beyblade Arena",
|
|
1672
|
+
storeId: "store-beyblade-arena",
|
|
1673
|
+
featured: false,
|
|
1674
|
+
isAuction: false,
|
|
1675
|
+
isPreOrder: false,
|
|
1676
|
+
isPromoted: false,
|
|
1677
|
+
tags: ["beyblade-burst", "quadstrike", "b-184", "tempest-dragon", "takara-tomy", "attack"],
|
|
1678
|
+
condition: "new",
|
|
1679
|
+
specifications: [
|
|
1680
|
+
{ name: "Generation", value: "Beyblade Burst QuadStrike" },
|
|
1681
|
+
{ name: "Product Code", value: "B-184" },
|
|
1682
|
+
{ name: "Top Name", value: "Tempest Dragon Attack 2 Xtreme'" },
|
|
1683
|
+
{ name: "Type", value: "Attack" },
|
|
1684
|
+
{ name: "Manufacturer", value: "Takara Tomy Japan" },
|
|
1685
|
+
],
|
|
1686
|
+
features: [
|
|
1687
|
+
"QuadStrike competitive attack-type",
|
|
1688
|
+
"Four razor-edge contact points",
|
|
1689
|
+
"Xtreme' driver for extreme speed",
|
|
1690
|
+
"Launcher sold separately",
|
|
1691
|
+
],
|
|
1692
|
+
shippingInfo: "Packed in foam-lined box. Free shipping on orders above ₹799. 4–6 business days.",
|
|
1693
|
+
returnPolicy: "7-day return on factory-sealed product.",
|
|
1694
|
+
allowOffers: false,
|
|
1695
|
+
createdAt: daysAgo(28),
|
|
1696
|
+
updatedAt: daysAgo(3),
|
|
1697
|
+
},
|
|
1698
|
+
// ── Store: LetItRip Official (4 more) ─────────────────────────────────────────
|
|
1699
|
+
// 33. S.H.Figuarts Vegeta Super Saiyan Blue
|
|
1700
|
+
{
|
|
1701
|
+
id: "product-shf-vegeta-ssb",
|
|
1702
|
+
slug: "product-shf-vegeta-ssb",
|
|
1703
|
+
title: "Bandai S.H.Figuarts Vegeta -Super Saiyan God Super Saiyan- (Dragon Ball Super)",
|
|
1704
|
+
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.",
|
|
1705
|
+
category: "category-poseable-figures",
|
|
1706
|
+
categoryName: "Poseable Action Figures",
|
|
1707
|
+
brand: "brand-bandai",
|
|
1708
|
+
price: 649900,
|
|
1709
|
+
currency: "INR",
|
|
1710
|
+
stockQuantity: 5,
|
|
1711
|
+
availableQuantity: 5,
|
|
1712
|
+
mainImage: "https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
1713
|
+
images: [
|
|
1714
|
+
"https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
1715
|
+
"https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
|
|
1716
|
+
],
|
|
1717
|
+
status: "published",
|
|
1718
|
+
storeName: "LetItRip Official",
|
|
1719
|
+
storeId: "store-letitrip-official",
|
|
1720
|
+
featured: false,
|
|
1721
|
+
isAuction: false,
|
|
1722
|
+
isPreOrder: false,
|
|
1723
|
+
isPromoted: false,
|
|
1724
|
+
tags: ["bandai", "sh-figuarts", "vegeta", "super-saiyan-blue", "dragon-ball-super", "tamashii"],
|
|
1725
|
+
condition: "new",
|
|
1726
|
+
specifications: [
|
|
1727
|
+
{ name: "Character", value: "Vegeta — Super Saiyan Blue" },
|
|
1728
|
+
{ name: "Series", value: "Dragon Ball Super — Resurrection F" },
|
|
1729
|
+
{ name: "Height", value: "~14 cm", unit: "cm" },
|
|
1730
|
+
{ name: "Articulation", value: "20+ points" },
|
|
1731
|
+
{ name: "Manufacturer", value: "Bandai Spirits" },
|
|
1732
|
+
],
|
|
1733
|
+
features: [
|
|
1734
|
+
"Super Saiyan Blue gradient transparent hair",
|
|
1735
|
+
"Galick Gun effect parts",
|
|
1736
|
+
"20+ articulation points",
|
|
1737
|
+
"2 expression faceplates included",
|
|
1738
|
+
"Tamashii Nations display stand included",
|
|
1739
|
+
],
|
|
1740
|
+
shippingInfo: "Double-boxed with foam inserts. Fast dispatch within 24 hours. 3–5 business days.",
|
|
1741
|
+
returnPolicy: "7-day hassle-free returns. Items must be in original condition.",
|
|
1742
|
+
allowOffers: false,
|
|
1743
|
+
createdAt: daysAgo(55),
|
|
1744
|
+
updatedAt: daysAgo(3),
|
|
1745
|
+
},
|
|
1746
|
+
// 34. NECA TMNT Classic 4-Pack
|
|
1747
|
+
{
|
|
1748
|
+
id: "product-neca-tmnt-4figure-set",
|
|
1749
|
+
slug: "product-neca-tmnt-4figure-set",
|
|
1750
|
+
title: "NECA Teenage Mutant Ninja Turtles: Classic 1990 Movie 7-Inch 4-Figure Set",
|
|
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
|
+
category: "category-scale-figures",
|
|
1753
|
+
categoryName: "Scale Figures",
|
|
1754
|
+
brand: "brand-neca",
|
|
1755
|
+
price: 1299900,
|
|
1756
|
+
currency: "INR",
|
|
1757
|
+
stockQuantity: 3,
|
|
1758
|
+
availableQuantity: 3,
|
|
1759
|
+
mainImage: "https://images.unsplash.com/photo-1599420186946-7b6fb4e297f0?w=800&h=800&fit=crop",
|
|
1760
|
+
images: [
|
|
1761
|
+
"https://images.unsplash.com/photo-1599420186946-7b6fb4e297f0?w=800&h=800&fit=crop",
|
|
1762
|
+
"https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
1763
|
+
],
|
|
1764
|
+
status: "published",
|
|
1765
|
+
storeName: "LetItRip Official",
|
|
1766
|
+
storeId: "store-letitrip-official",
|
|
1767
|
+
featured: false,
|
|
1768
|
+
isAuction: false,
|
|
1769
|
+
isPreOrder: false,
|
|
1770
|
+
isPromoted: false,
|
|
1771
|
+
tags: ["neca", "tmnt", "teenage-mutant-ninja-turtles", "1990", "film", "4-pack", "7-inch"],
|
|
1772
|
+
condition: "new",
|
|
1773
|
+
specifications: [
|
|
1774
|
+
{ name: "Characters", value: "Leo, Donnie, Mikey, Raph (4-figure set)" },
|
|
1775
|
+
{ name: "Source", value: "1990 Live-Action Film" },
|
|
1776
|
+
{ name: "Scale", value: "7-inch" },
|
|
1777
|
+
{ name: "Articulation", value: "~30 points each" },
|
|
1778
|
+
{ name: "Manufacturer", value: "NECA" },
|
|
1779
|
+
],
|
|
1780
|
+
features: [
|
|
1781
|
+
"All 4 Turtles — complete 1990 film team",
|
|
1782
|
+
"30-point articulation on each figure",
|
|
1783
|
+
"Screen-accurate film suit sculpts",
|
|
1784
|
+
"Full weapon loadouts included",
|
|
1785
|
+
"Large collector window box — displayable",
|
|
1786
|
+
],
|
|
1787
|
+
shippingInfo: "Double-boxed with foam. Free shipping. 3–5 business days.",
|
|
1788
|
+
returnPolicy: "7-day return on factory-sealed product.",
|
|
1789
|
+
allowOffers: true,
|
|
1790
|
+
minOfferPercent: 90,
|
|
1791
|
+
createdAt: daysAgo(48),
|
|
1792
|
+
updatedAt: daysAgo(4),
|
|
1793
|
+
},
|
|
1794
|
+
// 35. Funko Pop! SSJ3 Goku
|
|
1795
|
+
{
|
|
1796
|
+
id: "product-funko-pop-goku-ssj3",
|
|
1797
|
+
slug: "product-funko-pop-goku-ssj3",
|
|
1798
|
+
title: "Funko Pop! Animation: Dragon Ball Z — Goku Super Saiyan 3 #867 (Gitd Special)",
|
|
1799
|
+
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.",
|
|
1800
|
+
category: "category-poseable-figures",
|
|
1801
|
+
categoryName: "Poseable Action Figures",
|
|
1802
|
+
brand: "brand-funko",
|
|
1803
|
+
price: 249900,
|
|
1804
|
+
currency: "INR",
|
|
1805
|
+
stockQuantity: 6,
|
|
1806
|
+
availableQuantity: 6,
|
|
1807
|
+
mainImage: "https://images.unsplash.com/photo-1578292992345-7ee038c5fb7c?w=800&h=800&fit=crop",
|
|
1808
|
+
images: [
|
|
1809
|
+
"https://images.unsplash.com/photo-1578292992345-7ee038c5fb7c?w=800&h=800&fit=crop",
|
|
1810
|
+
"https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
1811
|
+
],
|
|
1812
|
+
status: "published",
|
|
1813
|
+
storeName: "LetItRip Official",
|
|
1814
|
+
storeId: "store-letitrip-official",
|
|
1815
|
+
featured: false,
|
|
1816
|
+
isAuction: false,
|
|
1817
|
+
isPreOrder: false,
|
|
1818
|
+
isPromoted: false,
|
|
1819
|
+
tags: ["funko-pop", "dragon-ball-z", "goku", "super-saiyan-3", "ssj3", "gitd", "chase", "glow"],
|
|
1820
|
+
condition: "new",
|
|
1821
|
+
specifications: [
|
|
1822
|
+
{ name: "Pop Number", value: "#867" },
|
|
1823
|
+
{ name: "Character", value: "Goku — Super Saiyan 3" },
|
|
1824
|
+
{ name: "Series", value: "Dragon Ball Z" },
|
|
1825
|
+
{ name: "Variant", value: "Glow in the Dark (GITD) Chase" },
|
|
1826
|
+
{ name: "Height", value: "~9.5 cm", unit: "cm" },
|
|
1827
|
+
],
|
|
1828
|
+
features: [
|
|
1829
|
+
"GITD Chase variant — glows blue-green in dark",
|
|
1830
|
+
"Super Saiyan 3 waist-length hair sculpt",
|
|
1831
|
+
"Chase sticker on original window box",
|
|
1832
|
+
"Genuine Funko licensed product",
|
|
1833
|
+
"Rare retail pull — not widely available",
|
|
1834
|
+
],
|
|
1835
|
+
shippingInfo: "Bubble-padded envelope. Free shipping on orders above ₹999. 3–5 business days.",
|
|
1836
|
+
returnPolicy: "7-day return if item is damaged or not as described.",
|
|
1837
|
+
allowOffers: false,
|
|
1838
|
+
createdAt: daysAgo(40),
|
|
1839
|
+
updatedAt: daysAgo(2),
|
|
1840
|
+
},
|
|
1841
|
+
// 36. Gunpla RG 1/144 Strike Freedom
|
|
1842
|
+
{
|
|
1843
|
+
id: "product-gundam-rg-strike-freedom",
|
|
1844
|
+
slug: "product-gundam-rg-strike-freedom",
|
|
1845
|
+
title: "Bandai Gunpla RG 1/144 Strike Freedom Gundam — Real Grade Model Kit",
|
|
1846
|
+
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.",
|
|
1847
|
+
category: "category-gunpla",
|
|
1848
|
+
categoryName: "Gunpla",
|
|
1849
|
+
brand: "brand-bandai",
|
|
1850
|
+
price: 249900,
|
|
1851
|
+
currency: "INR",
|
|
1852
|
+
stockQuantity: 7,
|
|
1853
|
+
availableQuantity: 7,
|
|
1854
|
+
mainImage: "https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=800&h=800&fit=crop",
|
|
1855
|
+
images: [
|
|
1856
|
+
"https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=800&h=800&fit=crop",
|
|
1857
|
+
"https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
|
|
1858
|
+
],
|
|
1859
|
+
status: "published",
|
|
1860
|
+
storeName: "LetItRip Official",
|
|
1861
|
+
storeId: "store-letitrip-official",
|
|
1862
|
+
featured: false,
|
|
1863
|
+
isAuction: false,
|
|
1864
|
+
isPreOrder: false,
|
|
1865
|
+
isPromoted: false,
|
|
1866
|
+
tags: ["gunpla", "real-grade", "strike-freedom", "bandai", "model-kit", "rg", "gold-dragoon"],
|
|
1867
|
+
condition: "new",
|
|
1868
|
+
specifications: [
|
|
1869
|
+
{ name: "Grade", value: "Real Grade (RG)" },
|
|
1870
|
+
{ name: "Scale", value: "1/144" },
|
|
1871
|
+
{ name: "Height (assembled)", value: "~13 cm", unit: "cm" },
|
|
1872
|
+
{ name: "DRAGOON Units", value: "8 individually adjustable" },
|
|
1873
|
+
{ name: "Glue Required", value: "No — snap-fit" },
|
|
1874
|
+
],
|
|
1875
|
+
features: [
|
|
1876
|
+
"Gold chrome DRAGOON units — individually poseable",
|
|
1877
|
+
"Twin Rail Cannons and Beam Rifles",
|
|
1878
|
+
"Advanced MS Joint inner frame",
|
|
1879
|
+
"Beam sabre effect parts included",
|
|
1880
|
+
"Display base included",
|
|
1881
|
+
],
|
|
1882
|
+
shippingInfo: "Rigid-box double-packed with foam. Free shipping on orders above ₹999. 3–5 business days.",
|
|
1883
|
+
returnPolicy: "7-day return on factory-sealed kits.",
|
|
1884
|
+
allowOffers: false,
|
|
1885
|
+
createdAt: daysAgo(35),
|
|
1886
|
+
updatedAt: daysAgo(2),
|
|
1887
|
+
},
|
|
1888
|
+
// ── Store: Tokyo Toys India (user-priya-singh) — 6 products ──────────────────
|
|
1889
|
+
// 37. Nendoroid Zero Two (Darling in the FranXX)
|
|
1890
|
+
{
|
|
1891
|
+
id: "product-nendoroid-zero-two",
|
|
1892
|
+
slug: "product-nendoroid-zero-two",
|
|
1893
|
+
title: "Good Smile Company Nendoroid Zero Two (Darling in the FranXX) — #942",
|
|
1894
|
+
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.",
|
|
1895
|
+
category: "category-nendoroids-chibis",
|
|
1896
|
+
categoryName: "Nendoroids & Chibis",
|
|
1897
|
+
brand: "brand-good-smile",
|
|
1898
|
+
price: 529900,
|
|
1899
|
+
currency: "INR",
|
|
1900
|
+
stockQuantity: 8,
|
|
1901
|
+
availableQuantity: 8,
|
|
1902
|
+
mainImage: "https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
|
|
1903
|
+
images: [
|
|
1904
|
+
"https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
|
|
1905
|
+
"https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
1906
|
+
],
|
|
1907
|
+
status: "published",
|
|
1908
|
+
storeName: "Tokyo Toys India",
|
|
1909
|
+
storeId: "store-tokyo-toys-india",
|
|
1910
|
+
featured: true,
|
|
1911
|
+
isAuction: false,
|
|
1912
|
+
isPreOrder: false,
|
|
1913
|
+
isPromoted: true,
|
|
1914
|
+
tags: ["nendoroid", "zero-two", "darling-in-the-franxx", "good-smile", "anime-figure", "chibi"],
|
|
1915
|
+
condition: "new",
|
|
1916
|
+
specifications: [
|
|
1917
|
+
{ name: "Nendoroid Number", value: "#942" },
|
|
1918
|
+
{ name: "Character", value: "Zero Two" },
|
|
1919
|
+
{ name: "Series", value: "Darling in the FranXX" },
|
|
1920
|
+
{ name: "Height", value: "~10 cm", unit: "cm" },
|
|
1921
|
+
{ name: "Manufacturer", value: "Good Smile Company" },
|
|
1922
|
+
],
|
|
1923
|
+
features: [
|
|
1924
|
+
"Iconic Zero Two Nendoroid — fan favourite",
|
|
1925
|
+
"3 interchangeable expression faceplates",
|
|
1926
|
+
"Red horn and pink hair details",
|
|
1927
|
+
"Nendoroid display stand included",
|
|
1928
|
+
"Authentic GSC re-release with serial number",
|
|
1929
|
+
],
|
|
1930
|
+
shippingInfo: "Individually bubble-wrapped in rigid box. Free shipping on orders above ₹999. 3–5 business days.",
|
|
1931
|
+
returnPolicy: "7-day return on factory-sealed product.",
|
|
1932
|
+
allowOffers: false,
|
|
1933
|
+
createdAt: daysAgo(70),
|
|
1934
|
+
updatedAt: daysAgo(2),
|
|
1935
|
+
},
|
|
1936
|
+
// 38. Nendoroid Levi (Attack on Titan)
|
|
1937
|
+
{
|
|
1938
|
+
id: "product-nendoroid-levi-aot",
|
|
1939
|
+
slug: "product-nendoroid-levi-aot",
|
|
1940
|
+
title: "Good Smile Company Nendoroid Levi (Attack on Titan) — #390",
|
|
1941
|
+
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.",
|
|
1942
|
+
category: "category-nendoroids-chibis",
|
|
1943
|
+
categoryName: "Nendoroids & Chibis",
|
|
1944
|
+
brand: "brand-good-smile",
|
|
1945
|
+
price: 489900,
|
|
1946
|
+
currency: "INR",
|
|
1947
|
+
stockQuantity: 6,
|
|
1948
|
+
availableQuantity: 6,
|
|
1949
|
+
mainImage: "https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
1950
|
+
images: [
|
|
1951
|
+
"https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
1952
|
+
"https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
|
|
1953
|
+
],
|
|
1954
|
+
status: "published",
|
|
1955
|
+
storeName: "Tokyo Toys India",
|
|
1956
|
+
storeId: "store-tokyo-toys-india",
|
|
1957
|
+
featured: false,
|
|
1958
|
+
isAuction: false,
|
|
1959
|
+
isPreOrder: false,
|
|
1960
|
+
isPromoted: false,
|
|
1961
|
+
tags: ["nendoroid", "levi", "attack-on-titan", "good-smile", "survey-corps", "anime-figure"],
|
|
1962
|
+
condition: "new",
|
|
1963
|
+
specifications: [
|
|
1964
|
+
{ name: "Nendoroid Number", value: "#390" },
|
|
1965
|
+
{ name: "Character", value: "Levi Ackerman" },
|
|
1966
|
+
{ name: "Series", value: "Attack on Titan" },
|
|
1967
|
+
{ name: "Height", value: "~10 cm", unit: "cm" },
|
|
1968
|
+
{ name: "Edition", value: "Re-release" },
|
|
1969
|
+
],
|
|
1970
|
+
features: [
|
|
1971
|
+
"Iconic cleaning mode faceplate + mop accessory",
|
|
1972
|
+
"ODM gear effect parts",
|
|
1973
|
+
"3 expression faceplates",
|
|
1974
|
+
"Thunder spear weapon included",
|
|
1975
|
+
"Authentic GSC re-release",
|
|
1976
|
+
],
|
|
1977
|
+
shippingInfo: "Individually bubble-wrapped in rigid box. Free shipping on orders above ₹999. 3–5 business days.",
|
|
1978
|
+
returnPolicy: "7-day return on factory-sealed product.",
|
|
1979
|
+
allowOffers: false,
|
|
1980
|
+
createdAt: daysAgo(62),
|
|
1981
|
+
updatedAt: daysAgo(3),
|
|
1982
|
+
},
|
|
1983
|
+
// 39. Funko Pop Tanjiro Demon Slayer
|
|
1984
|
+
{
|
|
1985
|
+
id: "product-funko-pop-tanjiro-demon-slayer",
|
|
1986
|
+
slug: "product-funko-pop-tanjiro-demon-slayer",
|
|
1987
|
+
title: "Funko Pop! Animation: Demon Slayer — Tanjiro Kamado #855 (Kimetsu no Yaiba)",
|
|
1988
|
+
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.",
|
|
1989
|
+
category: "category-poseable-figures",
|
|
1990
|
+
categoryName: "Poseable Action Figures",
|
|
1991
|
+
brand: "brand-funko",
|
|
1992
|
+
price: 159900,
|
|
1993
|
+
currency: "INR",
|
|
1994
|
+
stockQuantity: 20,
|
|
1995
|
+
availableQuantity: 20,
|
|
1996
|
+
mainImage: "https://images.unsplash.com/photo-1578292992345-7ee038c5fb7c?w=800&h=800&fit=crop",
|
|
1997
|
+
images: [
|
|
1998
|
+
"https://images.unsplash.com/photo-1578292992345-7ee038c5fb7c?w=800&h=800&fit=crop",
|
|
1999
|
+
"https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
|
|
2000
|
+
],
|
|
2001
|
+
status: "published",
|
|
2002
|
+
storeName: "Tokyo Toys India",
|
|
2003
|
+
storeId: "store-tokyo-toys-india",
|
|
2004
|
+
featured: false,
|
|
2005
|
+
isAuction: false,
|
|
2006
|
+
isPreOrder: false,
|
|
2007
|
+
isPromoted: false,
|
|
2008
|
+
tags: ["funko-pop", "tanjiro", "demon-slayer", "kimetsu-no-yaiba", "anime", "vinyl-figure"],
|
|
2009
|
+
condition: "new",
|
|
2010
|
+
specifications: [
|
|
2011
|
+
{ name: "Pop Number", value: "#855" },
|
|
2012
|
+
{ name: "Character", value: "Tanjiro Kamado" },
|
|
2013
|
+
{ name: "Series", value: "Demon Slayer: Kimetsu no Yaiba" },
|
|
2014
|
+
{ name: "Height", value: "~9.5 cm", unit: "cm" },
|
|
2015
|
+
],
|
|
2016
|
+
features: [
|
|
2017
|
+
"Iconic haori and Nichirin Sword",
|
|
2018
|
+
"Standard window box — mint on card",
|
|
2019
|
+
"Official Funko licensed anime product",
|
|
2020
|
+
"One of the most popular anime Pops",
|
|
2021
|
+
],
|
|
2022
|
+
shippingInfo: "Bubble-padded envelope. Free shipping on orders above ₹999. 3–5 business days.",
|
|
2023
|
+
returnPolicy: "7-day return if item is damaged or not as described.",
|
|
2024
|
+
allowOffers: false,
|
|
2025
|
+
createdAt: daysAgo(55),
|
|
2026
|
+
updatedAt: daysAgo(3),
|
|
2027
|
+
},
|
|
2028
|
+
// 40. S.H.Figuarts Sailor Moon (Sailor Stars)
|
|
2029
|
+
{
|
|
2030
|
+
id: "product-shf-sailor-moon-eternal",
|
|
2031
|
+
slug: "product-shf-sailor-moon-eternal",
|
|
2032
|
+
title: "Bandai S.H.Figuarts Sailor Moon -Eternal- (Pretty Guardian Sailor Moon Eternal The Movie)",
|
|
2033
|
+
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.",
|
|
2034
|
+
category: "category-poseable-figures",
|
|
2035
|
+
categoryName: "Poseable Action Figures",
|
|
2036
|
+
brand: "brand-bandai",
|
|
2037
|
+
price: 729900,
|
|
2038
|
+
currency: "INR",
|
|
2039
|
+
stockQuantity: 5,
|
|
2040
|
+
availableQuantity: 5,
|
|
2041
|
+
mainImage: "https://images.unsplash.com/photo-1560762484-813fc97650a0?w=800&h=800&fit=crop",
|
|
2042
|
+
images: [
|
|
2043
|
+
"https://images.unsplash.com/photo-1560762484-813fc97650a0?w=800&h=800&fit=crop",
|
|
2044
|
+
"https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
2045
|
+
],
|
|
2046
|
+
status: "published",
|
|
2047
|
+
storeName: "Tokyo Toys India",
|
|
2048
|
+
storeId: "store-tokyo-toys-india",
|
|
2049
|
+
featured: false,
|
|
2050
|
+
isAuction: false,
|
|
2051
|
+
isPreOrder: false,
|
|
2052
|
+
isPromoted: false,
|
|
2053
|
+
tags: ["bandai", "sh-figuarts", "sailor-moon", "eternal", "magical-girl", "anime-figure"],
|
|
2054
|
+
condition: "new",
|
|
2055
|
+
specifications: [
|
|
2056
|
+
{ name: "Character", value: "Sailor Moon — Eternal Form" },
|
|
2057
|
+
{ name: "Series", value: "Sailor Moon Eternal (2021)" },
|
|
2058
|
+
{ name: "Height", value: "~14 cm", unit: "cm" },
|
|
2059
|
+
{ name: "Articulation", value: "20+ points" },
|
|
2060
|
+
{ name: "Manufacturer", value: "Bandai Spirits" },
|
|
2061
|
+
],
|
|
2062
|
+
features: [
|
|
2063
|
+
"Eternal transformation butterfly wing effect parts",
|
|
2064
|
+
"Rainbow semi-translucent wing plastic",
|
|
2065
|
+
"Eternal Tiare weapon accessory",
|
|
2066
|
+
"Multiple expression faceplates",
|
|
2067
|
+
"20+ articulation points",
|
|
2068
|
+
],
|
|
2069
|
+
shippingInfo: "Double-boxed with foam. Free shipping on orders above ₹999. 3–5 business days.",
|
|
2070
|
+
returnPolicy: "7-day return on factory-sealed product.",
|
|
2071
|
+
allowOffers: false,
|
|
2072
|
+
createdAt: daysAgo(48),
|
|
2073
|
+
updatedAt: daysAgo(2),
|
|
2074
|
+
},
|
|
2075
|
+
// 41. Funko Pop! Deku (My Hero Academia)
|
|
2076
|
+
{
|
|
2077
|
+
id: "product-funko-pop-deku-mha",
|
|
2078
|
+
slug: "product-funko-pop-deku-mha",
|
|
2079
|
+
title: "Funko Pop! Animation: My Hero Academia — Izuku Midoriya (Deku) Full Cowl #1052",
|
|
2080
|
+
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.",
|
|
2081
|
+
category: "category-poseable-figures",
|
|
2082
|
+
categoryName: "Poseable Action Figures",
|
|
2083
|
+
brand: "brand-funko",
|
|
2084
|
+
price: 169900,
|
|
2085
|
+
currency: "INR",
|
|
2086
|
+
stockQuantity: 18,
|
|
2087
|
+
availableQuantity: 18,
|
|
2088
|
+
mainImage: "https://images.unsplash.com/photo-1578292992345-7ee038c5fb7c?w=800&h=800&fit=crop",
|
|
2089
|
+
images: [
|
|
2090
|
+
"https://images.unsplash.com/photo-1578292992345-7ee038c5fb7c?w=800&h=800&fit=crop",
|
|
2091
|
+
"https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
2092
|
+
],
|
|
2093
|
+
status: "published",
|
|
2094
|
+
storeName: "Tokyo Toys India",
|
|
2095
|
+
storeId: "store-tokyo-toys-india",
|
|
2096
|
+
featured: false,
|
|
2097
|
+
isAuction: false,
|
|
2098
|
+
isPreOrder: false,
|
|
2099
|
+
isPromoted: false,
|
|
2100
|
+
tags: ["funko-pop", "deku", "midoriya", "my-hero-academia", "mha", "full-cowl", "anime"],
|
|
2101
|
+
condition: "new",
|
|
2102
|
+
specifications: [
|
|
2103
|
+
{ name: "Pop Number", value: "#1052" },
|
|
2104
|
+
{ name: "Character", value: "Izuku Midoriya (Deku)" },
|
|
2105
|
+
{ name: "Series", value: "My Hero Academia" },
|
|
2106
|
+
{ name: "Variant", value: "Full Cowl activation" },
|
|
2107
|
+
],
|
|
2108
|
+
features: [
|
|
2109
|
+
"Full Cowl Smash pose with lightning effect",
|
|
2110
|
+
"Lightning energy moulded around figure",
|
|
2111
|
+
"Official Funko licensed MHA product",
|
|
2112
|
+
"Window box — mint on card",
|
|
2113
|
+
],
|
|
2114
|
+
shippingInfo: "Bubble-padded envelope. Free shipping on orders above ₹999. 3–5 business days.",
|
|
2115
|
+
returnPolicy: "7-day return if item is damaged or not as described.",
|
|
2116
|
+
allowOffers: false,
|
|
2117
|
+
createdAt: daysAgo(42),
|
|
2118
|
+
updatedAt: daysAgo(2),
|
|
2119
|
+
},
|
|
2120
|
+
// 42. Good Smile Racing Miku Hatsune 2023 Ver.
|
|
2121
|
+
{
|
|
2122
|
+
id: "product-gsc-racing-miku-2023",
|
|
2123
|
+
slug: "product-gsc-racing-miku-2023",
|
|
2124
|
+
title: "Good Smile Company Racing Miku 2023 Ver. 1/7 Scale PVC Figure",
|
|
2125
|
+
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.",
|
|
2126
|
+
category: "category-scale-figures",
|
|
2127
|
+
categoryName: "Scale Figures",
|
|
2128
|
+
brand: "brand-good-smile",
|
|
2129
|
+
price: 899900,
|
|
2130
|
+
currency: "INR",
|
|
2131
|
+
stockQuantity: 4,
|
|
2132
|
+
availableQuantity: 4,
|
|
2133
|
+
mainImage: "https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
|
|
2134
|
+
images: [
|
|
2135
|
+
"https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
|
|
2136
|
+
"https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
2137
|
+
],
|
|
2138
|
+
status: "published",
|
|
2139
|
+
storeName: "Tokyo Toys India",
|
|
2140
|
+
storeId: "store-tokyo-toys-india",
|
|
2141
|
+
featured: false,
|
|
2142
|
+
isAuction: false,
|
|
2143
|
+
isPreOrder: false,
|
|
2144
|
+
isPromoted: false,
|
|
2145
|
+
tags: ["good-smile", "racing-miku", "hatsune-miku", "scale-figure", "1-7-scale", "vocaloid", "racing"],
|
|
2146
|
+
condition: "new",
|
|
2147
|
+
specifications: [
|
|
2148
|
+
{ name: "Character", value: "Hatsune Miku — Racing 2023 Ver." },
|
|
2149
|
+
{ name: "Scale", value: "1/7" },
|
|
2150
|
+
{ name: "Height", value: "~26 cm", unit: "cm" },
|
|
2151
|
+
{ name: "Material", value: "PVC with ABS base" },
|
|
2152
|
+
{ name: "Manufacturer", value: "Good Smile Company" },
|
|
2153
|
+
],
|
|
2154
|
+
features: [
|
|
2155
|
+
"1/7 scale centrepiece figure — 26 cm tall",
|
|
2156
|
+
"Racing Queen outfit by NIDY-2D-",
|
|
2157
|
+
"Racing circuit display base included",
|
|
2158
|
+
"Annual limited release — 2023 edition",
|
|
2159
|
+
"Authentic GSC Japan import",
|
|
2160
|
+
],
|
|
2161
|
+
shippingInfo: "Double-boxed with foam. Free shipping on orders above ₹999. 3–5 business days.",
|
|
2162
|
+
returnPolicy: "7-day return on factory-sealed product.",
|
|
2163
|
+
allowOffers: true,
|
|
2164
|
+
minOfferPercent: 92,
|
|
2165
|
+
createdAt: daysAgo(35),
|
|
2166
|
+
updatedAt: daysAgo(1),
|
|
2167
|
+
},
|
|
2168
|
+
// ── Store: Gundam Galaxy (user-amit-sharma) — 4 products ─────────────────────
|
|
2169
|
+
// 43. HG 1/144 Gundam Barbatos Lupus Rex
|
|
2170
|
+
{
|
|
2171
|
+
id: "product-gundam-hg-barbatos-lupus-rex",
|
|
2172
|
+
slug: "product-gundam-hg-barbatos-lupus-rex",
|
|
2173
|
+
title: "Bandai Gunpla HG 1/144 Gundam Barbatos Lupus Rex — High Grade Kit",
|
|
2174
|
+
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.",
|
|
2175
|
+
category: "category-gunpla",
|
|
2176
|
+
categoryName: "Gunpla",
|
|
2177
|
+
brand: "brand-bandai",
|
|
2178
|
+
price: 149900,
|
|
2179
|
+
currency: "INR",
|
|
2180
|
+
stockQuantity: 25,
|
|
2181
|
+
availableQuantity: 25,
|
|
2182
|
+
mainImage: "https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=800&h=800&fit=crop",
|
|
2183
|
+
images: [
|
|
2184
|
+
"https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=800&h=800&fit=crop",
|
|
2185
|
+
"https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
|
|
2186
|
+
],
|
|
2187
|
+
status: "published",
|
|
2188
|
+
storeName: "Gundam Galaxy",
|
|
2189
|
+
storeId: "store-gundam-galaxy",
|
|
2190
|
+
featured: false,
|
|
2191
|
+
isAuction: false,
|
|
2192
|
+
isPreOrder: false,
|
|
2193
|
+
isPromoted: true,
|
|
2194
|
+
tags: ["gunpla", "high-grade", "hg", "barbatos", "lupus-rex", "ibo", "iron-blooded-orphans", "bandai"],
|
|
2195
|
+
condition: "new",
|
|
2196
|
+
specifications: [
|
|
2197
|
+
{ name: "Grade", value: "High Grade (HG)" },
|
|
2198
|
+
{ name: "Scale", value: "1/144" },
|
|
2199
|
+
{ name: "Parts Count", value: "140+" },
|
|
2200
|
+
{ name: "Height (assembled)", value: "~13 cm", unit: "cm" },
|
|
2201
|
+
{ name: "Skill Level", value: "Beginner (10+)" },
|
|
2202
|
+
],
|
|
2203
|
+
features: [
|
|
2204
|
+
"Barbatos Lupus Rex — most powerful IBO form",
|
|
2205
|
+
"Giant tail blade and claw accessories",
|
|
2206
|
+
"Mace weapon included",
|
|
2207
|
+
"Highly poseable HG inner frame system",
|
|
2208
|
+
"No glue required — snap-fit",
|
|
2209
|
+
],
|
|
2210
|
+
shippingInfo: "Double-boxed with rigid cardboard. Free shipping on orders above ₹999. 3–5 business days.",
|
|
2211
|
+
returnPolicy: "7-day return on factory-sealed kits (shrink wrap intact).",
|
|
2212
|
+
allowOffers: false,
|
|
2213
|
+
createdAt: daysAgo(65),
|
|
2214
|
+
updatedAt: daysAgo(2),
|
|
2215
|
+
},
|
|
2216
|
+
// 44. MG 1/100 Sazabi Ver. Ka
|
|
2217
|
+
{
|
|
2218
|
+
id: "product-gundam-mg-sazabi-verka",
|
|
2219
|
+
slug: "product-gundam-mg-sazabi-verka",
|
|
2220
|
+
title: "Bandai Gunpla MG 1/100 Sazabi Ver.Ka — Master Grade Model Kit",
|
|
2221
|
+
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.",
|
|
2222
|
+
category: "category-gunpla",
|
|
2223
|
+
categoryName: "Gunpla",
|
|
2224
|
+
brand: "brand-bandai",
|
|
2225
|
+
price: 649900,
|
|
2226
|
+
currency: "INR",
|
|
2227
|
+
stockQuantity: 5,
|
|
2228
|
+
availableQuantity: 5,
|
|
2229
|
+
mainImage: "https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=800&h=800&fit=crop",
|
|
2230
|
+
images: [
|
|
2231
|
+
"https://images.unsplash.com/photo-1599420186946-7b6fb4e297f0?w=800&h=800&fit=crop",
|
|
2232
|
+
"https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=800&h=800&fit=crop",
|
|
2233
|
+
],
|
|
2234
|
+
status: "published",
|
|
2235
|
+
storeName: "Gundam Galaxy",
|
|
2236
|
+
storeId: "store-gundam-galaxy",
|
|
2237
|
+
featured: true,
|
|
2238
|
+
isAuction: false,
|
|
2239
|
+
isPreOrder: false,
|
|
2240
|
+
isPromoted: false,
|
|
2241
|
+
tags: ["gunpla", "master-grade", "mg", "sazabi", "ver-ka", "char-aznable", "bandai", "katoki"],
|
|
2242
|
+
condition: "new",
|
|
2243
|
+
specifications: [
|
|
2244
|
+
{ name: "Grade", value: "Master Grade (MG)" },
|
|
2245
|
+
{ name: "Scale", value: "1/100" },
|
|
2246
|
+
{ name: "Parts Count", value: "300+" },
|
|
2247
|
+
{ name: "Height (assembled)", value: "~24 cm", unit: "cm" },
|
|
2248
|
+
{ name: "Skill Level", value: "Advanced (15+)" },
|
|
2249
|
+
],
|
|
2250
|
+
features: [
|
|
2251
|
+
"Hajime Katoki design — Gunpla hall-of-fame kit",
|
|
2252
|
+
"3-layer construction (inner/external frame + armour)",
|
|
2253
|
+
"6 funnels — full array included",
|
|
2254
|
+
"Transparent green psycho-frame cockpit",
|
|
2255
|
+
"Display stand with pilot figure included",
|
|
2256
|
+
],
|
|
2257
|
+
shippingInfo: "Double-boxed in rigid cardboard with foam. Free shipping. 3–5 business days.",
|
|
2258
|
+
returnPolicy: "7-day return on factory-sealed kits.",
|
|
2259
|
+
allowOffers: true,
|
|
2260
|
+
minOfferPercent: 92,
|
|
2261
|
+
createdAt: daysAgo(58),
|
|
2262
|
+
updatedAt: daysAgo(2),
|
|
2263
|
+
},
|
|
2264
|
+
// 45. RG 1/144 Evangelion Unit-01
|
|
2265
|
+
{
|
|
2266
|
+
id: "product-gundam-rg-evangelion-unit01",
|
|
2267
|
+
slug: "product-gundam-rg-evangelion-unit01",
|
|
2268
|
+
title: "Bandai RG 1/144 Evangelion Unit-01 — Real Grade Model Kit (Rebuild of Evangelion)",
|
|
2269
|
+
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.",
|
|
2270
|
+
category: "category-gunpla",
|
|
2271
|
+
categoryName: "Gunpla",
|
|
2272
|
+
brand: "brand-bandai",
|
|
2273
|
+
price: 299900,
|
|
2274
|
+
currency: "INR",
|
|
2275
|
+
stockQuantity: 10,
|
|
2276
|
+
availableQuantity: 10,
|
|
2277
|
+
mainImage: "https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=800&h=800&fit=crop",
|
|
2278
|
+
images: [
|
|
2279
|
+
"https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=800&h=800&fit=crop",
|
|
2280
|
+
"https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
2281
|
+
],
|
|
2282
|
+
status: "published",
|
|
2283
|
+
storeName: "Gundam Galaxy",
|
|
2284
|
+
storeId: "store-gundam-galaxy",
|
|
2285
|
+
featured: false,
|
|
2286
|
+
isAuction: false,
|
|
2287
|
+
isPreOrder: false,
|
|
2288
|
+
isPromoted: false,
|
|
2289
|
+
tags: ["evangelion", "eva", "unit-01", "real-grade", "rg", "bandai", "neon-genesis", "rebuild"],
|
|
2290
|
+
condition: "new",
|
|
2291
|
+
specifications: [
|
|
2292
|
+
{ name: "Model", value: "Evangelion Unit-01" },
|
|
2293
|
+
{ name: "Grade", value: "Real Grade (RG)" },
|
|
2294
|
+
{ name: "Scale", value: "1/144" },
|
|
2295
|
+
{ name: "Height (assembled)", value: "~15 cm", unit: "cm" },
|
|
2296
|
+
{ name: "Skill Level", value: "Intermediate (12+)" },
|
|
2297
|
+
],
|
|
2298
|
+
features: [
|
|
2299
|
+
"Bandai's first non-Gundam RG kit",
|
|
2300
|
+
"Pre-coloured runners — accurate out-of-box",
|
|
2301
|
+
"Progressive knife, pallet rifle, umbilical cable",
|
|
2302
|
+
"Berserker expression parts included",
|
|
2303
|
+
"Advanced RG inner frame poseability",
|
|
2304
|
+
],
|
|
2305
|
+
shippingInfo: "Double-boxed with foam. Free shipping on orders above ₹999. 3–5 business days.",
|
|
2306
|
+
returnPolicy: "7-day return on factory-sealed kits.",
|
|
2307
|
+
allowOffers: false,
|
|
2308
|
+
createdAt: daysAgo(50),
|
|
2309
|
+
updatedAt: daysAgo(3),
|
|
2310
|
+
},
|
|
2311
|
+
// 46. HG 1/144 Tallgeese III
|
|
2312
|
+
{
|
|
2313
|
+
id: "product-gundam-hg-tallgeese-iii",
|
|
2314
|
+
slug: "product-gundam-hg-tallgeese-iii",
|
|
2315
|
+
title: "Bandai Gunpla HG 1/144 Tallgeese III (Gundam Wing Endless Waltz)",
|
|
2316
|
+
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.",
|
|
2317
|
+
category: "category-gunpla",
|
|
2318
|
+
categoryName: "Gunpla",
|
|
2319
|
+
brand: "brand-bandai",
|
|
2320
|
+
price: 129900,
|
|
2321
|
+
currency: "INR",
|
|
2322
|
+
stockQuantity: 15,
|
|
2323
|
+
availableQuantity: 15,
|
|
2324
|
+
mainImage: "https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=800&h=800&fit=crop",
|
|
2325
|
+
images: [
|
|
2326
|
+
"https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
|
|
2327
|
+
"https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=800&h=800&fit=crop",
|
|
2328
|
+
],
|
|
2329
|
+
status: "published",
|
|
2330
|
+
storeName: "Gundam Galaxy",
|
|
2331
|
+
storeId: "store-gundam-galaxy",
|
|
2332
|
+
featured: false,
|
|
2333
|
+
isAuction: false,
|
|
2334
|
+
isPreOrder: false,
|
|
2335
|
+
isPromoted: false,
|
|
2336
|
+
tags: ["gunpla", "high-grade", "hg", "tallgeese-iii", "gundam-wing", "endless-waltz", "treize"],
|
|
2337
|
+
condition: "new",
|
|
2338
|
+
specifications: [
|
|
2339
|
+
{ name: "Grade", value: "High Grade (HG)" },
|
|
2340
|
+
{ name: "Scale", value: "1/144" },
|
|
2341
|
+
{ name: "Height (assembled)", value: "~13 cm", unit: "cm" },
|
|
2342
|
+
{ name: "Skill Level", value: "Beginner (10+)" },
|
|
2343
|
+
{ name: "Series", value: "Gundam Wing: Endless Waltz" },
|
|
2344
|
+
],
|
|
2345
|
+
features: [
|
|
2346
|
+
"Tallgeese III — final and most powerful form",
|
|
2347
|
+
"Massive buster rifle cannon accessory",
|
|
2348
|
+
"White and gold colour scheme",
|
|
2349
|
+
"Pairs with RG Wing Gundam Zero",
|
|
2350
|
+
"No glue required — snap-fit",
|
|
2351
|
+
],
|
|
2352
|
+
shippingInfo: "Double-boxed with rigid cardboard. Free shipping on orders above ₹999. 3–5 business days.",
|
|
2353
|
+
returnPolicy: "7-day return on factory-sealed kits.",
|
|
2354
|
+
allowOffers: false,
|
|
2355
|
+
createdAt: daysAgo(42),
|
|
2356
|
+
updatedAt: daysAgo(2),
|
|
2357
|
+
},
|
|
2358
|
+
// ── Store: Vintage Vault (user-kavya-iyer) — 4 products ──────────────────────
|
|
2359
|
+
// 47. Pokémon Base Set Charizard LP Raw
|
|
2360
|
+
{
|
|
2361
|
+
id: "product-vintage-pokemon-charizard-base-lp",
|
|
2362
|
+
slug: "product-vintage-pokemon-charizard-base-lp",
|
|
2363
|
+
title: "Pokémon Base Set Charizard #4/102 Holo Rare — Lightly Played (LP) Raw Ungraded",
|
|
2364
|
+
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.",
|
|
2365
|
+
category: "category-vintage-tcg",
|
|
2366
|
+
categoryName: "Vintage TCG",
|
|
2367
|
+
brand: "brand-pokemon-company",
|
|
2368
|
+
price: 399900,
|
|
2369
|
+
currency: "INR",
|
|
2370
|
+
stockQuantity: 1,
|
|
2371
|
+
availableQuantity: 1,
|
|
2372
|
+
mainImage: "https://images.unsplash.com/photo-1578301978162-7aae4d755744?w=800&h=800&fit=crop",
|
|
2373
|
+
images: [
|
|
2374
|
+
"https://images.unsplash.com/photo-1578301978162-7aae4d755744?w=800&h=800&fit=crop",
|
|
2375
|
+
"https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
2376
|
+
],
|
|
2377
|
+
status: "published",
|
|
2378
|
+
storeName: "Vintage Vault",
|
|
2379
|
+
storeId: "store-vintage-vault",
|
|
2380
|
+
featured: true,
|
|
2381
|
+
isAuction: false,
|
|
2382
|
+
isPreOrder: false,
|
|
2383
|
+
isPromoted: false,
|
|
2384
|
+
tags: ["pokemon", "charizard", "base-set", "holo", "raw", "vintage", "lp", "ungraded"],
|
|
2385
|
+
condition: "used",
|
|
2386
|
+
specifications: [
|
|
2387
|
+
{ name: "Card", value: "Charizard #4/102 — Base Set Unlimited" },
|
|
2388
|
+
{ name: "Condition", value: "Lightly Played (LP) raw" },
|
|
2389
|
+
{ name: "Centering", value: "60/40 front, 65/35 back" },
|
|
2390
|
+
{ name: "Language", value: "English" },
|
|
2391
|
+
{ name: "Grade Estimate", value: "PSA 5–6 range" },
|
|
2392
|
+
],
|
|
2393
|
+
features: [
|
|
2394
|
+
"Genuine original — authentic holo pattern confirmed",
|
|
2395
|
+
"LP condition — honest grading",
|
|
2396
|
+
"Stored in hard sleeve since acquisition",
|
|
2397
|
+
"Detailed photo documentation provided",
|
|
2398
|
+
"Sourced from estate sale collection",
|
|
2399
|
+
],
|
|
2400
|
+
shippingInfo: "Shipped in toploader + penny sleeve in rigid mailer. Insured. 4–6 business days.",
|
|
2401
|
+
returnPolicy: "3-day return if card is proven counterfeit — not for condition disagreements.",
|
|
2402
|
+
allowOffers: true,
|
|
2403
|
+
minOfferPercent: 85,
|
|
2404
|
+
createdAt: daysAgo(30),
|
|
2405
|
+
updatedAt: daysAgo(2),
|
|
2406
|
+
},
|
|
2407
|
+
// 48. Hot Wheels Redline Deora 1968 Vintage
|
|
2408
|
+
{
|
|
2409
|
+
id: "product-vintage-hot-wheels-deora-1968",
|
|
2410
|
+
slug: "product-vintage-hot-wheels-deora-1968",
|
|
2411
|
+
title: "Hot Wheels Redline 1968 Deora — Aqua (Good Condition, Original)",
|
|
2412
|
+
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.",
|
|
2413
|
+
category: "category-hot-wheels",
|
|
2414
|
+
categoryName: "Hot Wheels",
|
|
2415
|
+
brand: "brand-hot-wheels",
|
|
2416
|
+
price: 649900,
|
|
2417
|
+
currency: "INR",
|
|
2418
|
+
stockQuantity: 1,
|
|
2419
|
+
availableQuantity: 1,
|
|
2420
|
+
mainImage: "https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?w=800&h=800&fit=crop",
|
|
2421
|
+
images: [
|
|
2422
|
+
"https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?w=800&h=800&fit=crop",
|
|
2423
|
+
"https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=800&fit=crop",
|
|
2424
|
+
],
|
|
2425
|
+
status: "published",
|
|
2426
|
+
storeName: "Vintage Vault",
|
|
2427
|
+
storeId: "store-vintage-vault",
|
|
2428
|
+
featured: false,
|
|
2429
|
+
isAuction: false,
|
|
2430
|
+
isPreOrder: false,
|
|
2431
|
+
isPromoted: false,
|
|
2432
|
+
tags: ["hot-wheels", "redline", "1968", "deora", "aqua", "vintage", "rare", "surf-van"],
|
|
2433
|
+
condition: "used",
|
|
2434
|
+
specifications: [
|
|
2435
|
+
{ name: "Year", value: "1968" },
|
|
2436
|
+
{ name: "Scale", value: "1:64" },
|
|
2437
|
+
{ name: "Colour", value: "Aqua" },
|
|
2438
|
+
{ name: "Wheels", value: "Redline" },
|
|
2439
|
+
{ name: "Condition Grade", value: "Good (G)" },
|
|
2440
|
+
{ name: "Note", value: "One surfboard present, one missing" },
|
|
2441
|
+
],
|
|
2442
|
+
features: [
|
|
2443
|
+
"1968 Redline Deora — iconic original casting",
|
|
2444
|
+
"Aqua colour — distinctive and desirable",
|
|
2445
|
+
"Original owner documentation available",
|
|
2446
|
+
"All four wheels spin",
|
|
2447
|
+
"Genuine original — no reproductions",
|
|
2448
|
+
],
|
|
2449
|
+
shippingInfo: "Individually bubble-wrapped in foam-lined rigid mailer. Insured shipping. 4–6 business days.",
|
|
2450
|
+
returnPolicy: "3-day return if misrepresented in condition. Detailed photos available before shipping.",
|
|
2451
|
+
insurance: true,
|
|
2452
|
+
insuranceCost: 15000,
|
|
2453
|
+
allowOffers: true,
|
|
2454
|
+
minOfferPercent: 85,
|
|
2455
|
+
createdAt: daysAgo(22),
|
|
2456
|
+
updatedAt: daysAgo(1),
|
|
2457
|
+
},
|
|
2458
|
+
// 49. Masters of the Universe He-Man 1982 Vintage
|
|
2459
|
+
{
|
|
2460
|
+
id: "product-vintage-motu-he-man-1982",
|
|
2461
|
+
slug: "product-vintage-motu-he-man-1982",
|
|
2462
|
+
title: "Masters of the Universe: He-Man Action Figure (1982, First Year, Japan Import)",
|
|
2463
|
+
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.",
|
|
2464
|
+
category: "category-vintage-figures",
|
|
2465
|
+
categoryName: "Vintage Figures",
|
|
2466
|
+
brand: "brand-mcfarlane",
|
|
2467
|
+
price: 499900,
|
|
2468
|
+
currency: "INR",
|
|
2469
|
+
stockQuantity: 1,
|
|
2470
|
+
availableQuantity: 1,
|
|
2471
|
+
mainImage: "https://images.unsplash.com/photo-1599420186946-7b6fb4e297f0?w=800&h=800&fit=crop",
|
|
2472
|
+
images: [
|
|
2473
|
+
"https://images.unsplash.com/photo-1599420186946-7b6fb4e297f0?w=800&h=800&fit=crop",
|
|
2474
|
+
"https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
2475
|
+
],
|
|
2476
|
+
status: "published",
|
|
2477
|
+
storeName: "Vintage Vault",
|
|
2478
|
+
storeId: "store-vintage-vault",
|
|
2479
|
+
featured: false,
|
|
2480
|
+
isAuction: false,
|
|
2481
|
+
isPreOrder: false,
|
|
2482
|
+
isPromoted: false,
|
|
2483
|
+
tags: ["motu", "he-man", "masters-of-the-universe", "1982", "vintage", "mattel", "80s-toys"],
|
|
2484
|
+
condition: "used",
|
|
2485
|
+
specifications: [
|
|
2486
|
+
{ name: "Character", value: "He-Man" },
|
|
2487
|
+
{ name: "Line", value: "Masters of the Universe" },
|
|
2488
|
+
{ name: "Year", value: "1982 (first year)" },
|
|
2489
|
+
{ name: "Version", value: "Japan Takara distributed" },
|
|
2490
|
+
{ name: "Condition", value: "Very Good (VG)" },
|
|
2491
|
+
{ name: "Accessories", value: "Power Sword, battle axe, shield — all present" },
|
|
2492
|
+
],
|
|
2493
|
+
features: [
|
|
2494
|
+
"First year 1982 production run",
|
|
2495
|
+
"Japan Takara distribution version",
|
|
2496
|
+
"All accessories present — complete set",
|
|
2497
|
+
"Torso twist mechanism functional",
|
|
2498
|
+
"Sourced from original Tokyo collector",
|
|
2499
|
+
],
|
|
2500
|
+
shippingInfo: "Individually bubble-wrapped in foam-lined rigid mailer. Insured. 4–6 business days.",
|
|
2501
|
+
returnPolicy: "3-day return if misrepresented. Detailed photos taken before shipping.",
|
|
2502
|
+
insurance: true,
|
|
2503
|
+
insuranceCost: 10000,
|
|
2504
|
+
allowOffers: true,
|
|
2505
|
+
minOfferPercent: 88,
|
|
2506
|
+
createdAt: daysAgo(16),
|
|
2507
|
+
updatedAt: daysAgo(1),
|
|
2508
|
+
},
|
|
2509
|
+
// 50. Pokémon WOTC Jungle Set Vaporeon Holo NM
|
|
2510
|
+
{
|
|
2511
|
+
id: "product-vintage-pokemon-jungle-vaporeon-holo",
|
|
2512
|
+
slug: "product-vintage-pokemon-jungle-vaporeon-holo",
|
|
2513
|
+
title: "Pokémon WOTC Jungle Set: Vaporeon #12/64 Holo Rare — Near Mint Raw",
|
|
2514
|
+
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.",
|
|
2515
|
+
category: "category-vintage-tcg",
|
|
2516
|
+
categoryName: "Vintage TCG",
|
|
2517
|
+
brand: "brand-pokemon-company",
|
|
2518
|
+
price: 89900,
|
|
2519
|
+
currency: "INR",
|
|
2520
|
+
stockQuantity: 1,
|
|
2521
|
+
availableQuantity: 1,
|
|
2522
|
+
mainImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
2523
|
+
images: [
|
|
2524
|
+
"https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
2525
|
+
"https://images.unsplash.com/photo-1578301978162-7aae4d755744?w=800&h=800&fit=crop",
|
|
2526
|
+
],
|
|
2527
|
+
status: "published",
|
|
2528
|
+
storeName: "Vintage Vault",
|
|
2529
|
+
storeId: "store-vintage-vault",
|
|
2530
|
+
featured: false,
|
|
2531
|
+
isAuction: false,
|
|
2532
|
+
isPreOrder: false,
|
|
2533
|
+
isPromoted: false,
|
|
2534
|
+
tags: ["pokemon", "jungle-set", "vaporeon", "holo-rare", "wotc", "raw", "vintage", "near-mint"],
|
|
2535
|
+
condition: "used",
|
|
2536
|
+
specifications: [
|
|
2537
|
+
{ name: "Card", value: "Vaporeon #12/64 — Jungle Set Holo" },
|
|
2538
|
+
{ name: "Era", value: "WOTC (1999)" },
|
|
2539
|
+
{ name: "Condition", value: "Near Mint (NM) raw" },
|
|
2540
|
+
{ name: "Centering", value: "55/45 front and back" },
|
|
2541
|
+
{ name: "Grade Estimate", value: "PSA 8–9 range" },
|
|
2542
|
+
],
|
|
2543
|
+
features: [
|
|
2544
|
+
"WOTC Jungle era — late 1990s original print",
|
|
2545
|
+
"Near Mint condition — sharp corners, excellent holo",
|
|
2546
|
+
"Excellent centering for WOTC era",
|
|
2547
|
+
"Stored in hard sleeve since acquisition",
|
|
2548
|
+
"Estate sale provenance — Kolkata collection",
|
|
2549
|
+
],
|
|
2550
|
+
shippingInfo: "Shipped in toploader + penny sleeve inside rigid mailer. 4–6 business days.",
|
|
2551
|
+
returnPolicy: "3-day return if card is proven counterfeit.",
|
|
2552
|
+
allowOffers: true,
|
|
2553
|
+
minOfferPercent: 87,
|
|
2554
|
+
createdAt: daysAgo(10),
|
|
2555
|
+
updatedAt: daysAgo(1),
|
|
2556
|
+
},
|
|
2557
|
+
// ── Store: Pokémon Palace — products 51–58 ──────────────────────────────────
|
|
2558
|
+
{
|
|
2559
|
+
id: "product-pokemon-journey-together-etb",
|
|
2560
|
+
slug: "product-pokemon-journey-together-etb",
|
|
2561
|
+
title: "Pokémon TCG: Scarlet & Violet — Journey Together Elite Trainer Box",
|
|
2562
|
+
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.",
|
|
2563
|
+
category: "category-pokemon-tcg",
|
|
2564
|
+
categoryName: "Pokémon TCG",
|
|
2565
|
+
brand: "brand-pokemon-company",
|
|
2566
|
+
price: 479900,
|
|
2567
|
+
currency: "INR",
|
|
2568
|
+
stockQuantity: 12,
|
|
2569
|
+
availableQuantity: 12,
|
|
2570
|
+
mainImage: "https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
2571
|
+
images: [
|
|
2572
|
+
"https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
2573
|
+
"https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
2574
|
+
],
|
|
2575
|
+
status: "published",
|
|
2576
|
+
storeName: "Pokémon Palace",
|
|
2577
|
+
storeId: "store-pokemon-palace",
|
|
2578
|
+
featured: false,
|
|
2579
|
+
isAuction: false,
|
|
2580
|
+
isPreOrder: false,
|
|
2581
|
+
isPromoted: false,
|
|
2582
|
+
tags: ["pokemon", "etb", "journey-together", "scarlet-violet", "sealed"],
|
|
2583
|
+
condition: "new",
|
|
2584
|
+
specifications: [{ name: "Set", value: "Journey Together" }, { name: "Language", value: "English" }],
|
|
2585
|
+
features: ["9 booster packs", "Official collector's box", "65 card sleeves", "Energy cards included"],
|
|
2586
|
+
shippingInfo: "Bubble-wrapped and dispatched in 2 business days. Pan-India delivery.",
|
|
2587
|
+
returnPolicy: "Return within 7 days if seal is intact.",
|
|
2588
|
+
allowOffers: false,
|
|
2589
|
+
createdAt: daysAgo(5),
|
|
2590
|
+
updatedAt: daysAgo(1),
|
|
2591
|
+
},
|
|
2592
|
+
{
|
|
2593
|
+
id: "product-pokemon-surging-sparks-booster",
|
|
2594
|
+
slug: "product-pokemon-surging-sparks-booster",
|
|
2595
|
+
title: "Pokémon TCG: Scarlet & Violet — Surging Sparks Booster Box (36 Packs)",
|
|
2596
|
+
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.",
|
|
2597
|
+
category: "category-pokemon-tcg",
|
|
2598
|
+
categoryName: "Pokémon TCG",
|
|
2599
|
+
brand: "brand-pokemon-company",
|
|
2600
|
+
price: 1299900,
|
|
2601
|
+
currency: "INR",
|
|
2602
|
+
stockQuantity: 4,
|
|
2603
|
+
availableQuantity: 4,
|
|
2604
|
+
mainImage: "https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
|
|
2605
|
+
images: [
|
|
2606
|
+
"https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
|
|
2607
|
+
"https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
2608
|
+
],
|
|
2609
|
+
status: "published",
|
|
2610
|
+
storeName: "Pokémon Palace",
|
|
2611
|
+
storeId: "store-pokemon-palace",
|
|
2612
|
+
featured: true,
|
|
2613
|
+
isAuction: false,
|
|
2614
|
+
isPreOrder: false,
|
|
2615
|
+
isPromoted: true,
|
|
2616
|
+
tags: ["pokemon", "booster-box", "surging-sparks", "scarlet-violet", "sealed", "investment"],
|
|
2617
|
+
condition: "new",
|
|
2618
|
+
specifications: [{ name: "Packs per Box", value: "36" }, { name: "Set", value: "Surging Sparks" }],
|
|
2619
|
+
features: ["36 booster packs per box", "Factory sealed", "English edition", "Investment-grade pull rates"],
|
|
2620
|
+
shippingInfo: "Shipped in double-wall box with corner protection. 3–5 days.",
|
|
2621
|
+
returnPolicy: "No returns on sealed product unless box is damaged in transit.",
|
|
2622
|
+
allowOffers: true,
|
|
2623
|
+
minOfferPercent: 92,
|
|
2624
|
+
createdAt: daysAgo(7),
|
|
2625
|
+
updatedAt: daysAgo(1),
|
|
2626
|
+
},
|
|
2627
|
+
{
|
|
2628
|
+
id: "product-pokemon-charizard-ex-sar-sv",
|
|
2629
|
+
slug: "product-pokemon-charizard-ex-sar-sv",
|
|
2630
|
+
title: "Pokémon TCG: Charizard ex — Special Illustration Rare (SV3 Obsidian Flames)",
|
|
2631
|
+
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.",
|
|
2632
|
+
category: "category-pokemon-tcg",
|
|
2633
|
+
categoryName: "Pokémon TCG",
|
|
2634
|
+
brand: "brand-pokemon-company",
|
|
2635
|
+
price: 349900,
|
|
2636
|
+
currency: "INR",
|
|
2637
|
+
stockQuantity: 3,
|
|
2638
|
+
availableQuantity: 3,
|
|
2639
|
+
mainImage: "https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
2640
|
+
images: [
|
|
2641
|
+
"https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
2642
|
+
],
|
|
2643
|
+
status: "published",
|
|
2644
|
+
storeName: "Pokémon Palace",
|
|
2645
|
+
storeId: "store-pokemon-palace",
|
|
2646
|
+
featured: true,
|
|
2647
|
+
isAuction: false,
|
|
2648
|
+
isPreOrder: false,
|
|
2649
|
+
isPromoted: true,
|
|
2650
|
+
tags: ["pokemon", "charizard", "special-illustration-rare", "sar", "single-card", "obsidian-flames"],
|
|
2651
|
+
condition: "used",
|
|
2652
|
+
specifications: [{ name: "Card Number", value: "228/197" }, { name: "Rarity", value: "Special Illustration Rare" }, { name: "Condition", value: "NM/M" }],
|
|
2653
|
+
features: ["Genuine Special Illustration Rare", "NM/M condition", "Stored in toploader", "Authenticity guaranteed"],
|
|
2654
|
+
shippingInfo: "Shipped in rigid mailer with double toploader protection.",
|
|
2655
|
+
returnPolicy: "3-day return window if card is not as described.",
|
|
2656
|
+
allowOffers: true,
|
|
2657
|
+
minOfferPercent: 90,
|
|
2658
|
+
createdAt: daysAgo(14),
|
|
2659
|
+
updatedAt: daysAgo(2),
|
|
2660
|
+
},
|
|
2661
|
+
{
|
|
2662
|
+
id: "product-pokemon-pikachu-ex-sar-sv",
|
|
2663
|
+
slug: "product-pokemon-pikachu-ex-sar-sv",
|
|
2664
|
+
title: "Pokémon TCG: Pikachu ex — Special Illustration Rare (SV6.5 Shrouded Fable)",
|
|
2665
|
+
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.",
|
|
2666
|
+
category: "category-pokemon-tcg",
|
|
2667
|
+
categoryName: "Pokémon TCG",
|
|
2668
|
+
brand: "brand-pokemon-company",
|
|
2669
|
+
price: 199900,
|
|
2670
|
+
currency: "INR",
|
|
2671
|
+
stockQuantity: 5,
|
|
2672
|
+
availableQuantity: 5,
|
|
2673
|
+
mainImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
2674
|
+
images: [
|
|
2675
|
+
"https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
2676
|
+
],
|
|
2677
|
+
status: "published",
|
|
2678
|
+
storeName: "Pokémon Palace",
|
|
2679
|
+
storeId: "store-pokemon-palace",
|
|
2680
|
+
featured: false,
|
|
2681
|
+
isAuction: false,
|
|
2682
|
+
isPreOrder: false,
|
|
2683
|
+
isPromoted: false,
|
|
2684
|
+
tags: ["pokemon", "pikachu", "special-illustration-rare", "shrouded-fable", "single-card"],
|
|
2685
|
+
condition: "new",
|
|
2686
|
+
specifications: [{ name: "Rarity", value: "Special Illustration Rare" }, { name: "Condition", value: "Mint" }],
|
|
2687
|
+
features: ["Pack-fresh Mint condition", "Genuine SIR", "Stored in sleeve immediately after pull"],
|
|
2688
|
+
shippingInfo: "Penny sleeve + toploader + rigid mailer. 2–4 business days.",
|
|
2689
|
+
returnPolicy: "No returns on single cards unless wrong card is sent.",
|
|
2690
|
+
allowOffers: true,
|
|
2691
|
+
minOfferPercent: 88,
|
|
2692
|
+
createdAt: daysAgo(9),
|
|
2693
|
+
updatedAt: daysAgo(1),
|
|
2694
|
+
},
|
|
2695
|
+
{
|
|
2696
|
+
id: "product-pokemon-paldea-evolved-etb",
|
|
2697
|
+
slug: "product-pokemon-paldea-evolved-etb",
|
|
2698
|
+
title: "Pokémon TCG: Scarlet & Violet — Paldea Evolved Elite Trainer Box",
|
|
2699
|
+
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.",
|
|
2700
|
+
category: "category-pokemon-tcg",
|
|
2701
|
+
categoryName: "Pokémon TCG",
|
|
2702
|
+
brand: "brand-pokemon-company",
|
|
2703
|
+
price: 429900,
|
|
2704
|
+
currency: "INR",
|
|
2705
|
+
stockQuantity: 8,
|
|
2706
|
+
availableQuantity: 8,
|
|
2707
|
+
mainImage: "https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
|
|
2708
|
+
images: [
|
|
2709
|
+
"https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
|
|
2710
|
+
"https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
2711
|
+
],
|
|
2712
|
+
status: "published",
|
|
2713
|
+
storeName: "Pokémon Palace",
|
|
2714
|
+
storeId: "store-pokemon-palace",
|
|
2715
|
+
featured: false,
|
|
2716
|
+
isAuction: false,
|
|
2717
|
+
isPreOrder: false,
|
|
2718
|
+
isPromoted: false,
|
|
2719
|
+
tags: ["pokemon", "etb", "paldea-evolved", "scarlet-violet", "sealed"],
|
|
2720
|
+
condition: "new",
|
|
2721
|
+
specifications: [{ name: "Set", value: "Paldea Evolved" }, { name: "Language", value: "English" }],
|
|
2722
|
+
features: ["9 Paldea Evolved booster packs", "Iono sleeve art", "Factory sealed"],
|
|
2723
|
+
shippingInfo: "Bubble-wrapped and dispatched same day. Pan-India delivery in 3–5 days.",
|
|
2724
|
+
returnPolicy: "Return if sealed and undamaged within 7 days.",
|
|
2725
|
+
allowOffers: false,
|
|
2726
|
+
createdAt: daysAgo(20),
|
|
2727
|
+
updatedAt: daysAgo(3),
|
|
2728
|
+
},
|
|
2729
|
+
{
|
|
2730
|
+
id: "product-pokemon-obsidian-flames-etb",
|
|
2731
|
+
slug: "product-pokemon-obsidian-flames-etb",
|
|
2732
|
+
title: "Pokémon TCG: Scarlet & Violet — Obsidian Flames Elite Trainer Box",
|
|
2733
|
+
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.",
|
|
2734
|
+
category: "category-pokemon-tcg",
|
|
2735
|
+
categoryName: "Pokémon TCG",
|
|
2736
|
+
brand: "brand-pokemon-company",
|
|
2737
|
+
price: 449900,
|
|
2738
|
+
currency: "INR",
|
|
2739
|
+
stockQuantity: 6,
|
|
2740
|
+
availableQuantity: 6,
|
|
2741
|
+
mainImage: "https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
2742
|
+
images: [
|
|
2743
|
+
"https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
2744
|
+
],
|
|
2745
|
+
status: "published",
|
|
2746
|
+
storeName: "Pokémon Palace",
|
|
2747
|
+
storeId: "store-pokemon-palace",
|
|
2748
|
+
featured: false,
|
|
2749
|
+
isAuction: false,
|
|
2750
|
+
isPreOrder: false,
|
|
2751
|
+
isPromoted: false,
|
|
2752
|
+
tags: ["pokemon", "etb", "obsidian-flames", "scarlet-violet", "sealed", "charizard"],
|
|
2753
|
+
condition: "new",
|
|
2754
|
+
specifications: [{ name: "Set", value: "Obsidian Flames" }],
|
|
2755
|
+
features: ["9 Obsidian Flames booster packs", "Charizard sleeve art", "Factory sealed"],
|
|
2756
|
+
shippingInfo: "2-business-day dispatch. Arrives in 3–5 days nationwide.",
|
|
2757
|
+
returnPolicy: "Sealed product return within 7 days.",
|
|
2758
|
+
allowOffers: false,
|
|
2759
|
+
createdAt: daysAgo(25),
|
|
2760
|
+
updatedAt: daysAgo(4),
|
|
2761
|
+
},
|
|
2762
|
+
{
|
|
2763
|
+
id: "product-pokemon-151-etb",
|
|
2764
|
+
slug: "product-pokemon-151-etb",
|
|
2765
|
+
title: "Pokémon TCG: Scarlet & Violet — 151 Elite Trainer Box",
|
|
2766
|
+
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.",
|
|
2767
|
+
category: "category-pokemon-tcg",
|
|
2768
|
+
categoryName: "Pokémon TCG",
|
|
2769
|
+
brand: "brand-pokemon-company",
|
|
2770
|
+
price: 549900,
|
|
2771
|
+
currency: "INR",
|
|
2772
|
+
stockQuantity: 5,
|
|
2773
|
+
availableQuantity: 5,
|
|
2774
|
+
mainImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
2775
|
+
images: [
|
|
2776
|
+
"https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
2777
|
+
"https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
|
|
2778
|
+
],
|
|
2779
|
+
status: "published",
|
|
2780
|
+
storeName: "Pokémon Palace",
|
|
2781
|
+
storeId: "store-pokemon-palace",
|
|
2782
|
+
featured: true,
|
|
2783
|
+
isAuction: false,
|
|
2784
|
+
isPreOrder: false,
|
|
2785
|
+
isPromoted: true,
|
|
2786
|
+
tags: ["pokemon", "etb", "151", "scarlet-violet", "sealed", "nostalgic"],
|
|
2787
|
+
condition: "new",
|
|
2788
|
+
specifications: [{ name: "Set", value: "151" }, { name: "Language", value: "English" }],
|
|
2789
|
+
features: ["9 SV—151 booster packs", "Mew ex sleeve art", "Factory sealed", "Nostalgic original 151 theme"],
|
|
2790
|
+
shippingInfo: "Dispatched within 1 business day. Express shipping available.",
|
|
2791
|
+
returnPolicy: "7-day return if seal is intact.",
|
|
2792
|
+
allowOffers: true,
|
|
2793
|
+
minOfferPercent: 93,
|
|
2794
|
+
createdAt: daysAgo(3),
|
|
2795
|
+
updatedAt: daysAgo(1),
|
|
2796
|
+
},
|
|
2797
|
+
{
|
|
2798
|
+
id: "product-pokemon-mewtwo-ex-sar-sv",
|
|
2799
|
+
slug: "product-pokemon-mewtwo-ex-sar-sv",
|
|
2800
|
+
title: "Pokémon TCG: Mewtwo ex — Special Illustration Rare (SV — 151)",
|
|
2801
|
+
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.",
|
|
2802
|
+
category: "category-pokemon-tcg",
|
|
2803
|
+
categoryName: "Pokémon TCG",
|
|
2804
|
+
brand: "brand-pokemon-company",
|
|
2805
|
+
price: 279900,
|
|
2806
|
+
currency: "INR",
|
|
2807
|
+
stockQuantity: 2,
|
|
2808
|
+
availableQuantity: 2,
|
|
2809
|
+
mainImage: "https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
2810
|
+
images: [
|
|
2811
|
+
"https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
2812
|
+
],
|
|
2813
|
+
status: "published",
|
|
2814
|
+
storeName: "Pokémon Palace",
|
|
2815
|
+
storeId: "store-pokemon-palace",
|
|
2816
|
+
featured: false,
|
|
2817
|
+
isAuction: false,
|
|
2818
|
+
isPreOrder: false,
|
|
2819
|
+
isPromoted: false,
|
|
2820
|
+
tags: ["pokemon", "mewtwo", "sar", "special-illustration-rare", "151", "single-card"],
|
|
2821
|
+
condition: "used",
|
|
2822
|
+
specifications: [{ name: "Rarity", value: "Special Illustration Rare" }, { name: "Condition", value: "NM" }, { name: "Card Number", value: "205/165" }],
|
|
2823
|
+
features: ["Genuine 151 SIR", "NM condition", "Toploader protected"],
|
|
2824
|
+
shippingInfo: "Penny sleeve + toploader + bubble wrap inside rigid mailer.",
|
|
2825
|
+
returnPolicy: "3-day return if card is not as described.",
|
|
2826
|
+
allowOffers: true,
|
|
2827
|
+
minOfferPercent: 89,
|
|
2828
|
+
createdAt: daysAgo(6),
|
|
2829
|
+
updatedAt: daysAgo(1),
|
|
2830
|
+
},
|
|
2831
|
+
// ── Store: CardGame Hub — products 59–66 ─────────────────────────────────────
|
|
2832
|
+
{
|
|
2833
|
+
id: "product-onepiece-op05-booster-box",
|
|
2834
|
+
slug: "product-onepiece-op05-booster-box",
|
|
2835
|
+
title: "One Piece Card Game: OP-05 Awakening of the New Era Booster Box",
|
|
2836
|
+
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.",
|
|
2837
|
+
category: "category-sealed-product",
|
|
2838
|
+
categoryName: "Sealed Product",
|
|
2839
|
+
brand: "brand-bandai",
|
|
2840
|
+
price: 499900,
|
|
2841
|
+
currency: "INR",
|
|
2842
|
+
stockQuantity: 6,
|
|
2843
|
+
availableQuantity: 6,
|
|
2844
|
+
mainImage: "https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
|
|
2845
|
+
images: [
|
|
2846
|
+
"https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
|
|
2847
|
+
],
|
|
2848
|
+
status: "published",
|
|
2849
|
+
storeName: "CardGame Hub",
|
|
2850
|
+
storeId: "store-cardgame-hub",
|
|
2851
|
+
featured: false,
|
|
2852
|
+
isAuction: false,
|
|
2853
|
+
isPreOrder: false,
|
|
2854
|
+
isPromoted: false,
|
|
2855
|
+
tags: ["one-piece", "op-05", "booster-box", "sealed", "bandai"],
|
|
2856
|
+
condition: "new",
|
|
2857
|
+
specifications: [{ name: "Set", value: "OP-05 Awakening of the New Era" }, { name: "Packs per Box", value: "24" }, { name: "Language", value: "English" }],
|
|
2858
|
+
features: ["24 booster packs per box", "Factory sealed", "English edition", "Features Supernovas leaders"],
|
|
2859
|
+
shippingInfo: "Sealed in bubble wrap and rigid box. Dispatched in 2 business days.",
|
|
2860
|
+
returnPolicy: "No returns on sealed product unless damaged in transit.",
|
|
2861
|
+
allowOffers: true,
|
|
2862
|
+
minOfferPercent: 90,
|
|
2863
|
+
createdAt: daysAgo(8),
|
|
2864
|
+
updatedAt: daysAgo(1),
|
|
2865
|
+
},
|
|
2866
|
+
{
|
|
2867
|
+
id: "product-yugioh-25th-anniversary-tin",
|
|
2868
|
+
slug: "product-yugioh-25th-anniversary-tin",
|
|
2869
|
+
title: "Yu-Gi-Oh! 25th Anniversary Tin: Dueling Heroes (Mega-Pack Edition)",
|
|
2870
|
+
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.",
|
|
2871
|
+
category: "category-sealed-product",
|
|
2872
|
+
categoryName: "Sealed Product",
|
|
2873
|
+
brand: "brand-konami",
|
|
2874
|
+
price: 249900,
|
|
2875
|
+
currency: "INR",
|
|
2876
|
+
stockQuantity: 10,
|
|
2877
|
+
availableQuantity: 10,
|
|
2878
|
+
mainImage: "https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
|
|
2879
|
+
images: [
|
|
2880
|
+
"https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
|
|
2881
|
+
],
|
|
2882
|
+
status: "published",
|
|
2883
|
+
storeName: "CardGame Hub",
|
|
2884
|
+
storeId: "store-cardgame-hub",
|
|
2885
|
+
featured: false,
|
|
2886
|
+
isAuction: false,
|
|
2887
|
+
isPreOrder: false,
|
|
2888
|
+
isPromoted: false,
|
|
2889
|
+
tags: ["yugioh", "25th-anniversary", "tin", "sealed", "konami", "collector"],
|
|
2890
|
+
condition: "new",
|
|
2891
|
+
specifications: [{ name: "Set", value: "25th Anniversary Tin" }, { name: "Language", value: "English" }],
|
|
2892
|
+
features: ["1 guaranteed Ultra Rare", "3 Mega-Packs inside", "Premium collector's tin", "25th anniversary design"],
|
|
2893
|
+
shippingInfo: "Tin shipped in protective outer box. 3–5 business days.",
|
|
2894
|
+
returnPolicy: "7-day return if tin is factory sealed.",
|
|
2895
|
+
allowOffers: false,
|
|
2896
|
+
createdAt: daysAgo(12),
|
|
2897
|
+
updatedAt: daysAgo(2),
|
|
2898
|
+
},
|
|
2899
|
+
{
|
|
2900
|
+
id: "product-onepiece-op06-booster-box",
|
|
2901
|
+
slug: "product-onepiece-op06-booster-box",
|
|
2902
|
+
title: "One Piece Card Game: OP-06 Wings of the Captain Booster Box",
|
|
2903
|
+
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.",
|
|
2904
|
+
category: "category-sealed-product",
|
|
2905
|
+
categoryName: "Sealed Product",
|
|
2906
|
+
brand: "brand-bandai",
|
|
2907
|
+
price: 549900,
|
|
2908
|
+
currency: "INR",
|
|
2909
|
+
stockQuantity: 4,
|
|
2910
|
+
availableQuantity: 4,
|
|
2911
|
+
mainImage: "https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
2912
|
+
images: [
|
|
2913
|
+
"https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
2914
|
+
],
|
|
2915
|
+
status: "published",
|
|
2916
|
+
storeName: "CardGame Hub",
|
|
2917
|
+
storeId: "store-cardgame-hub",
|
|
2918
|
+
featured: true,
|
|
2919
|
+
isAuction: false,
|
|
2920
|
+
isPreOrder: false,
|
|
2921
|
+
isPromoted: true,
|
|
2922
|
+
tags: ["one-piece", "op-06", "booster-box", "sealed", "bandai", "whitebeard"],
|
|
2923
|
+
condition: "new",
|
|
2924
|
+
specifications: [{ name: "Set", value: "OP-06 Wings of the Captain" }, { name: "Packs per Box", value: "24" }],
|
|
2925
|
+
features: ["24 booster packs", "Factory sealed", "Competitive Whitebeard meta leader set"],
|
|
2926
|
+
shippingInfo: "Rigid outer mailer with bubble wrap. 2–4 business days.",
|
|
2927
|
+
returnPolicy: "No returns on sealed product.",
|
|
2928
|
+
allowOffers: false,
|
|
2929
|
+
createdAt: daysAgo(4),
|
|
2930
|
+
updatedAt: daysAgo(1),
|
|
2931
|
+
},
|
|
2932
|
+
{
|
|
2933
|
+
id: "product-mtg-duskmourn-booster-box",
|
|
2934
|
+
slug: "product-mtg-duskmourn-booster-box",
|
|
2935
|
+
title: "Magic: The Gathering — Duskmourn: House of Horror Play Booster Box",
|
|
2936
|
+
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.",
|
|
2937
|
+
category: "category-sealed-product",
|
|
2938
|
+
categoryName: "Sealed Product",
|
|
2939
|
+
brand: "brand-hasbro",
|
|
2940
|
+
price: 599900,
|
|
2941
|
+
currency: "INR",
|
|
2942
|
+
stockQuantity: 5,
|
|
2943
|
+
availableQuantity: 5,
|
|
2944
|
+
mainImage: "https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
|
|
2945
|
+
images: [
|
|
2946
|
+
"https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
|
|
2947
|
+
],
|
|
2948
|
+
status: "published",
|
|
2949
|
+
storeName: "CardGame Hub",
|
|
2950
|
+
storeId: "store-cardgame-hub",
|
|
2951
|
+
featured: false,
|
|
2952
|
+
isAuction: false,
|
|
2953
|
+
isPreOrder: false,
|
|
2954
|
+
isPromoted: false,
|
|
2955
|
+
tags: ["magic-the-gathering", "mtg", "duskmourn", "booster-box", "sealed", "hasbro"],
|
|
2956
|
+
condition: "new",
|
|
2957
|
+
specifications: [{ name: "Set", value: "Duskmourn: House of Horror" }, { name: "Packs per Box", value: "36" }],
|
|
2958
|
+
features: ["36 Play Boosters per box", "Factory sealed", "Horror-themed set", "English edition"],
|
|
2959
|
+
shippingInfo: "Double-wall box shipment. 3–5 business days.",
|
|
2960
|
+
returnPolicy: "No returns once opened.",
|
|
2961
|
+
allowOffers: true,
|
|
2962
|
+
minOfferPercent: 91,
|
|
2963
|
+
createdAt: daysAgo(11),
|
|
2964
|
+
updatedAt: daysAgo(2),
|
|
2965
|
+
},
|
|
2966
|
+
{
|
|
2967
|
+
id: "product-onepiece-op03-booster-box",
|
|
2968
|
+
slug: "product-onepiece-op03-booster-box",
|
|
2969
|
+
title: "One Piece Card Game: OP-03 Pillars of Strength Booster Box",
|
|
2970
|
+
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.",
|
|
2971
|
+
category: "category-sealed-product",
|
|
2972
|
+
categoryName: "Sealed Product",
|
|
2973
|
+
brand: "brand-bandai",
|
|
2974
|
+
price: 599900,
|
|
2975
|
+
currency: "INR",
|
|
2976
|
+
stockQuantity: 3,
|
|
2977
|
+
availableQuantity: 3,
|
|
2978
|
+
mainImage: "https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
2979
|
+
images: [
|
|
2980
|
+
"https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
2981
|
+
],
|
|
2982
|
+
status: "published",
|
|
2983
|
+
storeName: "CardGame Hub",
|
|
2984
|
+
storeId: "store-cardgame-hub",
|
|
2985
|
+
featured: false,
|
|
2986
|
+
isAuction: false,
|
|
2987
|
+
isPreOrder: false,
|
|
2988
|
+
isPromoted: false,
|
|
2989
|
+
tags: ["one-piece", "op-03", "pillars-of-strength", "booster-box", "sealed", "kaido"],
|
|
2990
|
+
condition: "new",
|
|
2991
|
+
specifications: [{ name: "Set", value: "OP-03 Pillars of Strength" }, { name: "Packs per Box", value: "24" }],
|
|
2992
|
+
features: ["24 booster packs", "Factory sealed", "Features Kaido & Yamato leaders"],
|
|
2993
|
+
shippingInfo: "Shipped in protective outer mailer. 3–5 business days.",
|
|
2994
|
+
returnPolicy: "No returns on sealed product.",
|
|
2995
|
+
allowOffers: true,
|
|
2996
|
+
minOfferPercent: 90,
|
|
2997
|
+
createdAt: daysAgo(18),
|
|
2998
|
+
updatedAt: daysAgo(3),
|
|
2999
|
+
},
|
|
3000
|
+
{
|
|
3001
|
+
id: "product-yugioh-blue-eyes-lob-nm",
|
|
3002
|
+
slug: "product-yugioh-blue-eyes-lob-nm",
|
|
3003
|
+
title: "Yu-Gi-Oh! Blue-Eyes White Dragon — LOB 1st Edition (Near Mint)",
|
|
3004
|
+
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.",
|
|
3005
|
+
category: "category-vintage-tcg",
|
|
3006
|
+
categoryName: "Vintage TCG",
|
|
3007
|
+
brand: "brand-konami",
|
|
3008
|
+
price: 299900,
|
|
3009
|
+
currency: "INR",
|
|
3010
|
+
stockQuantity: 1,
|
|
3011
|
+
availableQuantity: 1,
|
|
3012
|
+
mainImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
3013
|
+
images: [
|
|
3014
|
+
"https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
3015
|
+
],
|
|
3016
|
+
status: "published",
|
|
3017
|
+
storeName: "CardGame Hub",
|
|
3018
|
+
storeId: "store-cardgame-hub",
|
|
3019
|
+
featured: true,
|
|
3020
|
+
isAuction: false,
|
|
3021
|
+
isPreOrder: false,
|
|
3022
|
+
isPromoted: true,
|
|
3023
|
+
tags: ["yugioh", "blue-eyes-white-dragon", "lob", "1st-edition", "vintage", "single-card", "nm"],
|
|
3024
|
+
condition: "used",
|
|
3025
|
+
specifications: [{ name: "Set", value: "Legend of Blue Eyes (LOB)" }, { name: "Edition", value: "1st Edition" }, { name: "Condition", value: "Near Mint" }],
|
|
3026
|
+
features: ["1st Edition print", "Near Mint condition", "WOTC-era equivalent for YGO", "PSA grading candidate"],
|
|
3027
|
+
shippingInfo: "Rigid mailer with double toploader. Insured shipping available.",
|
|
3028
|
+
returnPolicy: "3-day return if card is not as described.",
|
|
3029
|
+
allowOffers: true,
|
|
3030
|
+
minOfferPercent: 88,
|
|
3031
|
+
createdAt: daysAgo(22),
|
|
3032
|
+
updatedAt: daysAgo(4),
|
|
3033
|
+
},
|
|
3034
|
+
{
|
|
3035
|
+
id: "product-yugioh-dark-magician-lob-psa9",
|
|
3036
|
+
slug: "product-yugioh-dark-magician-lob-psa9",
|
|
3037
|
+
title: "Yu-Gi-Oh! Dark Magician — LOB 1st Edition PSA 9 (MINT)",
|
|
3038
|
+
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.",
|
|
3039
|
+
category: "category-vintage-tcg",
|
|
3040
|
+
categoryName: "Vintage TCG",
|
|
3041
|
+
brand: "brand-konami",
|
|
3042
|
+
price: 899900,
|
|
3043
|
+
currency: "INR",
|
|
3044
|
+
stockQuantity: 1,
|
|
3045
|
+
availableQuantity: 1,
|
|
3046
|
+
mainImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
3047
|
+
images: [
|
|
3048
|
+
"https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
3049
|
+
],
|
|
3050
|
+
status: "published",
|
|
3051
|
+
storeName: "CardGame Hub",
|
|
3052
|
+
storeId: "store-cardgame-hub",
|
|
3053
|
+
featured: true,
|
|
3054
|
+
isAuction: false,
|
|
3055
|
+
isPreOrder: false,
|
|
3056
|
+
isPromoted: true,
|
|
3057
|
+
tags: ["yugioh", "dark-magician", "lob", "1st-edition", "psa-9", "graded", "vintage", "single-card"],
|
|
3058
|
+
condition: "graded",
|
|
3059
|
+
specifications: [{ name: "Grade", value: "PSA 9 MINT" }, { name: "Set", value: "LOB" }, { name: "Edition", value: "1st Edition" }, { name: "Cert Number", value: "XXXXXXXXX" }],
|
|
3060
|
+
features: ["PSA 9 MINT slab", "1st Edition Legend of Blue Eyes", "Authentic PSA certification", "Investment-grade collectible"],
|
|
3061
|
+
shippingInfo: "PSA slab shipped in foam-padded mailer with insurance. 3–5 days.",
|
|
3062
|
+
returnPolicy: "No returns on graded cards.",
|
|
3063
|
+
allowOffers: true,
|
|
3064
|
+
minOfferPercent: 94,
|
|
3065
|
+
createdAt: daysAgo(30),
|
|
3066
|
+
updatedAt: daysAgo(5),
|
|
3067
|
+
},
|
|
3068
|
+
// ── Store: Diecast Depot — products 67–74 ────────────────────────────────────
|
|
3069
|
+
{
|
|
3070
|
+
id: "product-hot-wheels-car-culture-german",
|
|
3071
|
+
slug: "product-hot-wheels-car-culture-german",
|
|
3072
|
+
title: "Hot Wheels Car Culture: German Cars & Coffee (5-Car Set)",
|
|
3073
|
+
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.",
|
|
3074
|
+
category: "category-hot-wheels",
|
|
3075
|
+
categoryName: "Hot Wheels",
|
|
3076
|
+
brand: "brand-hot-wheels",
|
|
3077
|
+
price: 199900,
|
|
3078
|
+
currency: "INR",
|
|
3079
|
+
stockQuantity: 8,
|
|
3080
|
+
availableQuantity: 8,
|
|
3081
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3082
|
+
images: [
|
|
3083
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3084
|
+
],
|
|
3085
|
+
status: "published",
|
|
3086
|
+
storeName: "Diecast Depot",
|
|
3087
|
+
storeId: "store-diecast-depot",
|
|
3088
|
+
featured: false,
|
|
3089
|
+
isAuction: false,
|
|
3090
|
+
isPreOrder: false,
|
|
3091
|
+
isPromoted: false,
|
|
3092
|
+
tags: ["hot-wheels", "car-culture", "german", "real-riders", "premium", "set"],
|
|
3093
|
+
condition: "new",
|
|
3094
|
+
specifications: [{ name: "Scale", value: "1:64" }, { name: "Cars in Set", value: "5" }, { name: "Tires", value: "Real Riders Rubber" }],
|
|
3095
|
+
features: ["5 premium German cars", "Real Riders rubber tyres", "Detailed die-cast construction", "Collector's card insert"],
|
|
3096
|
+
shippingInfo: "Sealed set shipped in padded box. 3–5 business days.",
|
|
3097
|
+
returnPolicy: "7-day return if factory sealed.",
|
|
3098
|
+
allowOffers: false,
|
|
3099
|
+
createdAt: daysAgo(7),
|
|
3100
|
+
updatedAt: daysAgo(1),
|
|
3101
|
+
},
|
|
3102
|
+
{
|
|
3103
|
+
id: "product-hot-wheels-rlc-porsche-918",
|
|
3104
|
+
slug: "product-hot-wheels-rlc-porsche-918",
|
|
3105
|
+
title: "Hot Wheels RLC Exclusive: Porsche 918 Spyder — Spectraflame White",
|
|
3106
|
+
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.",
|
|
3107
|
+
category: "category-hot-wheels",
|
|
3108
|
+
categoryName: "Hot Wheels",
|
|
3109
|
+
brand: "brand-hot-wheels",
|
|
3110
|
+
price: 349900,
|
|
3111
|
+
currency: "INR",
|
|
3112
|
+
stockQuantity: 2,
|
|
3113
|
+
availableQuantity: 2,
|
|
3114
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3115
|
+
images: [
|
|
3116
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3117
|
+
],
|
|
3118
|
+
status: "published",
|
|
3119
|
+
storeName: "Diecast Depot",
|
|
3120
|
+
storeId: "store-diecast-depot",
|
|
3121
|
+
featured: true,
|
|
3122
|
+
isAuction: false,
|
|
3123
|
+
isPreOrder: false,
|
|
3124
|
+
isPromoted: true,
|
|
3125
|
+
tags: ["hot-wheels", "rlc", "porsche", "918-spyder", "spectraflame", "limited", "real-riders"],
|
|
3126
|
+
condition: "new",
|
|
3127
|
+
specifications: [{ name: "Scale", value: "1:64" }, { name: "Series", value: "RLC Exclusive" }, { name: "Finish", value: "Spectraflame White" }],
|
|
3128
|
+
features: ["RLC Exclusive limited production", "Spectraflame paint finish", "Real Riders rubber tyres", "Numbered certificate"],
|
|
3129
|
+
shippingInfo: "Shipped in protective hard case. Tracked and insured. 3–5 days.",
|
|
3130
|
+
returnPolicy: "No returns on RLC exclusives.",
|
|
3131
|
+
allowOffers: true,
|
|
3132
|
+
minOfferPercent: 92,
|
|
3133
|
+
createdAt: daysAgo(14),
|
|
3134
|
+
updatedAt: daysAgo(2),
|
|
3135
|
+
},
|
|
3136
|
+
{
|
|
3137
|
+
id: "product-tomica-land-cruiser-300",
|
|
3138
|
+
slug: "product-tomica-land-cruiser-300",
|
|
3139
|
+
title: "Tomica: Toyota Land Cruiser 300 (No. 107) — Diecast 1:64",
|
|
3140
|
+
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.",
|
|
3141
|
+
category: "category-tomica",
|
|
3142
|
+
categoryName: "Tomica",
|
|
3143
|
+
brand: "brand-tomica",
|
|
3144
|
+
price: 59900,
|
|
3145
|
+
currency: "INR",
|
|
3146
|
+
stockQuantity: 20,
|
|
3147
|
+
availableQuantity: 20,
|
|
3148
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3149
|
+
images: [
|
|
3150
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3151
|
+
],
|
|
3152
|
+
status: "published",
|
|
3153
|
+
storeName: "Diecast Depot",
|
|
3154
|
+
storeId: "store-diecast-depot",
|
|
3155
|
+
featured: false,
|
|
3156
|
+
isAuction: false,
|
|
3157
|
+
isPreOrder: false,
|
|
3158
|
+
isPromoted: false,
|
|
3159
|
+
tags: ["tomica", "land-cruiser", "toyota", "1:64", "made-in-japan", "diecast"],
|
|
3160
|
+
condition: "new",
|
|
3161
|
+
specifications: [{ name: "Scale", value: "1:64" }, { name: "Tomica Number", value: "No. 107" }, { name: "Origin", value: "Made in Japan" }],
|
|
3162
|
+
features: ["Made in Japan", "Opening doors", "Faithful LC300 replica", "Original Tomica box"],
|
|
3163
|
+
shippingInfo: "Bubble-wrapped and dispatched in 1 business day.",
|
|
3164
|
+
returnPolicy: "7-day return if box is unopened.",
|
|
3165
|
+
allowOffers: false,
|
|
3166
|
+
createdAt: daysAgo(5),
|
|
3167
|
+
updatedAt: daysAgo(1),
|
|
3168
|
+
},
|
|
3169
|
+
{
|
|
3170
|
+
id: "product-tomica-civic-type-r-fl5",
|
|
3171
|
+
slug: "product-tomica-civic-type-r-fl5",
|
|
3172
|
+
title: "Tomica: Honda Civic Type R FL5 (No. 29) — Diecast 1:64",
|
|
3173
|
+
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.",
|
|
3174
|
+
category: "category-tomica",
|
|
3175
|
+
categoryName: "Tomica",
|
|
3176
|
+
brand: "brand-tomica",
|
|
3177
|
+
price: 64900,
|
|
3178
|
+
currency: "INR",
|
|
3179
|
+
stockQuantity: 15,
|
|
3180
|
+
availableQuantity: 15,
|
|
3181
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3182
|
+
images: [
|
|
3183
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3184
|
+
],
|
|
3185
|
+
status: "published",
|
|
3186
|
+
storeName: "Diecast Depot",
|
|
3187
|
+
storeId: "store-diecast-depot",
|
|
3188
|
+
featured: false,
|
|
3189
|
+
isAuction: false,
|
|
3190
|
+
isPreOrder: false,
|
|
3191
|
+
isPromoted: false,
|
|
3192
|
+
tags: ["tomica", "civic", "type-r", "fl5", "honda", "1:64", "diecast"],
|
|
3193
|
+
condition: "new",
|
|
3194
|
+
specifications: [{ name: "Scale", value: "1:64" }, { name: "Tomica Number", value: "No. 29" }, { name: "Color", value: "Championship White" }],
|
|
3195
|
+
features: ["Accurate FL5 body design", "Opening doors", "Championship White livery", "Original box"],
|
|
3196
|
+
shippingInfo: "1-day dispatch. Pan-India delivery in 3–5 days.",
|
|
3197
|
+
returnPolicy: "7-day return if unopened.",
|
|
3198
|
+
allowOffers: false,
|
|
3199
|
+
createdAt: daysAgo(9),
|
|
3200
|
+
updatedAt: daysAgo(1),
|
|
3201
|
+
},
|
|
3202
|
+
{
|
|
3203
|
+
id: "product-hot-wheels-ultra-hots-5pack",
|
|
3204
|
+
slug: "product-hot-wheels-ultra-hots-5pack",
|
|
3205
|
+
title: "Hot Wheels Ultra Hots 5-Car Gift Pack — Premium Retro Assortment",
|
|
3206
|
+
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.",
|
|
3207
|
+
category: "category-hot-wheels",
|
|
3208
|
+
categoryName: "Hot Wheels",
|
|
3209
|
+
brand: "brand-hot-wheels",
|
|
3210
|
+
price: 169900,
|
|
3211
|
+
currency: "INR",
|
|
3212
|
+
stockQuantity: 12,
|
|
3213
|
+
availableQuantity: 12,
|
|
3214
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3215
|
+
images: [
|
|
3216
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3217
|
+
],
|
|
3218
|
+
status: "published",
|
|
3219
|
+
storeName: "Diecast Depot",
|
|
3220
|
+
storeId: "store-diecast-depot",
|
|
3221
|
+
featured: false,
|
|
3222
|
+
isAuction: false,
|
|
3223
|
+
isPreOrder: false,
|
|
3224
|
+
isPromoted: false,
|
|
3225
|
+
tags: ["hot-wheels", "ultra-hots", "5-pack", "retro", "real-riders", "gift"],
|
|
3226
|
+
condition: "new",
|
|
3227
|
+
specifications: [{ name: "Scale", value: "1:64" }, { name: "Cars in Pack", value: "5" }],
|
|
3228
|
+
features: ["5 retro Ultra Hots cars", "Real Riders tyres", "Premium gift pack box", "Collector's display"],
|
|
3229
|
+
shippingInfo: "Gift pack shipped in protective outer mailer. 3–5 days.",
|
|
3230
|
+
returnPolicy: "7-day return if sealed.",
|
|
3231
|
+
allowOffers: false,
|
|
3232
|
+
createdAt: daysAgo(11),
|
|
3233
|
+
updatedAt: daysAgo(2),
|
|
3234
|
+
},
|
|
3235
|
+
{
|
|
3236
|
+
id: "product-matchbox-moving-parts-assortment",
|
|
3237
|
+
slug: "product-matchbox-moving-parts-assortment",
|
|
3238
|
+
title: "Matchbox Moving Parts 5-Car Assortment (2024 Edition)",
|
|
3239
|
+
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.",
|
|
3240
|
+
category: "category-hot-wheels",
|
|
3241
|
+
categoryName: "Hot Wheels",
|
|
3242
|
+
brand: "brand-matchbox",
|
|
3243
|
+
price: 149900,
|
|
3244
|
+
currency: "INR",
|
|
3245
|
+
stockQuantity: 10,
|
|
3246
|
+
availableQuantity: 10,
|
|
3247
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3248
|
+
images: [
|
|
3249
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3250
|
+
],
|
|
3251
|
+
status: "published",
|
|
3252
|
+
storeName: "Diecast Depot",
|
|
3253
|
+
storeId: "store-diecast-depot",
|
|
3254
|
+
featured: false,
|
|
3255
|
+
isAuction: false,
|
|
3256
|
+
isPreOrder: false,
|
|
3257
|
+
isPromoted: false,
|
|
3258
|
+
tags: ["matchbox", "moving-parts", "5-car", "diecast", "2024"],
|
|
3259
|
+
condition: "new",
|
|
3260
|
+
specifications: [{ name: "Scale", value: "1:64" }, { name: "Cars in Set", value: "5" }, { name: "Feature", value: "Opening parts" }],
|
|
3261
|
+
features: ["Working hoods, doors, and trunks", "Recycled materials", "2024 edition assortment", "Kid and collector friendly"],
|
|
3262
|
+
shippingInfo: "Shipped in padded outer box. 3–5 business days.",
|
|
3263
|
+
returnPolicy: "7-day return if factory sealed.",
|
|
3264
|
+
allowOffers: false,
|
|
3265
|
+
createdAt: daysAgo(13),
|
|
3266
|
+
updatedAt: daysAgo(2),
|
|
3267
|
+
},
|
|
3268
|
+
{
|
|
3269
|
+
id: "product-corgi-aston-martin-db5",
|
|
3270
|
+
slug: "product-corgi-aston-martin-db5",
|
|
3271
|
+
title: "Corgi: Aston Martin DB5 — James Bond 007 Edition (1:36 Scale)",
|
|
3272
|
+
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.",
|
|
3273
|
+
category: "category-hot-wheels",
|
|
3274
|
+
categoryName: "Hot Wheels",
|
|
3275
|
+
brand: "brand-corgi",
|
|
3276
|
+
price: 299900,
|
|
3277
|
+
currency: "INR",
|
|
3278
|
+
stockQuantity: 5,
|
|
3279
|
+
availableQuantity: 5,
|
|
3280
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3281
|
+
images: [
|
|
3282
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3283
|
+
],
|
|
3284
|
+
status: "published",
|
|
3285
|
+
storeName: "Diecast Depot",
|
|
3286
|
+
storeId: "store-diecast-depot",
|
|
3287
|
+
featured: true,
|
|
3288
|
+
isAuction: false,
|
|
3289
|
+
isPreOrder: false,
|
|
3290
|
+
isPromoted: true,
|
|
3291
|
+
tags: ["corgi", "aston-martin", "db5", "james-bond", "007", "1:36", "diecast", "collector"],
|
|
3292
|
+
condition: "new",
|
|
3293
|
+
specifications: [{ name: "Scale", value: "1:36" }, { name: "Brand", value: "Corgi" }, { name: "Feature", value: "Working ejector seat, revolving plates" }],
|
|
3294
|
+
features: ["Working ejector seat mechanism", "Revolving number plates", "Retractable machine guns", "Presentation box included"],
|
|
3295
|
+
shippingInfo: "Padded presentation box shipped in outer protective box. 3–5 days.",
|
|
3296
|
+
returnPolicy: "7-day return if box is sealed.",
|
|
3297
|
+
allowOffers: true,
|
|
3298
|
+
minOfferPercent: 90,
|
|
3299
|
+
createdAt: daysAgo(16),
|
|
3300
|
+
updatedAt: daysAgo(2),
|
|
3301
|
+
},
|
|
3302
|
+
// ── Store: Beyblade Arena — products 75–79 ───────────────────────────────────
|
|
3303
|
+
{
|
|
3304
|
+
id: "product-beyblade-x-bx01-dran-sword",
|
|
3305
|
+
slug: "product-beyblade-x-bx01-dran-sword",
|
|
3306
|
+
title: "Beyblade X: BX-01 Dran Sword 3-60F — Starter Pack",
|
|
3307
|
+
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.",
|
|
3308
|
+
category: "category-beyblade-x",
|
|
3309
|
+
categoryName: "Beyblade X",
|
|
3310
|
+
brand: "brand-takara-tomy",
|
|
3311
|
+
price: 159900,
|
|
3312
|
+
currency: "INR",
|
|
3313
|
+
stockQuantity: 10,
|
|
3314
|
+
availableQuantity: 10,
|
|
3315
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3316
|
+
images: [
|
|
3317
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3318
|
+
],
|
|
3319
|
+
status: "published",
|
|
3320
|
+
storeName: "Beyblade Arena",
|
|
3321
|
+
storeId: "store-beyblade-arena",
|
|
3322
|
+
featured: false,
|
|
3323
|
+
isAuction: false,
|
|
3324
|
+
isPreOrder: false,
|
|
3325
|
+
isPromoted: false,
|
|
3326
|
+
tags: ["beyblade-x", "bx-01", "dran-sword", "starter-pack", "takara-tomy", "beyblade"],
|
|
3327
|
+
condition: "new",
|
|
3328
|
+
specifications: [{ name: "Format", value: "Beyblade X" }, { name: "Type", value: "Attack" }, { name: "Includes", value: "Beyblade + BX Launcher + Ripcord" }],
|
|
3329
|
+
features: ["Xtreme Dash mechanic", "Starter kit with launcher", "BX-01 — first X format release", "Official Takara Tomy"],
|
|
3330
|
+
shippingInfo: "Ships in 2 business days. Pan-India 3–5 days delivery.",
|
|
3331
|
+
returnPolicy: "7-day return if unopened.",
|
|
3332
|
+
allowOffers: false,
|
|
3333
|
+
createdAt: daysAgo(8),
|
|
3334
|
+
updatedAt: daysAgo(1),
|
|
3335
|
+
},
|
|
3336
|
+
{
|
|
3337
|
+
id: "product-beyblade-x-bx07-hells-chain",
|
|
3338
|
+
slug: "product-beyblade-x-bx07-hells-chain",
|
|
3339
|
+
title: "Beyblade X: BX-07 Hells Chain 5-60HT — Booster",
|
|
3340
|
+
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.",
|
|
3341
|
+
category: "category-beyblade-x",
|
|
3342
|
+
categoryName: "Beyblade X",
|
|
3343
|
+
brand: "brand-takara-tomy",
|
|
3344
|
+
price: 139900,
|
|
3345
|
+
currency: "INR",
|
|
3346
|
+
stockQuantity: 8,
|
|
3347
|
+
availableQuantity: 8,
|
|
3348
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3349
|
+
images: [
|
|
3350
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3351
|
+
],
|
|
3352
|
+
status: "published",
|
|
3353
|
+
storeName: "Beyblade Arena",
|
|
3354
|
+
storeId: "store-beyblade-arena",
|
|
3355
|
+
featured: false,
|
|
3356
|
+
isAuction: false,
|
|
3357
|
+
isPreOrder: false,
|
|
3358
|
+
isPromoted: false,
|
|
3359
|
+
tags: ["beyblade-x", "bx-07", "hells-chain", "stamina", "takara-tomy"],
|
|
3360
|
+
condition: "new",
|
|
3361
|
+
specifications: [{ name: "Format", value: "Beyblade X" }, { name: "Type", value: "Stamina" }, { name: "Driver", value: "HT (High Taper)" }],
|
|
3362
|
+
features: ["HT driver for maximum spin time", "Stamina specialist", "Competitive X format", "Booster set — Beyblade only"],
|
|
3363
|
+
shippingInfo: "Dispatched in 2 business days.",
|
|
3364
|
+
returnPolicy: "7-day return if unopened.",
|
|
3365
|
+
allowOffers: false,
|
|
3366
|
+
createdAt: daysAgo(10),
|
|
3367
|
+
updatedAt: daysAgo(1),
|
|
3368
|
+
},
|
|
3369
|
+
{
|
|
3370
|
+
id: "product-beyblade-x-bx09-rd-dragon",
|
|
3371
|
+
slug: "product-beyblade-x-bx09-rd-dragon",
|
|
3372
|
+
title: "Beyblade X: BX-09 Rd (Red) Dragon 4-80B — Booster",
|
|
3373
|
+
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.",
|
|
3374
|
+
category: "category-beyblade-x",
|
|
3375
|
+
categoryName: "Beyblade X",
|
|
3376
|
+
brand: "brand-takara-tomy",
|
|
3377
|
+
price: 149900,
|
|
3378
|
+
currency: "INR",
|
|
3379
|
+
stockQuantity: 7,
|
|
3380
|
+
availableQuantity: 7,
|
|
3381
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3382
|
+
images: [
|
|
3383
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3384
|
+
],
|
|
3385
|
+
status: "published",
|
|
3386
|
+
storeName: "Beyblade Arena",
|
|
3387
|
+
storeId: "store-beyblade-arena",
|
|
3388
|
+
featured: false,
|
|
3389
|
+
isAuction: false,
|
|
3390
|
+
isPreOrder: false,
|
|
3391
|
+
isPromoted: false,
|
|
3392
|
+
tags: ["beyblade-x", "bx-09", "rd-dragon", "balance", "takara-tomy"],
|
|
3393
|
+
condition: "new",
|
|
3394
|
+
specifications: [{ name: "Format", value: "Beyblade X" }, { name: "Type", value: "Balance" }, { name: "Driver", value: "B (Ball)" }],
|
|
3395
|
+
features: ["Dragon motif design", "Versatile balance type", "4-blade attack layer", "Ball driver for stability"],
|
|
3396
|
+
shippingInfo: "2-business-day dispatch. 3–5 days delivery nationwide.",
|
|
3397
|
+
returnPolicy: "7-day return if unopened.",
|
|
3398
|
+
allowOffers: false,
|
|
3399
|
+
createdAt: daysAgo(12),
|
|
3400
|
+
updatedAt: daysAgo(2),
|
|
3401
|
+
},
|
|
3402
|
+
{
|
|
3403
|
+
id: "product-beyblade-x-bx12-phoenix-wing",
|
|
3404
|
+
slug: "product-beyblade-x-bx12-phoenix-wing",
|
|
3405
|
+
title: "Beyblade X: BX-12 Phoenix Wing 9-60GF — Booster",
|
|
3406
|
+
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.",
|
|
3407
|
+
category: "category-beyblade-x",
|
|
3408
|
+
categoryName: "Beyblade X",
|
|
3409
|
+
brand: "brand-takara-tomy",
|
|
3410
|
+
price: 159900,
|
|
3411
|
+
currency: "INR",
|
|
3412
|
+
stockQuantity: 6,
|
|
3413
|
+
availableQuantity: 6,
|
|
3414
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3415
|
+
images: [
|
|
3416
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3417
|
+
],
|
|
3418
|
+
status: "published",
|
|
3419
|
+
storeName: "Beyblade Arena",
|
|
3420
|
+
storeId: "store-beyblade-arena",
|
|
3421
|
+
featured: false,
|
|
3422
|
+
isAuction: false,
|
|
3423
|
+
isPreOrder: false,
|
|
3424
|
+
isPromoted: false,
|
|
3425
|
+
tags: ["beyblade-x", "bx-12", "phoenix-wing", "defence", "takara-tomy"],
|
|
3426
|
+
condition: "new",
|
|
3427
|
+
specifications: [{ name: "Format", value: "Beyblade X" }, { name: "Type", value: "Defence" }, { name: "Driver", value: "GF (Gear Flat)" }],
|
|
3428
|
+
features: ["9-point defence blade design", "GF driver for Xtreme Dash", "Defence specialist", "Phoenix motif"],
|
|
3429
|
+
shippingInfo: "Ships in 2 business days.",
|
|
3430
|
+
returnPolicy: "7-day return if unopened.",
|
|
3431
|
+
allowOffers: false,
|
|
3432
|
+
createdAt: daysAgo(15),
|
|
3433
|
+
updatedAt: daysAgo(2),
|
|
3434
|
+
},
|
|
3435
|
+
{
|
|
3436
|
+
id: "product-beyblade-x-bx16-sword-launcher",
|
|
3437
|
+
slug: "product-beyblade-x-bx16-sword-launcher",
|
|
3438
|
+
title: "Beyblade X: BX-16 Sword Launcher — String Launcher (Official)",
|
|
3439
|
+
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.",
|
|
3440
|
+
category: "category-beyblade-x",
|
|
3441
|
+
categoryName: "Beyblade X",
|
|
3442
|
+
brand: "brand-takara-tomy",
|
|
3443
|
+
price: 89900,
|
|
3444
|
+
currency: "INR",
|
|
3445
|
+
stockQuantity: 15,
|
|
3446
|
+
availableQuantity: 15,
|
|
3447
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3448
|
+
images: [
|
|
3449
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3450
|
+
],
|
|
3451
|
+
status: "published",
|
|
3452
|
+
storeName: "Beyblade Arena",
|
|
3453
|
+
storeId: "store-beyblade-arena",
|
|
3454
|
+
featured: false,
|
|
3455
|
+
isAuction: false,
|
|
3456
|
+
isPreOrder: false,
|
|
3457
|
+
isPromoted: false,
|
|
3458
|
+
tags: ["beyblade-x", "bx-16", "launcher", "sword-launcher", "takara-tomy", "accessory"],
|
|
3459
|
+
condition: "new",
|
|
3460
|
+
specifications: [{ name: "Compatibility", value: "All Beyblade X beyblades" }, { name: "Type", value: "String Launcher" }],
|
|
3461
|
+
features: ["Sword grip design", "Compatible with all BX beyblades", "Precision angle control", "Official Takara Tomy accessory"],
|
|
3462
|
+
shippingInfo: "Ships in 1 business day.",
|
|
3463
|
+
returnPolicy: "7-day return if unopened.",
|
|
3464
|
+
allowOffers: false,
|
|
3465
|
+
createdAt: daysAgo(6),
|
|
3466
|
+
updatedAt: daysAgo(1),
|
|
3467
|
+
},
|
|
3468
|
+
// ── Store: LetItRip Official — products 80–85 ─────────────────────────────────
|
|
3469
|
+
{
|
|
3470
|
+
id: "product-figma-link-totk",
|
|
3471
|
+
slug: "product-figma-link-totk",
|
|
3472
|
+
title: "figma: The Legend of Zelda: Tears of the Kingdom — Link (Non-Scale)",
|
|
3473
|
+
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.",
|
|
3474
|
+
category: "category-poseable-figures",
|
|
3475
|
+
categoryName: "Poseable Figures",
|
|
3476
|
+
brand: "brand-max-factory",
|
|
3477
|
+
price: 699900,
|
|
3478
|
+
currency: "INR",
|
|
3479
|
+
stockQuantity: 4,
|
|
3480
|
+
availableQuantity: 4,
|
|
3481
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3482
|
+
images: [
|
|
3483
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3484
|
+
],
|
|
3485
|
+
status: "published",
|
|
3486
|
+
storeName: "LetItRip Official",
|
|
3487
|
+
storeId: "store-letitrip-official",
|
|
3488
|
+
featured: true,
|
|
3489
|
+
isAuction: false,
|
|
3490
|
+
isPreOrder: false,
|
|
3491
|
+
isPromoted: true,
|
|
3492
|
+
tags: ["figma", "zelda", "tears-of-the-kingdom", "link", "max-factory", "articulated"],
|
|
3493
|
+
condition: "new",
|
|
3494
|
+
specifications: [{ name: "Scale", value: "Non-scale" }, { name: "Material", value: "PVC/ABS" }, { name: "Manufacturer", value: "Max Factory" }],
|
|
3495
|
+
features: ["30+ articulation points", "Ultrahand accessories", "Multiple expression faceplates", "Master Sword + Hylian Shield"],
|
|
3496
|
+
shippingInfo: "Shipped in original box with protective outer sleeve. 3–5 days.",
|
|
3497
|
+
returnPolicy: "7-day return if box is sealed.",
|
|
3498
|
+
allowOffers: true,
|
|
3499
|
+
minOfferPercent: 90,
|
|
3500
|
+
createdAt: daysAgo(5),
|
|
3501
|
+
updatedAt: daysAgo(1),
|
|
3502
|
+
},
|
|
3503
|
+
{
|
|
3504
|
+
id: "product-funko-pop-gojo-satoru",
|
|
3505
|
+
slug: "product-funko-pop-gojo-satoru",
|
|
3506
|
+
title: "Funko Pop! Animation: Jujutsu Kaisen — Gojo Satoru (Blindfold) #1373",
|
|
3507
|
+
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.",
|
|
3508
|
+
category: "category-poseable-figures",
|
|
3509
|
+
categoryName: "Poseable Figures",
|
|
3510
|
+
brand: "brand-funko",
|
|
3511
|
+
price: 149900,
|
|
3512
|
+
currency: "INR",
|
|
3513
|
+
stockQuantity: 20,
|
|
3514
|
+
availableQuantity: 20,
|
|
3515
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3516
|
+
images: [
|
|
3517
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3518
|
+
],
|
|
3519
|
+
status: "published",
|
|
3520
|
+
storeName: "LetItRip Official",
|
|
3521
|
+
storeId: "store-letitrip-official",
|
|
3522
|
+
featured: false,
|
|
3523
|
+
isAuction: false,
|
|
3524
|
+
isPreOrder: false,
|
|
3525
|
+
isPromoted: false,
|
|
3526
|
+
tags: ["funko-pop", "jujutsu-kaisen", "gojo", "anime", "vinyl", "figure"],
|
|
3527
|
+
condition: "new",
|
|
3528
|
+
specifications: [{ name: "Pop Number", value: "#1373" }, { name: "Height", value: "~3.75 inches" }, { name: "Series", value: "Jujutsu Kaisen" }],
|
|
3529
|
+
features: ["Official Funko licensed", "Gojo with blindfold", "Window-display box", "3.75-inch vinyl figure"],
|
|
3530
|
+
shippingInfo: "Ships in 1 business day. Box protector included.",
|
|
3531
|
+
returnPolicy: "7-day return if box is undamaged.",
|
|
3532
|
+
allowOffers: false,
|
|
3533
|
+
createdAt: daysAgo(3),
|
|
3534
|
+
updatedAt: daysAgo(1),
|
|
3535
|
+
},
|
|
3536
|
+
{
|
|
3537
|
+
id: "product-nendoroid-hatsune-miku-v4x",
|
|
3538
|
+
slug: "product-nendoroid-hatsune-miku-v4x",
|
|
3539
|
+
title: "Nendoroid: Hatsune Miku V4X — Good Smile Company",
|
|
3540
|
+
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.",
|
|
3541
|
+
category: "category-nendoroids-chibis",
|
|
3542
|
+
categoryName: "Nendoroids & Chibis",
|
|
3543
|
+
brand: "brand-good-smile",
|
|
3544
|
+
price: 499900,
|
|
3545
|
+
currency: "INR",
|
|
3546
|
+
stockQuantity: 6,
|
|
3547
|
+
availableQuantity: 6,
|
|
3548
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3549
|
+
images: [
|
|
3550
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3551
|
+
],
|
|
3552
|
+
status: "published",
|
|
3553
|
+
storeName: "LetItRip Official",
|
|
3554
|
+
storeId: "store-letitrip-official",
|
|
3555
|
+
featured: false,
|
|
3556
|
+
isAuction: false,
|
|
3557
|
+
isPreOrder: false,
|
|
3558
|
+
isPromoted: false,
|
|
3559
|
+
tags: ["nendoroid", "hatsune-miku", "v4x", "good-smile-company", "vocaloid", "chibi"],
|
|
3560
|
+
condition: "new",
|
|
3561
|
+
specifications: [{ name: "Height", value: "~100mm" }, { name: "Material", value: "PVC/ABS" }, { name: "Manufacturer", value: "Good Smile Company" }],
|
|
3562
|
+
features: ["V4X twin-tail design", "Multiple expression faceplates", "Leek + microphone stand included", "Posing display base"],
|
|
3563
|
+
shippingInfo: "Original GSC box shipped in outer protective packaging. 3–5 days.",
|
|
3564
|
+
returnPolicy: "7-day return if box is sealed.",
|
|
3565
|
+
allowOffers: true,
|
|
3566
|
+
minOfferPercent: 88,
|
|
3567
|
+
createdAt: daysAgo(7),
|
|
3568
|
+
updatedAt: daysAgo(1),
|
|
3569
|
+
},
|
|
3570
|
+
{
|
|
3571
|
+
id: "product-shf-ultra-instinct-goku",
|
|
3572
|
+
slug: "product-shf-ultra-instinct-goku",
|
|
3573
|
+
title: "S.H.Figuarts: Dragon Ball Super — Ultra Instinct Goku (2nd Release)",
|
|
3574
|
+
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.",
|
|
3575
|
+
category: "category-poseable-figures",
|
|
3576
|
+
categoryName: "Poseable Figures",
|
|
3577
|
+
brand: "brand-bandai",
|
|
3578
|
+
price: 649900,
|
|
3579
|
+
currency: "INR",
|
|
3580
|
+
stockQuantity: 3,
|
|
3581
|
+
availableQuantity: 3,
|
|
3582
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3583
|
+
images: [
|
|
3584
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3585
|
+
],
|
|
3586
|
+
status: "published",
|
|
3587
|
+
storeName: "LetItRip Official",
|
|
3588
|
+
storeId: "store-letitrip-official",
|
|
3589
|
+
featured: false,
|
|
3590
|
+
isAuction: false,
|
|
3591
|
+
isPreOrder: false,
|
|
3592
|
+
isPromoted: false,
|
|
3593
|
+
tags: ["shfiguarts", "dragon-ball", "goku", "ultra-instinct", "bandai", "articulated"],
|
|
3594
|
+
condition: "new",
|
|
3595
|
+
specifications: [{ name: "Height", value: "~140mm" }, { name: "Series", value: "Dragon Ball Super" }, { name: "Release", value: "2nd Release" }],
|
|
3596
|
+
features: ["Silver aura effect parts", "Multiple hand sets", "Display stand", "Improved 2nd release articulation"],
|
|
3597
|
+
shippingInfo: "Ships in original Bandai box with outer protection. 3–5 days.",
|
|
3598
|
+
returnPolicy: "7-day return if box is sealed.",
|
|
3599
|
+
allowOffers: true,
|
|
3600
|
+
minOfferPercent: 90,
|
|
3601
|
+
createdAt: daysAgo(9),
|
|
3602
|
+
updatedAt: daysAgo(2),
|
|
3603
|
+
},
|
|
3604
|
+
{
|
|
3605
|
+
id: "product-funko-pop-tanjiro-dlx",
|
|
3606
|
+
slug: "product-funko-pop-tanjiro-dlx",
|
|
3607
|
+
title: "Funko Pop! Deluxe: Demon Slayer — Tanjiro Kamado with Nezuko (Diorama)",
|
|
3608
|
+
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.",
|
|
3609
|
+
category: "category-poseable-figures",
|
|
3610
|
+
categoryName: "Poseable Figures",
|
|
3611
|
+
brand: "brand-funko",
|
|
3612
|
+
price: 249900,
|
|
3613
|
+
currency: "INR",
|
|
3614
|
+
stockQuantity: 8,
|
|
3615
|
+
availableQuantity: 8,
|
|
3616
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3617
|
+
images: [
|
|
3618
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3619
|
+
],
|
|
3620
|
+
status: "published",
|
|
3621
|
+
storeName: "LetItRip Official",
|
|
3622
|
+
storeId: "store-letitrip-official",
|
|
3623
|
+
featured: false,
|
|
3624
|
+
isAuction: false,
|
|
3625
|
+
isPreOrder: false,
|
|
3626
|
+
isPromoted: false,
|
|
3627
|
+
tags: ["funko-pop", "demon-slayer", "tanjiro", "nezuko", "deluxe", "diorama", "anime"],
|
|
3628
|
+
condition: "new",
|
|
3629
|
+
specifications: [{ name: "Type", value: "Deluxe Diorama" }, { name: "Series", value: "Demon Slayer" }],
|
|
3630
|
+
features: ["Deluxe diorama format", "Tanjiro + Nezuko together", "Detailed scenic base", "Official Funko license"],
|
|
3631
|
+
shippingInfo: "Deluxe box ships in oversized outer packaging. 3–5 days.",
|
|
3632
|
+
returnPolicy: "7-day return if box is undamaged.",
|
|
3633
|
+
allowOffers: false,
|
|
3634
|
+
createdAt: daysAgo(4),
|
|
3635
|
+
updatedAt: daysAgo(1),
|
|
3636
|
+
},
|
|
3637
|
+
{
|
|
3638
|
+
id: "product-mafex-miles-morales-spiderman",
|
|
3639
|
+
slug: "product-mafex-miles-morales-spiderman",
|
|
3640
|
+
title: "MAFEX No.240: Miles Morales Spider-Man (Across the Spider-Verse)",
|
|
3641
|
+
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.",
|
|
3642
|
+
category: "category-poseable-figures",
|
|
3643
|
+
categoryName: "Poseable Figures",
|
|
3644
|
+
brand: "brand-medicom-toy",
|
|
3645
|
+
price: 849900,
|
|
3646
|
+
currency: "INR",
|
|
3647
|
+
stockQuantity: 2,
|
|
3648
|
+
availableQuantity: 2,
|
|
3649
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3650
|
+
images: [
|
|
3651
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3652
|
+
],
|
|
3653
|
+
status: "published",
|
|
3654
|
+
storeName: "LetItRip Official",
|
|
3655
|
+
storeId: "store-letitrip-official",
|
|
3656
|
+
featured: true,
|
|
3657
|
+
isAuction: false,
|
|
3658
|
+
isPreOrder: false,
|
|
3659
|
+
isPromoted: true,
|
|
3660
|
+
tags: ["mafex", "miles-morales", "spider-man", "spider-verse", "medicom-toy", "articulated"],
|
|
3661
|
+
condition: "new",
|
|
3662
|
+
specifications: [{ name: "MAFEX No.", value: "240" }, { name: "Height", value: "~155mm" }, { name: "Manufacturer", value: "Medicom Toy" }],
|
|
3663
|
+
features: ["Fabric suit elements", "Web effect parts", "Multiple faceplates", "155mm highly articulated figure"],
|
|
3664
|
+
shippingInfo: "Original Medicom box in outer protective packaging. Tracked shipment. 3–5 days.",
|
|
3665
|
+
returnPolicy: "7-day return if box is sealed.",
|
|
3666
|
+
allowOffers: true,
|
|
3667
|
+
minOfferPercent: 92,
|
|
3668
|
+
createdAt: daysAgo(2),
|
|
3669
|
+
updatedAt: daysAgo(1),
|
|
3670
|
+
},
|
|
3671
|
+
// ── Store: Tokyo Toys India — products 86–92 ──────────────────────────────────
|
|
3672
|
+
{
|
|
3673
|
+
id: "product-figma-makima-chainsaw-man",
|
|
3674
|
+
slug: "product-figma-makima-chainsaw-man",
|
|
3675
|
+
title: "figma: Chainsaw Man — Makima (Non-Scale Articulated Figure)",
|
|
3676
|
+
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.",
|
|
3677
|
+
category: "category-poseable-figures",
|
|
3678
|
+
categoryName: "Poseable Figures",
|
|
3679
|
+
brand: "brand-max-factory",
|
|
3680
|
+
price: 679900,
|
|
3681
|
+
currency: "INR",
|
|
3682
|
+
stockQuantity: 3,
|
|
3683
|
+
availableQuantity: 3,
|
|
3684
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3685
|
+
images: [
|
|
3686
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3687
|
+
],
|
|
3688
|
+
status: "published",
|
|
3689
|
+
storeName: "Tokyo Toys India",
|
|
3690
|
+
storeId: "store-tokyo-toys-india",
|
|
3691
|
+
featured: false,
|
|
3692
|
+
isAuction: false,
|
|
3693
|
+
isPreOrder: false,
|
|
3694
|
+
isPromoted: false,
|
|
3695
|
+
tags: ["figma", "makima", "chainsaw-man", "max-factory", "anime", "articulated"],
|
|
3696
|
+
condition: "new",
|
|
3697
|
+
specifications: [{ name: "Scale", value: "Non-scale" }, { name: "Material", value: "PVC/ABS" }, { name: "Manufacturer", value: "Max Factory" }],
|
|
3698
|
+
features: ["30+ articulation points", "Multiple expression faceplates", "Chainsaw Man official license", "Display stand included"],
|
|
3699
|
+
shippingInfo: "Original figma box shipped with outer protection. 3–5 days.",
|
|
3700
|
+
returnPolicy: "7-day return if box is sealed.",
|
|
3701
|
+
allowOffers: true,
|
|
3702
|
+
minOfferPercent: 88,
|
|
3703
|
+
createdAt: daysAgo(6),
|
|
3704
|
+
updatedAt: daysAgo(1),
|
|
3705
|
+
},
|
|
3706
|
+
{
|
|
3707
|
+
id: "product-nendoroid-zero-two-darling",
|
|
3708
|
+
slug: "product-nendoroid-zero-two-darling",
|
|
3709
|
+
title: "Nendoroid: DARLING in the FRANXX — Zero Two #952",
|
|
3710
|
+
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.",
|
|
3711
|
+
category: "category-nendoroids-chibis",
|
|
3712
|
+
categoryName: "Nendoroids & Chibis",
|
|
3713
|
+
brand: "brand-good-smile",
|
|
3714
|
+
price: 479900,
|
|
3715
|
+
currency: "INR",
|
|
3716
|
+
stockQuantity: 4,
|
|
3717
|
+
availableQuantity: 4,
|
|
3718
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3719
|
+
images: [
|
|
3720
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3721
|
+
],
|
|
3722
|
+
status: "published",
|
|
3723
|
+
storeName: "Tokyo Toys India",
|
|
3724
|
+
storeId: "store-tokyo-toys-india",
|
|
3725
|
+
featured: false,
|
|
3726
|
+
isAuction: false,
|
|
3727
|
+
isPreOrder: false,
|
|
3728
|
+
isPromoted: false,
|
|
3729
|
+
tags: ["nendoroid", "zero-two", "darling-in-the-franxx", "good-smile-company", "anime", "chibi"],
|
|
3730
|
+
condition: "new",
|
|
3731
|
+
specifications: [{ name: "Nendoroid No.", value: "#952" }, { name: "Height", value: "~100mm" }],
|
|
3732
|
+
features: ["Three expression faceplates", "FRANXX interface accessory", "Display base included", "Official GSC product"],
|
|
3733
|
+
shippingInfo: "Original GSC packaging shipped in outer protective box. 3–5 days.",
|
|
3734
|
+
returnPolicy: "7-day return if factory sealed.",
|
|
3735
|
+
allowOffers: true,
|
|
3736
|
+
minOfferPercent: 87,
|
|
3737
|
+
createdAt: daysAgo(8),
|
|
3738
|
+
updatedAt: daysAgo(2),
|
|
3739
|
+
},
|
|
3740
|
+
{
|
|
3741
|
+
id: "product-gsc-aqua-konosuba-scale",
|
|
3742
|
+
slug: "product-gsc-aqua-konosuba-scale",
|
|
3743
|
+
title: "Good Smile Company: KonoSuba — Aqua 1/7 Scale Figure",
|
|
3744
|
+
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.",
|
|
3745
|
+
category: "category-scale-figures",
|
|
3746
|
+
categoryName: "Scale Figures",
|
|
3747
|
+
brand: "brand-good-smile",
|
|
3748
|
+
price: 899900,
|
|
3749
|
+
currency: "INR",
|
|
3750
|
+
stockQuantity: 2,
|
|
3751
|
+
availableQuantity: 2,
|
|
3752
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3753
|
+
images: [
|
|
3754
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3755
|
+
],
|
|
3756
|
+
status: "published",
|
|
3757
|
+
storeName: "Tokyo Toys India",
|
|
3758
|
+
storeId: "store-tokyo-toys-india",
|
|
3759
|
+
featured: true,
|
|
3760
|
+
isAuction: false,
|
|
3761
|
+
isPreOrder: false,
|
|
3762
|
+
isPromoted: true,
|
|
3763
|
+
tags: ["good-smile-company", "aqua", "konosuba", "1-7-scale", "scale-figure", "anime"],
|
|
3764
|
+
condition: "new",
|
|
3765
|
+
specifications: [{ name: "Scale", value: "1/7" }, { name: "Height", value: "~230mm" }, { name: "Material", value: "PVC/ABS" }],
|
|
3766
|
+
features: ["1/7 scale high-detail sculpt", "Water effect display base", "Official KonoSuba license", "~230mm tall"],
|
|
3767
|
+
shippingInfo: "Carefully packaged in double-box. Tracked and insured shipping. 3–5 days.",
|
|
3768
|
+
returnPolicy: "7-day return if box is sealed.",
|
|
3769
|
+
allowOffers: true,
|
|
3770
|
+
minOfferPercent: 91,
|
|
3771
|
+
createdAt: daysAgo(10),
|
|
3772
|
+
updatedAt: daysAgo(2),
|
|
3773
|
+
},
|
|
3774
|
+
{
|
|
3775
|
+
id: "product-figma-levi-attack-on-titan",
|
|
3776
|
+
slug: "product-figma-levi-attack-on-titan",
|
|
3777
|
+
title: "figma: Attack on Titan — Levi Ackerman (Survey Corps Version)",
|
|
3778
|
+
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.",
|
|
3779
|
+
category: "category-poseable-figures",
|
|
3780
|
+
categoryName: "Poseable Figures",
|
|
3781
|
+
brand: "brand-max-factory",
|
|
3782
|
+
price: 699900,
|
|
3783
|
+
currency: "INR",
|
|
3784
|
+
stockQuantity: 3,
|
|
3785
|
+
availableQuantity: 3,
|
|
3786
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3787
|
+
images: [
|
|
3788
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3789
|
+
],
|
|
3790
|
+
status: "published",
|
|
3791
|
+
storeName: "Tokyo Toys India",
|
|
3792
|
+
storeId: "store-tokyo-toys-india",
|
|
3793
|
+
featured: false,
|
|
3794
|
+
isAuction: false,
|
|
3795
|
+
isPreOrder: false,
|
|
3796
|
+
isPromoted: false,
|
|
3797
|
+
tags: ["figma", "levi", "attack-on-titan", "aot", "max-factory", "anime", "articulated"],
|
|
3798
|
+
condition: "new",
|
|
3799
|
+
specifications: [{ name: "Scale", value: "Non-scale" }, { name: "Material", value: "PVC/ABS" }],
|
|
3800
|
+
features: ["ODM gear effect parts", "Multiple blades", "Wire effect parts", "Survey Corps uniform"],
|
|
3801
|
+
shippingInfo: "Original figma box with outer protection. 3–5 days.",
|
|
3802
|
+
returnPolicy: "7-day return if box sealed.",
|
|
3803
|
+
allowOffers: false,
|
|
3804
|
+
createdAt: daysAgo(11),
|
|
3805
|
+
updatedAt: daysAgo(2),
|
|
3806
|
+
},
|
|
3807
|
+
{
|
|
3808
|
+
id: "product-nendoroid-killua-hxh",
|
|
3809
|
+
slug: "product-nendoroid-killua-hxh",
|
|
3810
|
+
title: "Nendoroid: Hunter × Hunter — Killua Zoldyck #1179",
|
|
3811
|
+
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.",
|
|
3812
|
+
category: "category-nendoroids-chibis",
|
|
3813
|
+
categoryName: "Nendoroids & Chibis",
|
|
3814
|
+
brand: "brand-good-smile",
|
|
3815
|
+
price: 459900,
|
|
3816
|
+
currency: "INR",
|
|
3817
|
+
stockQuantity: 5,
|
|
3818
|
+
availableQuantity: 5,
|
|
3819
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3820
|
+
images: [
|
|
3821
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3822
|
+
],
|
|
3823
|
+
status: "published",
|
|
3824
|
+
storeName: "Tokyo Toys India",
|
|
3825
|
+
storeId: "store-tokyo-toys-india",
|
|
3826
|
+
featured: false,
|
|
3827
|
+
isAuction: false,
|
|
3828
|
+
isPreOrder: false,
|
|
3829
|
+
isPromoted: false,
|
|
3830
|
+
tags: ["nendoroid", "killua", "hunter-x-hunter", "hxh", "good-smile-company", "anime"],
|
|
3831
|
+
condition: "new",
|
|
3832
|
+
specifications: [{ name: "Nendoroid No.", value: "#1179" }, { name: "Height", value: "~100mm" }],
|
|
3833
|
+
features: ["Skateboard accessory", "Godspeed yo-yo effect parts", "Three expression faceplates", "Display stand"],
|
|
3834
|
+
shippingInfo: "Original GSC packaging with outer protective box. 3–5 days.",
|
|
3835
|
+
returnPolicy: "7-day return if factory sealed.",
|
|
3836
|
+
allowOffers: false,
|
|
3837
|
+
createdAt: daysAgo(13),
|
|
3838
|
+
updatedAt: daysAgo(2),
|
|
3839
|
+
},
|
|
3840
|
+
{
|
|
3841
|
+
id: "product-alter-rem-wedding-scale",
|
|
3842
|
+
slug: "product-alter-rem-wedding-scale",
|
|
3843
|
+
title: "ALTER: Re:ZERO — Rem (Wedding Ver.) 1/7 Scale Figure",
|
|
3844
|
+
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.",
|
|
3845
|
+
category: "category-scale-figures",
|
|
3846
|
+
categoryName: "Scale Figures",
|
|
3847
|
+
brand: "brand-alter",
|
|
3848
|
+
price: 1299900,
|
|
3849
|
+
currency: "INR",
|
|
3850
|
+
stockQuantity: 1,
|
|
3851
|
+
availableQuantity: 1,
|
|
3852
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3853
|
+
images: [
|
|
3854
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3855
|
+
],
|
|
3856
|
+
status: "published",
|
|
3857
|
+
storeName: "Tokyo Toys India",
|
|
3858
|
+
storeId: "store-tokyo-toys-india",
|
|
3859
|
+
featured: true,
|
|
3860
|
+
isAuction: false,
|
|
3861
|
+
isPreOrder: false,
|
|
3862
|
+
isPromoted: true,
|
|
3863
|
+
tags: ["alter", "rem", "re-zero", "wedding-ver", "1-7-scale", "scale-figure", "anime"],
|
|
3864
|
+
condition: "new",
|
|
3865
|
+
specifications: [{ name: "Scale", value: "1/7" }, { name: "Height", value: "~230mm" }, { name: "Manufacturer", value: "ALTER" }],
|
|
3866
|
+
features: ["Intricate lace dress detail", "Floral bouquet accessory", "ALTER premium finish", "~230mm display figure"],
|
|
3867
|
+
shippingInfo: "Double-boxed with foam protection. Tracked and insured. 4–6 days.",
|
|
3868
|
+
returnPolicy: "7-day return if factory sealed.",
|
|
3869
|
+
allowOffers: true,
|
|
3870
|
+
minOfferPercent: 93,
|
|
3871
|
+
createdAt: daysAgo(2),
|
|
3872
|
+
updatedAt: daysAgo(1),
|
|
3873
|
+
},
|
|
3874
|
+
{
|
|
3875
|
+
id: "product-funko-pop-luffy-gear5",
|
|
3876
|
+
slug: "product-funko-pop-luffy-gear5",
|
|
3877
|
+
title: "Funko Pop! Animation: One Piece — Monkey D. Luffy (Gear 5) #1618",
|
|
3878
|
+
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.",
|
|
3879
|
+
category: "category-poseable-figures",
|
|
3880
|
+
categoryName: "Poseable Figures",
|
|
3881
|
+
brand: "brand-funko",
|
|
3882
|
+
price: 159900,
|
|
3883
|
+
currency: "INR",
|
|
3884
|
+
stockQuantity: 15,
|
|
3885
|
+
availableQuantity: 15,
|
|
3886
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3887
|
+
images: [
|
|
3888
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3889
|
+
],
|
|
3890
|
+
status: "published",
|
|
3891
|
+
storeName: "Tokyo Toys India",
|
|
3892
|
+
storeId: "store-tokyo-toys-india",
|
|
3893
|
+
featured: false,
|
|
3894
|
+
isAuction: false,
|
|
3895
|
+
isPreOrder: false,
|
|
3896
|
+
isPromoted: false,
|
|
3897
|
+
tags: ["funko-pop", "one-piece", "luffy", "gear-5", "anime", "vinyl", "figure"],
|
|
3898
|
+
condition: "new",
|
|
3899
|
+
specifications: [{ name: "Pop Number", value: "#1618" }, { name: "Series", value: "One Piece" }],
|
|
3900
|
+
features: ["Gear 5 awakened form", "White hair design", "Official One Piece license", "3.75-inch vinyl"],
|
|
3901
|
+
shippingInfo: "Ships in 1 business day with box protector.",
|
|
3902
|
+
returnPolicy: "7-day return if box is undamaged.",
|
|
3903
|
+
allowOffers: false,
|
|
3904
|
+
createdAt: daysAgo(4),
|
|
3905
|
+
updatedAt: daysAgo(1),
|
|
3906
|
+
},
|
|
3907
|
+
// ── Store: Gundam Galaxy — products 93–98 ────────────────────────────────────
|
|
3908
|
+
{
|
|
3909
|
+
id: "product-hg-aerial-rebuild-gundam",
|
|
3910
|
+
slug: "product-hg-aerial-rebuild-gundam",
|
|
3911
|
+
title: "Bandai HG 1/144: Mobile Suit Gundam: The Witch from Mercury — Aerial Rebuild",
|
|
3912
|
+
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.",
|
|
3913
|
+
category: "category-gunpla",
|
|
3914
|
+
categoryName: "Gunpla",
|
|
3915
|
+
brand: "brand-bandai",
|
|
3916
|
+
price: 249900,
|
|
3917
|
+
currency: "INR",
|
|
3918
|
+
stockQuantity: 8,
|
|
3919
|
+
availableQuantity: 8,
|
|
3920
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3921
|
+
images: [
|
|
3922
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3923
|
+
],
|
|
3924
|
+
status: "published",
|
|
3925
|
+
storeName: "Gundam Galaxy",
|
|
3926
|
+
storeId: "store-gundam-galaxy",
|
|
3927
|
+
featured: false,
|
|
3928
|
+
isAuction: false,
|
|
3929
|
+
isPreOrder: false,
|
|
3930
|
+
isPromoted: false,
|
|
3931
|
+
tags: ["gunpla", "hg", "1-144", "aerial-rebuild", "witch-from-mercury", "bandai"],
|
|
3932
|
+
condition: "new",
|
|
3933
|
+
specifications: [{ name: "Grade", value: "HG (High Grade)" }, { name: "Scale", value: "1/144" }, { name: "Series", value: "The Witch from Mercury" }],
|
|
3934
|
+
features: ["Snap-fit, no glue required", "Permet particle effect parts", "1/144 scale articulated kit", "Official Bandai Spirits"],
|
|
3935
|
+
shippingInfo: "Ships in 2 business days in original Bandai box.",
|
|
3936
|
+
returnPolicy: "7-day return if box is sealed.",
|
|
3937
|
+
allowOffers: false,
|
|
3938
|
+
createdAt: daysAgo(5),
|
|
3939
|
+
updatedAt: daysAgo(1),
|
|
3940
|
+
},
|
|
3941
|
+
{
|
|
3942
|
+
id: "product-mg-nu-gundam-ver-ka",
|
|
3943
|
+
slug: "product-mg-nu-gundam-ver-ka",
|
|
3944
|
+
title: "Bandai MG 1/100: RX-93 Nu Gundam (Ver. Ka) — Master Grade",
|
|
3945
|
+
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.",
|
|
3946
|
+
category: "category-gunpla",
|
|
3947
|
+
categoryName: "Gunpla",
|
|
3948
|
+
brand: "brand-bandai",
|
|
3949
|
+
price: 749900,
|
|
3950
|
+
currency: "INR",
|
|
3951
|
+
stockQuantity: 3,
|
|
3952
|
+
availableQuantity: 3,
|
|
3953
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3954
|
+
images: [
|
|
3955
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3956
|
+
],
|
|
3957
|
+
status: "published",
|
|
3958
|
+
storeName: "Gundam Galaxy",
|
|
3959
|
+
storeId: "store-gundam-galaxy",
|
|
3960
|
+
featured: true,
|
|
3961
|
+
isAuction: false,
|
|
3962
|
+
isPreOrder: false,
|
|
3963
|
+
isPromoted: true,
|
|
3964
|
+
tags: ["gunpla", "mg", "1-100", "nu-gundam", "ver-ka", "master-grade", "bandai", "katoki"],
|
|
3965
|
+
condition: "new",
|
|
3966
|
+
specifications: [{ name: "Grade", value: "MG (Master Grade)" }, { name: "Scale", value: "1/100" }, { name: "Designer", value: "Hajime Katoki" }],
|
|
3967
|
+
features: ["Full psychoframe design", "Detailed inner cockpit", "Fin funnels included", "LED-compatible inner frame"],
|
|
3968
|
+
shippingInfo: "Carefully packaged in double-wall box. 3–5 business days.",
|
|
3969
|
+
returnPolicy: "7-day return if box is sealed.",
|
|
3970
|
+
allowOffers: true,
|
|
3971
|
+
minOfferPercent: 91,
|
|
3972
|
+
createdAt: daysAgo(8),
|
|
3973
|
+
updatedAt: daysAgo(2),
|
|
3974
|
+
},
|
|
3975
|
+
{
|
|
3976
|
+
id: "product-rg-eva-unit-01-rebuild",
|
|
3977
|
+
slug: "product-rg-eva-unit-01-rebuild",
|
|
3978
|
+
title: "Bandai RG 1/144: Evangelion Unit-01 (Rebuild of Evangelion) — Real Grade",
|
|
3979
|
+
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.",
|
|
3980
|
+
category: "category-gunpla",
|
|
3981
|
+
categoryName: "Gunpla",
|
|
3982
|
+
brand: "brand-bandai",
|
|
3983
|
+
price: 449900,
|
|
3984
|
+
currency: "INR",
|
|
3985
|
+
stockQuantity: 4,
|
|
3986
|
+
availableQuantity: 4,
|
|
3987
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3988
|
+
images: [
|
|
3989
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
3990
|
+
],
|
|
3991
|
+
status: "published",
|
|
3992
|
+
storeName: "Gundam Galaxy",
|
|
3993
|
+
storeId: "store-gundam-galaxy",
|
|
3994
|
+
featured: false,
|
|
3995
|
+
isAuction: false,
|
|
3996
|
+
isPreOrder: false,
|
|
3997
|
+
isPromoted: false,
|
|
3998
|
+
tags: ["bandai", "rg", "1-144", "evangelion", "eva-unit-01", "rebuild", "neon-genesis"],
|
|
3999
|
+
condition: "new",
|
|
4000
|
+
specifications: [{ name: "Grade", value: "RG (Real Grade)" }, { name: "Scale", value: "1/144" }, { name: "Series", value: "Rebuild of Evangelion" }],
|
|
4001
|
+
features: ["RG inner skeleton system", "Restraint harness included", "Lance of Longinus effect part", "Progressive knife accessory"],
|
|
4002
|
+
shippingInfo: "Original box shipped in protective outer packaging. 3–5 days.",
|
|
4003
|
+
returnPolicy: "7-day return if box is sealed.",
|
|
4004
|
+
allowOffers: true,
|
|
4005
|
+
minOfferPercent: 89,
|
|
4006
|
+
createdAt: daysAgo(12),
|
|
4007
|
+
updatedAt: daysAgo(2),
|
|
4008
|
+
},
|
|
4009
|
+
{
|
|
4010
|
+
id: "product-pg-unleashed-rx78-2",
|
|
4011
|
+
slug: "product-pg-unleashed-rx78-2",
|
|
4012
|
+
title: "Bandai PG Unleashed 1/60: RX-78-2 Gundam — Perfect Grade",
|
|
4013
|
+
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.",
|
|
4014
|
+
category: "category-gunpla",
|
|
4015
|
+
categoryName: "Gunpla",
|
|
4016
|
+
brand: "brand-bandai",
|
|
4017
|
+
price: 2499900,
|
|
4018
|
+
currency: "INR",
|
|
4019
|
+
stockQuantity: 1,
|
|
4020
|
+
availableQuantity: 1,
|
|
4021
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
4022
|
+
images: [
|
|
4023
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
4024
|
+
],
|
|
4025
|
+
status: "published",
|
|
4026
|
+
storeName: "Gundam Galaxy",
|
|
4027
|
+
storeId: "store-gundam-galaxy",
|
|
4028
|
+
featured: true,
|
|
4029
|
+
isAuction: false,
|
|
4030
|
+
isPreOrder: false,
|
|
4031
|
+
isPromoted: true,
|
|
4032
|
+
tags: ["gunpla", "pg", "1-60", "rx-78-2", "perfect-grade", "unleashed", "bandai", "flagship"],
|
|
4033
|
+
condition: "new",
|
|
4034
|
+
specifications: [{ name: "Grade", value: "PG Unleashed (Perfect Grade)" }, { name: "Scale", value: "1/60" }, { name: "Parts Count", value: "500+" }],
|
|
4035
|
+
features: ["Internal LED system", "500+ parts", "Fully articulated Core Fighter", "1/60 scale flagship kit"],
|
|
4036
|
+
shippingInfo: "Extra large box shipped on dedicated pallet. 4–6 business days. Insured.",
|
|
4037
|
+
returnPolicy: "7-day return if factory sealed.",
|
|
4038
|
+
allowOffers: true,
|
|
4039
|
+
minOfferPercent: 94,
|
|
4040
|
+
createdAt: daysAgo(1),
|
|
4041
|
+
updatedAt: daysAgo(1),
|
|
4042
|
+
},
|
|
4043
|
+
{
|
|
4044
|
+
id: "product-hg-calibarn-witch-mercury",
|
|
4045
|
+
slug: "product-hg-calibarn-witch-mercury",
|
|
4046
|
+
title: "Bandai HG 1/144: Gundam Calibarn — The Witch from Mercury",
|
|
4047
|
+
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.",
|
|
4048
|
+
category: "category-gunpla",
|
|
4049
|
+
categoryName: "Gunpla",
|
|
4050
|
+
brand: "brand-bandai",
|
|
4051
|
+
price: 279900,
|
|
4052
|
+
currency: "INR",
|
|
4053
|
+
stockQuantity: 6,
|
|
4054
|
+
availableQuantity: 6,
|
|
4055
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
4056
|
+
images: [
|
|
4057
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
4058
|
+
],
|
|
4059
|
+
status: "published",
|
|
4060
|
+
storeName: "Gundam Galaxy",
|
|
4061
|
+
storeId: "store-gundam-galaxy",
|
|
4062
|
+
featured: false,
|
|
4063
|
+
isAuction: false,
|
|
4064
|
+
isPreOrder: false,
|
|
4065
|
+
isPromoted: false,
|
|
4066
|
+
tags: ["gunpla", "hg", "1-144", "calibarn", "witch-from-mercury", "bandai"],
|
|
4067
|
+
condition: "new",
|
|
4068
|
+
specifications: [{ name: "Grade", value: "HG (High Grade)" }, { name: "Scale", value: "1/144" }, { name: "Series", value: "The Witch from Mercury" }],
|
|
4069
|
+
features: ["GUND-bit effect parts", "Articulated HG joints", "Snap-fit no glue", "Weapon accessories"],
|
|
4070
|
+
shippingInfo: "Original Bandai box. 2–4 business days.",
|
|
4071
|
+
returnPolicy: "7-day return if sealed.",
|
|
4072
|
+
allowOffers: false,
|
|
4073
|
+
createdAt: daysAgo(7),
|
|
4074
|
+
updatedAt: daysAgo(1),
|
|
4075
|
+
},
|
|
4076
|
+
{
|
|
4077
|
+
id: "product-mg-strike-freedom-gundam",
|
|
4078
|
+
slug: "product-mg-strike-freedom-gundam",
|
|
4079
|
+
title: "Bandai MG 1/100: ZGMF-X20A Strike Freedom Gundam (Full Burst Mode)",
|
|
4080
|
+
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.",
|
|
4081
|
+
category: "category-gunpla",
|
|
4082
|
+
categoryName: "Gunpla",
|
|
4083
|
+
brand: "brand-bandai",
|
|
4084
|
+
price: 699900,
|
|
4085
|
+
currency: "INR",
|
|
4086
|
+
stockQuantity: 3,
|
|
4087
|
+
availableQuantity: 3,
|
|
4088
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
4089
|
+
images: [
|
|
4090
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
4091
|
+
],
|
|
4092
|
+
status: "published",
|
|
4093
|
+
storeName: "Gundam Galaxy",
|
|
4094
|
+
storeId: "store-gundam-galaxy",
|
|
4095
|
+
featured: false,
|
|
4096
|
+
isAuction: false,
|
|
4097
|
+
isPreOrder: false,
|
|
4098
|
+
isPromoted: false,
|
|
4099
|
+
tags: ["gunpla", "mg", "1-100", "strike-freedom", "gundam-seed", "master-grade", "bandai"],
|
|
4100
|
+
condition: "new",
|
|
4101
|
+
specifications: [{ name: "Grade", value: "MG (Master Grade)" }, { name: "Scale", value: "1/100" }, { name: "Series", value: "Gundam SEED Destiny" }],
|
|
4102
|
+
features: ["Gold wings of light (metal-coat)", "14 dragoon beam guns", "Full Burst Mode posed", "Dual beam rifles"],
|
|
4103
|
+
shippingInfo: "Carefully packed in double-wall outer box. 3–5 days.",
|
|
4104
|
+
returnPolicy: "7-day return if factory sealed.",
|
|
4105
|
+
allowOffers: true,
|
|
4106
|
+
minOfferPercent: 90,
|
|
4107
|
+
createdAt: daysAgo(15),
|
|
4108
|
+
updatedAt: daysAgo(3),
|
|
4109
|
+
},
|
|
4110
|
+
// ── Store: Vintage Vault — products 99–100 ───────────────────────────────────
|
|
4111
|
+
{
|
|
4112
|
+
id: "product-hot-wheels-twin-mill-1970-redline",
|
|
4113
|
+
slug: "product-hot-wheels-twin-mill-1970-redline",
|
|
4114
|
+
title: "Hot Wheels Vintage: Twin Mill I — 1970 Redline (Brown, Near Mint)",
|
|
4115
|
+
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.",
|
|
4116
|
+
category: "category-vintage-figures",
|
|
4117
|
+
categoryName: "Vintage Figures",
|
|
4118
|
+
brand: "brand-hot-wheels",
|
|
4119
|
+
price: 699900,
|
|
4120
|
+
currency: "INR",
|
|
4121
|
+
stockQuantity: 1,
|
|
4122
|
+
availableQuantity: 1,
|
|
4123
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
4124
|
+
images: [
|
|
4125
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
4126
|
+
],
|
|
4127
|
+
status: "published",
|
|
4128
|
+
storeName: "Vintage Vault",
|
|
4129
|
+
storeId: "store-vintage-vault",
|
|
4130
|
+
featured: true,
|
|
4131
|
+
isAuction: false,
|
|
4132
|
+
isPreOrder: false,
|
|
4133
|
+
isPromoted: true,
|
|
4134
|
+
tags: ["hot-wheels", "twin-mill", "1970", "redline", "vintage", "rare", "diecast"],
|
|
4135
|
+
condition: "used",
|
|
4136
|
+
specifications: [{ name: "Year", value: "1970" }, { name: "Color", value: "Brown" }, { name: "Tyres", value: "Redline" }, { name: "Condition", value: "Near Mint" }],
|
|
4137
|
+
features: ["1970 first-year Twin Mill", "Correct Redline tyres", "Strong brown colour", "Near Mint condition — minimal wear"],
|
|
4138
|
+
shippingInfo: "Shipped in individual bubble-wrap inside padded rigid mailer. Tracked and insured.",
|
|
4139
|
+
returnPolicy: "3-day return if car is not as described.",
|
|
4140
|
+
allowOffers: true,
|
|
4141
|
+
minOfferPercent: 88,
|
|
4142
|
+
createdAt: daysAgo(30),
|
|
4143
|
+
updatedAt: daysAgo(5),
|
|
4144
|
+
},
|
|
4145
|
+
{
|
|
4146
|
+
id: "product-gijoe-hawk-v1-1983-moc",
|
|
4147
|
+
slug: "product-gijoe-hawk-v1-1983-moc",
|
|
4148
|
+
title: "G.I. Joe: Hawk v1 (1983) — MOC (Mint On Card, Straight-Cut)",
|
|
4149
|
+
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.",
|
|
4150
|
+
category: "category-vintage-figures",
|
|
4151
|
+
categoryName: "Vintage Figures",
|
|
4152
|
+
brand: "brand-hasbro",
|
|
4153
|
+
price: 1499900,
|
|
4154
|
+
currency: "INR",
|
|
4155
|
+
stockQuantity: 1,
|
|
4156
|
+
availableQuantity: 1,
|
|
4157
|
+
mainImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
4158
|
+
images: [
|
|
4159
|
+
"https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&h=800&fit=crop",
|
|
4160
|
+
],
|
|
4161
|
+
status: "published",
|
|
4162
|
+
storeName: "Vintage Vault",
|
|
4163
|
+
storeId: "store-vintage-vault",
|
|
4164
|
+
featured: true,
|
|
4165
|
+
isAuction: false,
|
|
4166
|
+
isPreOrder: false,
|
|
4167
|
+
isPromoted: true,
|
|
4168
|
+
tags: ["gi-joe", "hawk", "1983", "moc", "vintage", "hasbro", "real-american-hero", "rare"],
|
|
4169
|
+
condition: "used",
|
|
4170
|
+
specifications: [{ name: "Year", value: "1983" }, { name: "Version", value: "v1" }, { name: "Carded", value: "MOC (Mint On Card)" }, { name: "Card Cut", value: "Straight-cut" }],
|
|
4171
|
+
features: ["Mint On Card — bubble intact", "Zero bubble yellowing", "Straight-cut card", "1983 first-year Hawk Commander"],
|
|
4172
|
+
shippingInfo: "Carded figure shipped in rigid acrylic case inside padded mailer. Insured.",
|
|
4173
|
+
returnPolicy: "3-day return window if item is not as described.",
|
|
4174
|
+
allowOffers: true,
|
|
4175
|
+
minOfferPercent: 90,
|
|
4176
|
+
createdAt: daysAgo(45),
|
|
4177
|
+
updatedAt: daysAgo(7),
|
|
4178
|
+
},
|
|
4179
|
+
];
|