Price
$398.95
$328.95
Save  $70.00

Draft Horse Dream 12.20 Inches | Thrilling Stallion Sensations 🏇💫🌟

cumtube
Yes
No
firmness
Soft
Medium
Firm
pigment pattern
Single Color
Split Color
Mixed Color (Marbled)
Quantity
GETTING CLOSER! ONLY $69.00 AWAY FROM FREE SHIPPING!
Estimated delivery between 5-15 business days &WanbExpress
Description

Discover the Majestic Beauty of the Draft Horse Dildo

The Draft Horse Dildo is an imaginative, handmade creation that brings together the beauty of horses and the excitement of adult toys. With its muscular build and large structure, the Draft Horse Dildo offers an experience unlike any other. Whether you're looking for an extra challenge or simply want to add a unique piece to your collection, this beautiful horse cock dildo is a must-have.

Item Dimensions

  • Total length - 12.20 in. / 31 cm
  • Insertable length - 10.62 in. / 27 cm
  • Head diameter - 3.22 in. / 8.2 cm
  • Head circumference - 10.23 in. / 26 cm
  • Median diameter - 2.91 in. / 7.4 cm
  • Median circumference - 9.25 in. / 23.5 cm
  • Base diameter - 2.91 in. / 7.4 cm
  • Base circumference - 9.25 in. / 23.5 cm

Get Ready for an Extraordinary Adventure with the Draft Horse

Looking for an exciting new addition to your collection? The Draft Horse Dildo offers just that. Its large size and powerful, muscular build make it the perfect choice for those seeking an extra challenge. With its big, mighty, yet still gentle and soft design, this dildo is sure to leave you begging for more.

Experience the Thrill of the Draft Horse

Featuring a beautifully crafted design and made from body-safe, platinum-cured medical silicone, the Draft Horse Dildo offers a sensually titillating experience like no other. With its large head, massive diameter, and overwhelming length, this toy is sure to exceed your expectations. Each animal dildo is hand-poured, ensuring that each one is unique and special.

Indulge in the Best Quality with the Draft Horse

The Draft Horse Dildo is made from the highest quality silicone available, which is the FDA's preference for medical-grade devices. The silicone used is 100% body-safe, non-toxic, and phthalate-free, ensuring that you can enjoy the experience without worrying about any adverse effects. The Bad Wolf® brand is known for its commitment to quality, and the Draft Horse Dildo is no exception.

Unleash Your Imagination with the Draft Horse

If you're ready to take your bedroom experiences up a notch, the Draft Horse Dildo is perfect for adding some extra kick and imagination. This luxurious sex toy features stunning design elements inspired by majestic horses - think strength meets beauty! With state-of-the-art technology that promises an unforgettable ride, this animal dildo will have both you and your partner begging for more naughty fun in no time. Dare to explore new realms of pleasure with the sensational Draft Horse Dildo – it's sure to bring sparks into any space!

Free shipping over $69

Free shipping over $69

Customer service

24/7 Customer Service

Secure payment

accept Paypal & Credit Card

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.