Big Dragon Scales Shawl Kit

Island Yarn


$ 99.99

Our new kit - Big Dragon Scales a larger version made just for supremely colorful Noro Ito!  Like the original, it is SUCH an addictive knit.  Watching the colors play over this surprisingly easy stitch pattern is a true delight.

I love this stitch pattern like you wouldn’t believe.  Though I’ve never found it in a book, it came into being so naturally on a swatch, I now want it on a million different projects.  Based on the old honeycomb slip stitch pattern, it is more layered to create a dragon scale or a peacock feather look.  Once you do a couple of repeats, it’ll become really intuitive. The colors are used almost equally, so just label C1 and C2 however you like. The sample is color 3 and 29.

This kit includes all the Ito you need (1 each of your 2 color choices) and a pattern download code.  You'll need a Size US 10 needle.

The finished size of this shawl is approx 60” wingspan x 28” depth and is easy to adjust either bigger or smaller, but you will need more yarn if you are going larger.  If you want two colors that are in the same option box, feel free to leave the colors in the notes to us!  And really, don't stress about the colors - Noro colors marry together so well that you would have to REALLY try to go wrong!

 

**This item ships for FREE within the US**

Related Products


const selectVariantByClickingImage = { // Create variant images from productJson object _createVariantImage: function (product) { const variantImageObject = {}; product.variants.forEach((variant) => { if ( typeof variant.featured_image !== 'undefined' && variant.featured_image !== null ) { const variantImage = variant.featured_image.src .split('?')[0] .replace(/http(s)?:/, ''); variantImageObject[variantImage] = variantImageObject[variantImage] || {}; product.options.forEach((option, index) => { const optionValue = variant.options[index]; const optionKey = `option-${index}`; if ( typeof variantImageObject[variantImage][optionKey] === 'undefined' ) { variantImageObject[variantImage][optionKey] = optionValue; } else { const oldValue = variantImageObject[variantImage][optionKey]; if (oldValue !== null && oldValue !== optionValue) { variantImageObject[variantImage][optionKey] = null; } } }); } }); return variantImageObject; }, _updateVariant: function (event, id, product, variantImages) { const arrImage = event.target.src .split('?')[0] .replace(/http(s)?:/, '') .split('.'); const strExtention = arrImage.pop(); const strRemaining = arrImage.pop().replace(/_[a-zA-Z0-9@]+$/, ''); const strNewImage = `${arrImage.join('.')}.${strRemaining}.${strExtention}`; if (typeof variantImages[strNewImage] !== 'undefined') { product.variants.forEach((option, index) => { const optionValue = variantImages[strNewImage][`option-${index}`]; if (optionValue !== null && optionValue !== undefined) { const selects = document.querySelectorAll('#'+ id + ' [class*=single-option-selector]'); const options = selects[index].options; for (let option, n = 0; (option = options[n]); n += 1) { if (option.value === optionValue) { selects[index].selectedIndex = n; selects[index].dispatchEvent(new Event('change')); break; } } } }); } }, _selectVariant: function() { const productJson = document.querySelectorAll('[id^=ProductJson-'); if (productJson.length > 0) { productJson.forEach((product) => { const sectionId = product.id.replace("ProductJson-", "shopify-section-"); const thumbnails = document.querySelectorAll('#'+ sectionId + ' img[src*="/products/"]'); if (thumbnails.length > 1) { const productObject = JSON.parse(product.innerHTML); const variantImages = this._createVariantImage(productObject); // need to check variants > 1 if (productObject.variants.length > 1) { thumbnails.forEach((thumbnail) => { thumbnail.addEventListener('click', (e) => this._updateVariant(e, sectionId, productObject, variantImages), ); }); } } }); } }, }; if (document.readyState !== 'loading') { selectVariantByClickingImage._selectVariant(); } else { document.addEventListener( 'DOMContentLoaded', selectVariantByClickingImage._selectVariant(), ); }