🏆LAST DAY SALE 49% OFF - Mythical Pieces Dragon - Limited Edition🎉🎉Celebrating over 100,000+ orders in our store! 👇

🐉The dragon will guard your dreams:- 🔥Purple Dragon
$21.98
$42.98
-$21.00
Quantity
Description

🎉🎉Celebrating over 100,000+ orders in our store👇

As our orders have exceeded 100000+, we will realize a three-day price reduction here. Each piece is only $21.98. Buy 2 free shipping.

We are selling only 1000 of our best-selling items for $21.98 to celebrate our Order Breakthrough. After three-day, we will return to the original price of  $42.98

❤️TIPS: All goods are authentic, with genuine patents, counterfeit must be investigated! Customers, please identify our products!

“This is Berk,It snows nine months of the year and hails the other three。Any food that grows here is tough and tasteless.The people that grow here are even more so,The only upsides are the pets。While other places have ponies or parrots,We have Dragons.”

“The dragon's flame burns everything.The dragon is the true guardian of power, for a true sovereign.”

Don't let your kids get addicted to electronic devices, give them a creative and unique 3D Printed Dragon Eggs edutainment toy!

🐉The dragon will guard your dreams.

Catch your very own Dragon Egg! Come in a variety of colors. The Dragon Egg contains a flexible dragon. Since the opening of our shop, we have sold over 27,700!🐉

Our this 3D printed dragon is made of safe and environmentally friendly PLA, which is a food-grade, all-natural, non-hazardous, and fully biodegradable material that is great for children and home environments.🐉

Best gift ever! Don't need it to fidget?🐉 This beautiful dragon can double as decor - just wrap it around a plant, rock or any other object - you can even this water-proof dragon pose in an aquarium!🐉

Fully articulated dragon that can be posed, twisted and turned in any direction.🐉

Great for fidgeting and playing with, or as a dynamic piece of decor.🐉

Each articulated segment linked with durable joints that do not come apart.🐉

Whether you're a student, a professional, or just someone who needs to fidget, this is the perfect toy or decoration for you. Get yours today and start twisting and turning your way to a happier day!🐉

Say No To Harmful Screen Time - Say Yes To Dragon

Our Dragon is a new and unique toy for your little one.

Designed to keep your toddlers attention for hours on end - while developing important life skills!

Let Dragon Be Your Child's First Best Friend ❤️

Material: PLA

Size:Purple/Green/Orange/Luminescent egg height 3.35in/8.5cm

       Purple/Green/Orange/Luminescent dragon length 8.67in/22cm

       Rainbow egg height 5.12in/13cm

       Rainbow dragon length 11.42in/29cm

       Flight egg height  4.96in/12.6cm

       Flight dragon length 8.67in/22cm

“This is Berk,It snows nine months of the year and hails the other three. Any food that grows here is tough and tasteless.The people that grow here are even more so,The only upsides are the pets。While other places have ponies or parrots,We have Dragons.”

🎁It's a perfect gift for your friends & family!


⚡️Stock sells fast - Get yours today!

💐WHY US

We work directly with manufacturers all over the world to ensure the best quality of our products. We have a Quality Control department which helps us to keep our promise!
  • 🔥Price is always competitive.
  • 😊Awesome Customer Service.
  • 🏆Amazing products along with High Quality.
  • 🍭Read reviews from our lovely customers.

RETURN & WARRANTY

💰 Money-Back Guarantee:If you bought it and felt that it is not for you, don't worry. Just shoot us a message at contact 📪ustiquemasejoy@gmail.com, and we will make it right by offering you a replacement or refund. 100% Simple & Risk-Free process.

HOW TO PAY

✅Payments Via PayPal®Debit and CreditCard.

   Add to cart first, and Check out, then select Shipping method and Payment method.

If you checkout with a Debit / Credit Card, just enter your * Card Number* Expiration Date, and * Secure Code.

🌎 Worldwide Shipping ✈  

Delivery typically takes different times based on the different destination. You may receive your items earlier. Tracking Numbers will always be sent so you can track it every step of the way! 
🔒 100% Risk-Free Purchase
If you bought it and felt that it is not for you, don't worry. Send a message for us, and we will make it right by offering you a replacement or refund. 100% Simple & Risk-Free process.
🏭 Our Warehouse 
We will choose the nearest warehouse according to your address for delivery.
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.