Lockways Plasticine Easter Dinosaur Egg Set, Dinosaur Play Clay Shape Molds Basket Stuffers Filler

Lockways Plasticine Easter Dinosaur Egg Set, Dinosaur Play Clay Shape Molds Basket Stuffers Filler

$32.99
Quantity

Description

Crack Open a Jurassic Adventure This Easter! Picture this: Easter morning sunlight spills through the windows as excited hands reach into a basket—not just for candy, but for magic. Tiny fingers pry open a speckled egg, and inside isn’t chocolate… it’s ​dinosaur Easter basket stuffers that spark roars of delight. Welcome to Lockways’ ​Plasticine Dinosaur Egg Set, where prehistoric play meets Easter tradition, and creativity hatches something wild. The “Uh-Oh” Moment That Started It All You know that split second when a plastic egg rolls under the couch, lost forever? Yeah, we’ve been there too. That’s why we reimagined ​Easter eggs as something worth keeping. Our ​dinosaur eggs molds aren’t just fillers—they’re treasure chests of imagination. Crack open each ​clay shape mold to find 8 vibrant colors of squishy, wheat-based dough, ready to shape T-Rexes, triceratops, and whatever Jurassic mashup their minds invent. Why These Aren’t Your Grandma’s Easter Eggs ​Easter Basket Stuffers That Teach Stealth Skills: As they roll out dino spines or mold a stegosaurus’s plates, they’re secretly leveling up hand-eye coordination and patience. The ​dinosaur clay molds are like a creativity gym—no membership required. Teamwork Makes the Dino Dream Work: Host a “dino dig” with friends! The ​plasticine dinosaur toys come with tools for four, so budding paleontologists can collaborate on a clay volcano or a rainbow brachiosaurus. Pro tip: Display their masterpieces as ​Easter decor—it’s a museum-worthy upgrade from dyed eggs. Safety You Can Trust (Even When Curiosity Strikes): Made from safe wheat-based dough and eco-friendly plastic, these ​Easter basket stuffers for toddlers are so safe, you could almost mistake the clay for cookie dough (but trust us, it’s way less tasty). Rounded edges? Check. Messy fun? Double-check. From “Meh” to “Mesozoic” in 3 Steps ​Step 1: Tuck these ​dinosaur Easter basket stuffers into ​stuffed Easter baskets alongside chocolate bunnies. Watch their eyes widen at the real treasure. ​Step 2: Unbox the ​dinosaur play clay molds and let the Jurassic jamboree begin. Will they craft a neon velociraptor? A glittery pterodactyl? The suspense is half the fun. ​Step 3: Sit back as they engineer a dino world on the kitchen table—no screens needed. Bonus points if you join in and “accidentally” sculpt a cookie-shaped T-Rex. Why Parents Are Ditching Ordinary Easter Eggs 5 eggs + 8 colors = Hours of play (and a break from “I’m bored!”) Safe materials = Peace of mind during messy adventures Reusable molds = Endless replays of “Dino vs. Volcano” Fits any basket = Perfect for ​Easter baskets for boys, ​girls, or anyone who loves a good roar The Perfect Egg-stra Something Tired of stuffing baskets with sugar crashes? Lockways’ ​dinosaur plasticine toys are the ​Easter basket stuffers filler that keeps giving—long after the chocolate’s gone. Whether it’s for a classroom party, daycare surprise, or your own living room egg hunt, this set turns “ho-hum” into “holy Jurassic Park!” Final Roar: This isn’t just playdough. It’s a time machine to when imagination ruled the world. Stuff those ​Easter baskets, hide the eggs, and let the little ones unleash their inner Spielberg. Because Easter should be about memories—not just marshmallows.
Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.