Creative Challenge
"An alien watering plants on the moon under a glowing Earth."
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="spaceGradient" cx="50%" cy="50%" r="75%">
<stop offset="0%" stop-color="#001" />
<stop offset="100%" stop-color="#034" />
</radialGradient>
<radialGradient id="earthGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#3b82f6" />
<stop offset="50%" stop-color="#22d3ee" />
<stop offset="100%" stop-color="#2563eb" />
</radialGradient>
<filter id="glow">
<feGaussianBlur in="SourceGraphic" stdDeviation="3" result="blur"/>
<feMerge>
<feMergeNode in="blur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<linearGradient id="moonSurfaceGradient" x1="0" y1="200" x2="0" y2="300">
<stop offset="0%" stop-color="#bbb" />
<stop offset="100%" stop-color="#888" />
</linearGradient>
<radialGradient id="alienGradient" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#7fdb7f" />
<stop offset="100%" stop-color="#39ff14" />
</radialGradient>
<linearGradient id="alienBodyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#7fffd4" />
<stop offset="100%" stop-color="#40e0d0" />
</linearGradient>
<linearGradient id="canGradient" x1="0" y1="0" x2="1" y2="0">
<stop offset="0%" stop-color="#c2b280" />
<stop offset="100%" stop-color="#a68a53" />
</linearGradient>
</defs>
<!-- Background Space -->
<rect width="300" height="300" fill="url(#spaceGradient)" />
<!-- Scattered Stars -->
<circle cx="20" cy="30" r="0.7" fill="white"/>
<circle cx="100" cy="20" r="1" fill="white"/>
<circle cx="50" cy="50" r="0.5" fill="white"/>
<circle cx="210" cy="30" r="0.7" fill="white"/>
<circle cx="260" cy="80" r="0.7" fill="white"/>
<!-- Glowing Earth in the sky -->
<circle cx="240" cy="60" r="30" fill="url(#earthGradient)" filter="url(#glow)" />
<!-- Moon Surface -->
<rect x="0" y="200" width="300" height="100" fill="url(#moonSurfaceGradient)" />
<!-- Moon Craters -->
<circle cx="50" cy="230" r="8" fill="#aaa" opacity="0.5" />
<circle cx="120" cy="250" r="6" fill="#aaa" opacity="0.5" />
<circle cx="200" cy="220" r="10" fill="#aaa" opacity="0.5" />
<!-- Alien Watering the Plants -->
<g transform="translate(75,180)">
<!-- Alien Head -->
<ellipse cx="0" cy="-15" rx="12" ry="15" fill="url(#alienGradient)" />
<!-- Alien Eyes -->
<circle cx="-5" cy="-17" r="2" fill="white" />
<circle cx="5" cy="-17" r="2" fill="white" />
<circle cx="-5" cy="-17" r="1" fill="black" />
<circle cx="5" cy="-17" r="1" fill="black" />
<!-- Alien Body -->
<rect x="-6" y="-3" width="12" height="20" fill="url(#alienBodyGradient)" rx="3" />
<!-- Left Arm -->
<path d="M -6,0 C -15,5 -20,15 -10,18" stroke="url(#alienBodyGradient)" stroke-width="2" fill="none" />
<!-- Watering Can held in Right Hand -->
<g transform="translate(6,2)">
<rect x="0" y="0" width="8" height="6" rx="1" fill="url(#canGradient)" stroke="#665" stroke-width="0.5" />
<path d="M8,2 Q12,0 11,4" stroke="#665" stroke-width="1" fill="none" />
</g>
<!-- Water Droplets Spraying Out -->
<circle cx="16" cy="8" r="1.2" fill="#9cf" />
<circle cx="18" cy="12" r="1" fill="#9cf" />
<circle cx="20" cy="16" r="0.8" fill="#9cf" />
<circle cx="22" cy="20" r="0.6" fill="#9cf" />
</g>
<!-- Plant Receiving Water -->
<g transform="translate(100,205)">
<path d="M0,20 C-5,10 5,0 0,-10" stroke="#0a0" stroke-width="2" fill="none" />
<ellipse cx="0" cy="-10" rx="3" ry="5" fill="#0a0" />
</g>
<!-- Additional Moon Plant -->
<g transform="translate(140,210)">
<path d="M0,25 C3,15 -3,5 0,-5" stroke="#0a0" stroke-width="2" fill="none" />
<ellipse cx="0" cy="-5" rx="2.5" ry="4" fill="#0a0" />
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background space -->
<defs>
<radialGradient id="spaceGrad" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#0a0a1a"/>
<stop offset="100%" stop-color="#000"/>
</radialGradient>
<radialGradient id="earthGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#a0e0ff"/>
<stop offset="60%" stop-color="#3078c8"/>
<stop offset="100%" stop-color="#154a6d"/>
</radialGradient>
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur stdDeviation="4" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<linearGradient id="canGrad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#bbc"/>
<stop offset="100%" stop-color="#889"/>
</linearGradient>
<linearGradient id="plantGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#7f3"/>
<stop offset="100%" stop-color="#3a1"/>
</linearGradient>
<pattern id="craterPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="3" fill="#888"/>
<circle cx="15" cy="15" r="4" fill="#777"/>
</pattern>
</defs>
<rect width="300" height="300" fill="url(#spaceGrad)"/>
<!-- Stars -->
<g fill="#fff" opacity="0.6">
<circle cx="20" cy="50" r="1.2"/>
<circle cx="80" cy="30" r="1"/>
<circle cx="250" cy="80" r="1.5"/>
<circle cx="200" cy="20" r="1"/>
<circle cx="150" cy="100" r="1.3"/>
<circle cx="270" cy="40" r="1"/>
<circle cx="100" cy="150" r="1.4"/>
</g>
<!-- Earth with glow -->
<g filter="url(#glow)">
<circle cx="150" cy="60" r="40" fill="url(#earthGrad)"/>
<!-- continents simplified -->
<path d="M135,35 Q120,60 140,75 Q155,60 170,80 Q190,55 155,45 Q145,30 135,35" fill="#76c043"/>
</g>
<!-- Moon surface -->
<rect y="200" width="300" height="100" fill="#555"/>
<rect y="200" width="300" height="100" fill="url(#craterPattern)" opacity="0.4"/>
<!-- Craters -->
<circle cx="50" cy="220" r="20" fill="#444"/>
<circle cx="240" cy="260" r="30" fill="#444"/>
<circle cx="180" cy="230" r="15" fill="#444"/>
<!-- Alien figure -->
<g transform="translate(100,180)">
<!-- body -->
<ellipse cx="0" cy="0" rx="12" ry="18" fill="#7fb"/>
<!-- head -->
<ellipse cx="0" cy="-25" rx="15" ry="18" fill="#8fe"/>
<!-- eyes -->
<ellipse cx="-5" cy="-28" rx="4" ry="6" fill="#000"/>
<ellipse cx="5" cy="-28" rx="4" ry="6" fill="#000"/>
<!-- arms -->
<path d="M-10,-5 Q-20,0 -25,10" stroke="#8fe" stroke-width="4" fill="none"/>
<path d="M10,-5 Q20,0 25,10" stroke="#8fe" stroke-width="4" fill="none"/>
</g>
<!-- Watering can -->
<g transform="translate(125,195) rotate(-20)">
<rect x="0" y="0" width="25" height="15" fill="url(#canGrad)" stroke="#556" stroke-width="1"/>
<rect x="22" y="4" width="12" height="4" fill="url(#canGrad)" stroke="#556" stroke-width="1"/>
<path d="M5,0 L-10,-8 Q-12,-10 -10,-12 L10,-2" fill="url(#canGrad)" stroke="#556" stroke-width="1"/>
<!-- water drops -->
<path d="M0,15 q-2,5 2,8 M5,18 q-1,4 1,6 M-5,18 q-1,4 1,6" fill="none" stroke="#9cf" stroke-width="1.5"/>
</g>
<!-- Plants -->
<g transform="translate(130,210)">
<path d="M0,0 Q5,-10 10,0 T20,0" fill="none" stroke="url(#plantGrad)" stroke-width="3"/>
<circle cx="10" cy="-5" r="4" fill="#3a1"/>
<path d="M-10,0 Q-15,-8 -10,-12 T-5,0" fill="none" stroke="url(#plantGrad)" stroke-width="3"/>
<circle cx="-10" cy="-12" r="3" fill="#3a1"/>
<path d="M20,0 Q25,-6 30,-4" fill="none" stroke="url(#plantGrad)" stroke-width="3"/>
<circle cx="30" cy="-4" r="2.5" fill="#3a1"/>
</g>
</svg>
Judge's Analysis
Player 2's submission demonstrates more creativity and technical quality.
The textured moon surface and detailed glowing Earth add depth, while the alien's interaction with the plant feels more dynamic.
Player 1's image, while adhering to the prompt, is simpler and less visually engaging in comparison.
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 giraffe riding a skateboard under a crescent moon."
"A floating teacup pouring galaxies into an oversized spoon."
"A flying turtle carrying a tiny city on its shell through a starry night sky."