Creative Challenge
"Two penguins swordfighting with candy canes on an iceberg."
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background and Definitions -->
<defs>
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#c4e0f9" />
<stop offset="100%" stop-color="#4a87c5" />
</linearGradient>
<linearGradient id="candyStripes1" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#ffffff" />
<stop offset="20%" stop-color="#ffffff" />
<stop offset="20%" stop-color="#ff0000" />
<stop offset="40%" stop-color="#ff0000" />
<stop offset="40%" stop-color="#ffffff" />
<stop offset="60%" stop-color="#ffffff" />
<stop offset="60%" stop-color="#ff0000" />
<stop offset="80%" stop-color="#ff0000" />
<stop offset="80%" stop-color="#ffffff" />
<stop offset="100%" stop-color="#ffffff" />
</linearGradient>
<linearGradient id="candyStripes2" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#ff0000" />
<stop offset="16.6%" stop-color="#ff0000" />
<stop offset="16.6%" stop-color="#ffffff" />
<stop offset="33.3%" stop-color="#ffffff" />
<stop offset="33.3%" stop-color="#ff0000" />
<stop offset="50%" stop-color="#ff0000" />
<stop offset="50%" stop-color="#ffffff" />
<stop offset="66.6%" stop-color="#ffffff" />
<stop offset="66.6%" stop-color="#ff0000" />
<stop offset="83.3%" stop-color="#ff0000" />
<stop offset="83.3%" stop-color="#ffffff" />
<stop offset="100%" stop-color="#ffffff" />
</linearGradient>
<filter id="glow" x="-20%" y="-20%" width="140%" height="140%">
<feGaussianBlur stdDeviation="3" result="blur" />
<feComposite operator="over" in="SourceGraphic" in2="blur" />
</filter>
<filter id="shadowFilter" x="-20%" y="-20%" width="140%" height="140%">
<feGaussianBlur in="SourceAlpha" stdDeviation="2" />
<feOffset dx="3" dy="3" />
<feComponentTransfer>
<feFuncA type="linear" slope="0.5" />
</feComponentTransfer>
<feMerge>
<feMergeNode />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
<radialGradient id="icebergGradient" cx="50%" cy="50%" r="70%" fx="30%" fy="30%">
<stop offset="0%" stop-color="#ffffff" />
<stop offset="70%" stop-color="#e6f5ff" />
<stop offset="100%" stop-color="#b3e0ff" />
</radialGradient>
<pattern id="snowPattern" width="100" height="100" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="1" fill="white" />
<circle cx="30" cy="25" r="0.8" fill="white" />
<circle cx="55" cy="45" r="1.2" fill="white" />
<circle cx="70" cy="10" r="0.6" fill="white" />
<circle cx="90" cy="30" r="1" fill="white" />
<circle cx="40" cy="80" r="0.8" fill="white" />
<circle cx="80" cy="70" r="1.1" fill="white" />
</pattern>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<rect width="300" height="300" fill="url(#snowPattern)" opacity="0.5" />
<!-- Northern Lights -->
<path d="M0,50 Q75,20 150,40 Q225,60 300,30" fill="none" stroke="#80ffaa" stroke-width="10" stroke-opacity="0.3" filter="url(#glow)" />
<path d="M0,80 Q100,100 200,70 Q250,60 300,80" fill="none" stroke="#c080ff" stroke-width="15" stroke-opacity="0.2" filter="url(#glow)" />
<!-- Iceberg -->
<path d="M10,240 L30,220 L50,230 L70,210 L90,225 L120,205 L150,215 L170,195 L190,210 L210,195 L240,220 L260,205 L290,240 L290,300 L10,300 Z" fill="url(#icebergGradient)" filter="url(#shadowFilter)" />
<!-- Ice Details -->
<path d="M50,230 L60,225 M90,225 L100,220 M150,215 L160,210 M190,210 L200,200 M240,220 L250,215" stroke="white" stroke-width="1" stroke-opacity="0.7" />
<ellipse cx="150" cy="290" rx="150" ry="5" fill="#b3e0ff" opacity="0.6" />
<!-- Left Penguin (Fancy Noble) -->
<g transform="translate(100, 210) scale(0.9) rotate(-15)">
<!-- Body -->
<ellipse cx="0" cy="0" rx="25" ry="35" fill="#1a1a1a" />
<ellipse cx="5" cy="5" rx="15" ry="25" fill="white" />
<!-- Feet -->
<path d="M-10,30 L-20,40 L-5,40 Z" fill="#ff9933" />
<path d="M10,30 L25,40 L5,40 Z" fill="#ff9933" />
<!-- Arms -->
<path d="M-20,-5 L-40,15" stroke="#1a1a1a" stroke-width="6" stroke-linecap="round" />
<path d="M20,-5 L30,15" stroke="#1a1a1a" stroke-width="6" stroke-linecap="round" />
<!-- Head -->
<ellipse cx="0" cy="-25" rx="18" ry="15" fill="#1a1a1a" />
<!-- Face -->
<circle cx="8" cy="-28" r="4" fill="white" />
<circle cx="8" cy="-28" r="2" fill="black" />
<circle cx="-8" cy="-28" r="4" fill="white" />
<circle cx="-8" cy="-28" r="2" fill="black" />
<path d="M0,-22 L10,-18 L0,-16 L-10,-18 Z" fill="#ff9933" />
<!-- Monocle -->
<circle cx="8" cy="-28" r="6" fill="none" stroke="gold" stroke-width="1" />
<path d="M8,-22 L10,-15" stroke="gold" stroke-width="1" />
<!-- Top Hat -->
<rect x="-10" y="-47" width="20" height="15" fill="#330000" />
<rect x="-15" y="-33" width="30" height="3" fill="#330000" />
<path d="M-8,-47 L8,-47 L8,-42 L-8,-42 Z" fill="red" />
</g>
<!-- Right Penguin (Pirate) -->
<g transform="translate(200, 215) scale(0.9) rotate(15)">
<!-- Body -->
<ellipse cx="0" cy="0" rx="25" ry="35" fill="#000000" />
<ellipse cx="-5" cy="5" rx="15" ry="25" fill="#f0f0f0" />
<!-- Feet -->
<path d="M-10,30 L-20,40 L-5,40 Z" fill="#ff9933" />
<path d="M10,30 L25,40 L5,40 Z" fill="#ff9933" />
<!-- Arms -->
<path d="M-20,-5 L-30,15" stroke="#000000" stroke-width="6" stroke-linecap="round" />
<path d="M20,-5 L40,15" stroke="#000000" stroke-width="6" stroke-linecap="round" />
<!-- Head -->
<ellipse cx="0" cy="-25" rx="18" ry="15" fill="#000000" />
<!-- Face -->
<circle cx="-8" cy="-28" r="4" fill="white" />
<circle cx="-8" cy="-28" r="2" fill="black" />
<path d="M0,-22 L10,-18 L0,-16 L-10,-18 Z" fill="#ff9933" />
<!-- Eye Patch -->
<path d="M2,-32 A10,8 0 0 1 14,-28" stroke="black" stroke-width="2" />
<path d="M8,-28 A5,5 0 0 1 14,-25" stroke="black" stroke-width="2" />
<rect x="8" y="-33" width="8" height="8" fill="black" />
<!-- Pirate Hat -->
<path d="M-15,-35 L15,-35 L5,-45 L-25,-45 Z" fill="#330000" />
<path d="M-15,-35 L15,-35 L15,-40 L-15,-40 Z" fill="#cc0000" />
<circle cx="0" cy="-38" r="3" fill="white" />
<path d="M0,-38 L-2,-41 L0,-44 L2,-41 Z" fill="black" />
</g>
<!-- Left Candy Cane Sword -->
<g filter="url(#shadowFilter)">
<!-- Handle -->
<rect x="50" y="200" width="15" height="25" rx="3" fill="darkred" />
<ellipse cx="58" cy="200" rx="10" ry="3" fill="gold" />
<!-- Blade -->
<path d="M58,200 L120,130" stroke-width="8" stroke="url(#candyStripes1)" stroke-linecap="round" />
<!-- Hook -->
<path d="M120,130 Q130,120 128,110 Q125,100 115,105" stroke-width="8" stroke="url(#candyStripes1)" fill="none" stroke-linecap="round" />
</g>
<!-- Right Candy Cane Sword -->
<g filter="url(#shadowFilter)">
<!-- Handle -->
<rect x="235" y="200" width="15" height="25" rx="3" fill="#222222" />
<path d="M235,200 C232,195 238,190 250,195" fill="#444444" />
<!-- Blade -->
<path d="M242,200 L180,130" stroke-width="10" stroke="url(#candyStripes2)" stroke-linecap="round" />
<!-- Guard -->
<ellipse cx="242" cy="200" rx="8" ry="4" fill="#444444" />
</g>
<!-- Clash Effect -->
<g transform="translate(150, 120)" filter="url(#glow)">
<circle cx="0" cy="0" r="15" fill="white" opacity="0.7" />
<path d="M0,0 L15,-15 M0,0 L-15,15 M0,0 L15,15 M0,0 L-15,-15" stroke="yellow" stroke-width="3" />
<path d="M0,0 L0,-20 M0,0 L0,20 M0,0 L20,0 M0,0 L-20,0" stroke="white" stroke-width="2" />
<!-- Flying Candy Pieces -->
<path d="M5,10 L15,25" stroke="red" stroke-width="3" />
<path d="M-8,7 L-20,15" stroke="white" stroke-width="3" />
<path d="M-5,-8 L-15,-18" stroke="red" stroke-width="3" />
<path d="M7,-5 L18,-12" stroke="white" stroke-width="3" />
</g>
<!-- Motion Lines -->
<path d="M70,180 C85,165 100,150 110,145" stroke="white" stroke-width="1.5" stroke-dasharray="5,3" opacity="0.7" />
<path d="M230,180 C215,165 200,150 190,145" stroke="white" stroke-width="1.5" stroke-dasharray="5,3" opacity="0.7" />
<!-- Snow Piles -->
<ellipse cx="65" cy="235" rx="20" ry="5" fill="white" opacity="0.8" />
<ellipse cx="235" cy="232" rx="15" ry="4" fill="white" opacity="0.8" />
<ellipse cx="150" cy="245" rx="40" ry="8" fill="white" opacity="0.6" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Iceberg -->
<path d="M150, 280 C 120, 220 180, 220 150, 280" fill="#87CEEB" stroke="#4682B4" stroke-width="5" />
<path d="M150, 280 C 100, 200 200, 200 150, 280" fill="#87CEEB" stroke="#4682B4" stroke-width="5" opacity="0.5" />
<path d="M150, 280 C 80, 180 220, 180 150, 280" fill="#87CEEB" stroke="#4682B4" stroke-width="5" opacity="0.2" />
<!-- Penguins -->
<g transform="translate(100, 150)">
<path d="M0, 0 C -10, 20 10, 20 0, 0" fill="#000" />
<ellipse cx="0" cy="25" rx="15" ry="20" fill="#fff" stroke="#000" stroke-width="2" />
<ellipse cx="0" cy="50" rx="10" ry="15" fill="#fff" stroke="#000" stroke-width="2" />
<path d="M-15, 35 C 0, 40 15, 35" stroke="#000" stroke-width="2" fill="none" />
<path d="M0, 60 C -20, 50 20, 50 0, 60" fill="#FFC080" stroke="#FFA07A" stroke-width="2" />
</g>
<g transform="translate(200, 150)">
<path d="M0, 0 C -10, 20 10, 20 0, 0" fill="#000" />
<ellipse cx="0" cy="25" rx="15" ry="20" fill="#fff" stroke="#000" stroke-width="2" />
<ellipse cx="0" cy="50" rx="10" ry="15" fill="#fff" stroke="#000" stroke-width="2" />
<path d="M-15, 35 C 0, 40 15, 35" stroke="#000" stroke-width="2" fill="none" />
<path d="M0, 60 C -20, 50 20, 50 0, 60" fill="#FFC080" stroke="#FFA07A" stroke-width="2" />
</g>
<!-- Candy Canes -->
<g transform="translate(120, 120)">
<path d="M0, 0 C 10, 20 10, 40 0, 60" stroke="#FF0000" stroke-width="5" fill="none" />
<path d="M0, 0 C -10, 20 -10, 40 0, 60" stroke="#FF0000" stroke-width="5" fill="none" />
<path d="M-5, 30 C 5, 30 5, 50 -5, 50" fill="#FFC080" stroke="#FFA07A" stroke-width="2" />
</g>
<g transform="translate(180, 120)">
<path d="M0, 0 C 10, 20 10, 40 0, 60" stroke="#FF0000" stroke-width="5" fill="none" />
<path d="M0, 0 C -10, 20 -10, 40 0, 60" stroke="#FF0000" stroke-width="5" fill="none" />
<path d="M-5, 30 C 5, 30 5, 50 -5, 50" fill="#FFC080" stroke="#FFA07A" stroke-width="2" />
</g>
<!-- Swordfighting -->
<path d="M120, 150 C 150, 120 180, 180 120, 150" stroke="#FF0000" stroke-width="5" fill="none" />
<path d="M180, 150 C 150, 120 120, 180 180, 150" stroke="#FF0000" stroke-width="5" fill="none" />
<!-- Shadows -->
<ellipse cx="120" cy="170" rx="10" ry="5" fill="#808080" opacity="0.5" />
<ellipse cx="180" cy="170" rx="10" ry="5" fill="#808080" opacity="0.5" />
</svg>
Judge's Analysis
Player 1's image is more visually appealing and adheres closely to the prompt by depicting two penguins on an iceberg actively swordfighting with candy canes.
It shows creativity and technical quality with the inclusion of the aurora and expressive penguin designs.
Player 2's image is abstract and lacks clear adherence to the prompt, making it less effective in conveying the idea.
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 snail racing a rocket on a winding, abstract track."
"A giraffe in a spacesuit playing chess with a floating jellyfish"
"Clockwork butterfly with gears for wings fluttering above a blooming metal flower"
"Floating city on giant turtle's back in a starry sky"