<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.0" exclude-result-prefixes="xs">
    <xsl:output method="xml" encoding="UTF-8" indent="yes"/>
    <xsl:template match="/">
        <tweakwise>
            <items>
            <xsl:for-each select="tweakwise/items/item">
            <item>
                <xsl:copy-of select="./id"/>
                <xsl:copy-of select="./name"/>
                <xsl:copy-of select="./image"/>
                <xsl:copy-of select="./url"/>
                <stock>0</stock>
                <price>0</price>
                <xsl:copy-of select="./attributes"/>
            </item>
            </xsl:for-each>
            </items>
        </tweakwise>
    </xsl:template>
</xsl:stylesheet>