Price
$223.65

Orca Odyssey 12.20 Inches | Dazzling Tentacle Temptation 🌊🐉🌠

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

Introducing the Orca Tentacle Dildo: Your Ticket to Oceanic Pleasure!

Orca, the tentacle-inspired dildo, is the perfect toy to unleash your deep oceanic desires. Handcrafted with body-safe platinum-cured medical silicone, this dildo is designed to be fully waterproof and hypoallergenic, making it an ideal choice for those who want peace of mind while exploring their intimate desires.

Item Dimensions:

  • Total length - 31 cm (12.2 inches)
  • Insertable length - 27 cm (10.63 inches)
  • Circumference of the upper part - 10 cm (3.94 inches)
  • Circumference of the central part - 15 cm (5.91 inches)
  • Circumference of the lower part - 21 cm (8.27 inches)
  • Base diameter - 17.5 cm by 12 cm (6.89 inches by 4.72 inches)

Bringing Your Fantasies to Life with Intricate Detail

With a stunning design that showcases intricate detail, from tip to base, Orca is poised to lead you to a hurricane of explosive sexual experiences. The smooth shaft provides gentle titillation and exhilarating stimulation, while the ridges along the length of the toy guarantee maximum penetration and satisfying sensations.

Stays Put for Maximum Pleasure: Suction Cup Included

Orca's powerful suction cup makes it possible for you to attach the toy to any smooth surface, ensuring that it stays in place during even the most intense moments of play. This allows you to fully concentrate on the pleasurable sensations and reach the height of ecstasy without any distractions.

Experience Unprecedented Sensations: Orca's Specifications

Orca's 31 cm total length, 27 cm insertable length, and varying circumferences provide you with all the room you need to fully explore your intimate desires. The 10 cm circumference of the upper part, 15 cm of the central part, and 21 cm of the lower part will bring you to orgasmic bliss as the toy's increasing thickness and delicate texture provide gratifying stimulation.

100% Body-Safe and Handmade with the Finest Platinum Silicone

Bad Wolf® hand pours its creations using only the finest platinum silicone available, making for a safer, higher-quality finished product. The chosen silicone for each hand-made Bad Wolf® fantasy toy is 100% body-safe, non-toxic, and phthalate-free, with a soft and supple texture that feels out of this world.

Ride the Wave of Ecstasy with Orca's Tentacle Dildo

Experience the purest form of pleasure and satisfaction with Orca's aggressive seahorse-inspired design. Embrace your oceanic fantasies and take a dive into the world of sexplosive finales with the help of this unique and breathtaking dildo.

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.