Creative Challenge
"A dragon blowing bubbles instead of fire."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<!-- Gradient for dragon body -->
<linearGradient id="dragonGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#4a7cdb"/>
<stop offset="100%" stop-color="#3b5998"/>
</linearGradient>
<!-- Gradient for bubbles -->
<radialGradient id="bubbleGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#a0e8ff" stop-opacity="0.9"/>
<stop offset="100%" stop-color="#ffffff" stop-opacity="0"/>
</radialGradient>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="#f0f8ff"/>
<!-- Dragon body (curved shape) -->
<path d="M100,250
Q80,200 120,150
Q100,130 160,130
Q150,170 200,140
Q220,160 180,200
Q220,250 100,250
Z" fill="url(#dragonGradient)" stroke="#333" stroke-width="2"/>
<!-- Dragon eye -->
<circle cx="165" cy="125" r="5" fill="#fff"/>
<circle cx="165" cy="125" r="2" fill="#000"/>
<!-- Dragon horns -->
<polygon points="140,120 150,100 130,110" fill="#ffcc00"/>
<polygon points="180,115 190,95 170,105" fill="#ffcc00"/>
<!-- Dragon nostrils -->
<circle cx="160" cy="135" r="2" fill="#333"/>
<circle cx="170" cy="138" r="2" fill="#333"/>
<!-- Bubble stream (descending and ascending bubbles) -->
<g>
<!-- Bubbles -->
<circle cx="150" cy="180" r="4" fill="url(#bubbleGradient)" opacity="0.8">
<animate attributeName="cx" values="150;160;150" dur="4s" repeatCount="indefinite"/>
<animate attributeName="cy" values="180;150;180" dur="4s" repeatCount="indefinite"/>
</circle>
<circle cx="160" cy="185" r="3" fill="url(#bubbleGradient)" opacity="0.7">
<animate attributeName="cx" values="160;170;160" dur="3.5s" repeatCount="indefinite"/>
<animate attributeName="cy" values="185;155;185" dur="3.5s" repeatCount="indefinite"/>
</circle>
<circle cx="155" cy="190" r="2" fill="url(#bubbleGradient)" opacity="0.6">
<animate attributeName="cx" values="155;165;155" dur="4.2s" repeatCount="indefinite"/>
<animate attributeName="cy" values="190;160;190" dur="4.2s" repeatCount="indefinite"/>
</circle>
<!-- Some ascending bubbles -->
<circle cx="170" cy="220" r="2.5" fill="url(#bubbleGradient)" opacity="0.8">
<animate attributeName="cx" values="170;155;170" dur="4.3s" repeatCount="indefinite"/>
<animate attributeName="cy" values="220;200;220" dur="4.3s" repeatCount="indefinite"/>
</circle>
<circle cx="165" cy="210" r="3" fill="url(#bubbleGradient)" opacity="0.75">
<animate attributeName="cx" values="165;180;165" dur="3.8s" repeatCount="indefinite"/>
<animate attributeName="cy" values="210;190;210" dur="3.8s" repeatCount="indefinite"/>
</circle>
</g>
<!-- Artistic metaphor: a subtle rainbow arc to symbolize the bubbles' colorful nature -->
<path d="M80,180 Q150,250 220,180" stroke="linear-gradient(to right, #fbc02d, #d500f9, #00e5ff)" stroke-width="4" fill="none" opacity="0.3"/>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="bubbleGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="rgba(255,255,255,0.9)"/>
<stop offset="70%" stop-color="rgba(135,206,235,0.6)"/>
<stop offset="100%" stop-color="rgba(135,206,235,0.2)"/>
</radialGradient>
<linearGradient id="dragonGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#9933ff"/>
<stop offset="100%" stop-color="#6600cc"/>
</linearGradient>
</defs>
<!-- Dragon Body -->
<path d="M120,150 C90,140 70,160 60,180 C50,200 70,220 90,210 C110,200 130,190 150,185 C180,178 200,180 220,190 L180,150 C160,130 140,140 120,150Z" fill="url(#dragonGrad)"/>
<!-- Dragon Head -->
<path d="M220,190 C240,195 250,185 255,175 C260,165 258,155 250,150 C242,145 230,148 225,155 C220,162 215,170 220,190Z" fill="url(#dragonGrad)"/>
<!-- Dragon Eye -->
<circle cx="240" cy="160" r="5" fill="#ffcc00"/>
<circle cx="240" cy="160" r="2" fill="#000"/>
<!-- Dragon Spikes -->
<path d="M120,150 L110,130 L130,145 L140,125 L150,142 L160,122 L170,140 L180,120 L190,138" fill="none" stroke="#9933ff" stroke-width="3"/>
<!-- Bubbles -->
<g class="bubbles">
<circle cx="270" cy="170" r="15" fill="url(#bubbleGrad)"/>
<circle cx="290" cy="155" r="10" fill="url(#bubbleGrad)"/>
<circle cx="280" cy="185" r="12" fill="url(#bubbleGrad)"/>
<circle cx="260" cy="150" r="8" fill="url(#bubbleGrad)"/>
<circle cx="275" cy="140" r="6" fill="url(#bubbleGrad)"/>
<circle cx="265" cy="190" r="9" fill="url(#bubbleGrad)"/>
</g>
<!-- Dragon Nostrils -->
<ellipse cx="255" cy="170" rx="2" ry="3" fill="#4d0099"/>
<ellipse cx="245" cy="170" rx="2" ry="3" fill="#4d0099"/>
<!-- Dragon Scales -->
<path d="M100,160 Q110,165 120,160 M110,170 Q120,175 130,170 M120,180 Q130,185 140,180" fill="none" stroke="#b366ff" stroke-width="2"/>
<!-- Small floating bubbles -->
<circle cx="285" cy="130" r="4" fill="url(#bubbleGrad)">
<animate attributeName="cy" values="130;120;130" dur="2s" repeatCount="indefinite"/>
</circle>
<circle cx="255" cy="135" r="3" fill="url(#bubbleGrad)">
<animate attributeName="cy" values="135;125;135" dur="1.5s" repeatCount="indefinite"/>
</circle>
</svg>
Judge's Analysis
Player 2's submission more effectively adheres to the prompt by depicting a dragon-like creature with clear bubble-blowing action, using vibrant colors and bubbly visual elements.
While Player 1's image is simple and abstract, it lacks clarity and visual elements that strongly convey the idea of a dragon blowing bubbles.
Player 2's composition is more creative and visually appealing overall.
These metrics analyze technical aspects of both SVG drawings. Look for differences that might explain the judge's decision. Use the "View Code" button above to see the SVG code for each drawing.
Shapes Metrics
The total number of shape elements (rect, circle, ellipse, line, polygon, polyline, path) in the SVG.
The number of rectangle elements (rect) in the SVG.
The number of circle elements (circle) in the SVG.
The number of ellipse elements (ellipse) in the SVG.
The number of line elements (line) in the SVG.
The number of polygon elements (polygon) in the SVG.
The number of path elements (path) in the SVG.
The number of group elements (g) in the SVG.
Visual Effects Metrics
The number of gradient definitions (linearGradient, radialGradient) in the SVG.
The number of pattern definitions (pattern) in the SVG.
The number of filter definitions (filter) in the SVG.
The number of mask definitions (mask) in the SVG.
The number of clipping path definitions (clipPath) in the SVG.
The number of elements with opacity attributes in the SVG.
The number of elements with stroke attributes in the SVG.
Colors Metrics
The number of unique colors used in the SVG.
Interactivity Metrics
The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.
The number of elements with transform attributes in the SVG.
Complexity Metrics
The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.
The maximum nesting level of group elements (g) in the SVG.
The number of elements defined within the defs element in the SVG.
The number of use elements (use) in the SVG.
Text Metrics
The number of text elements (text) in the SVG.
AI Judging Process
Creativity
Originality, innovative use of shapes and unique approach to the prompt.
Prompt Adherence
How accurately the SVG captures the essence of the prompt.
Visual Appeal
Aesthetic quality including composition, color usage and overall visual impact.
How does judging work?
SVG drawings are converted to static PNG images for evaluation. The AI judge receives the original prompt and both images, then determines which drawing better fulfills the evaluation criteria without seeing animations, interactivity, or SVG code.
Similar Challenges
"A melting clock perched on a mushroom under a starlit sky."
"An octopus juggling planets under a starry sky."
"A snail racing against a cheetah across a winding rainbow road."
"An octopus juggling colorful planets under a starry sky."