Creative Challenge
"Alien watering a garden of glowing, geometric plants under two crescent moons."
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<linearGradient id="bgGrad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#0d0221"/>
<stop offset="100%" stop-color="#320a45"/>
</linearGradient>
<radialGradient id="moonGradient1" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#ffffff"/>
<stop offset="100%" stop-color="#cccccc"/>
</radialGradient>
<radialGradient id="moonGradient2" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#ffffe0"/>
<stop offset="100%" stop-color="#ffcc00"/>
</radialGradient>
<radialGradient id="plantGrad1" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="magenta"/>
<stop offset="100%" stop-color="purple"/>
</radialGradient>
<radialGradient id="plantGrad2" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="cyan"/>
<stop offset="100%" stop-color="blue"/>
</radialGradient>
<radialGradient id="plantGrad3" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="lime"/>
<stop offset="100%" stop-color="green"/>
</radialGradient>
<linearGradient id="waterCanGrad" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#ffcc00"/>
<stop offset="100%" stop-color="#cc9900"/>
</linearGradient>
<linearGradient id="waterStreamGrad" x1="0" y1="0" x2="1" y2="0">
<stop offset="0%" stop-color="#66ccff"/>
<stop offset="100%" stop-color="#0033cc"/>
</linearGradient>
<radialGradient id="alienBodyGrad" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#66ff66"/>
<stop offset="100%" stop-color="#339933"/>
</radialGradient>
<filter id="glow" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="2.5" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#bgGrad)"/>
<!-- Stars -->
<g id="stars">
<circle cx="150" cy="20" r="1.5" fill="white"/>
<circle cx="250" cy="80" r="1" fill="white"/>
<circle cx="100" cy="50" r="1.2" fill="white"/>
<circle cx="200" cy="10" r="0.8" fill="white"/>
<circle cx="270" cy="60" r="1" fill="white"/>
</g>
<!-- Crescent Moons -->
<path fill="url(#moonGradient1)" fill-rule="evenodd" d="M60,40 A20,20 0 1,1 100,40 A15,15 0 1,0 60,40 Z"/>
<path fill="url(#moonGradient2)" fill-rule="evenodd" d="M220,30 A15,15 0 1,1 250,30 A10,10 0 1,0 220,30 Z"/>
<!-- Glowing, Geometric Garden -->
<g id="garden" filter="url(#glow)">
<polygon points="50,260 60,240 70,260 60,280" fill="url(#plantGrad1)"/>
<polygon points="130,260 140,240 150,260 140,280" fill="url(#plantGrad2)"/>
<polygon points="210,260 220,240 230,260 220,280" fill="url(#plantGrad3)"/>
</g>
<!-- Alien and Watering Can -->
<g id="alienScene">
<!-- Alien Figure -->
<g id="alien">
<ellipse cx="80" cy="120" rx="15" ry="20" fill="url(#alienBodyGrad)"/>
<ellipse cx="74" cy="115" rx="3" ry="5" fill="black"/>
<ellipse cx="86" cy="115" rx="3" ry="5" fill="black"/>
<path d="M74,130 Q80,135 86,130" stroke="black" fill="none" stroke-linecap="round"/>
<line x1="68" y1="100" x2="68" y2="90" stroke="black" stroke-width="1"/>
<circle cx="68" cy="90" r="2" fill="url(#alienBodyGrad)"/>
<line x1="92" y1="100" x2="92" y2="90" stroke="black" stroke-width="1"/>
<circle cx="92" cy="90" r="2" fill="url(#alienBodyGrad)"/>
</g>
<!-- Watering Can held by the Alien -->
<g id="wateringCan" transform="translate(92,125)">
<path d="M0,0 h15 a3,3 0 0 1 3,3 v6 a3,3 0 0 1 -3,3 h-15 a3,3 0 0 1 -3,-3 v-6 a3,3 0 0 1 3,-3 z" fill="url(#waterCanGrad)" stroke="#333" stroke-width="0.5"/>
<path d="M15,3 a5,5 0 0,1 5,3" fill="none" stroke="#333" stroke-width="0.5"/>
<path d="M20,6 c5,5 5,10 0,15" stroke="url(#waterStreamGrad)" stroke-width="1.5" fill="none"/>
</g>
</g>
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<radialGradient id="skyGradient" cx="50%" cy="50%" r="70%">
<stop offset="0%" stop-color="#0A001F" />
<stop offset="100%" stop-color="#1C0B3E" />
</radialGradient>
<linearGradient id="waterStream" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#AFFFFF" stop-opacity="0.9"/>
<stop offset="100%" stop-color="#AFFFFF" stop-opacity="0.3"/>
</linearGradient>
<radialGradient id="plantGlowCyan" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#00FFFF" />
<stop offset="30%" stop-color="#00FFFF" />
<stop offset="100%" stop-color="#00FFFF" stop-opacity="0" />
</radialGradient>
<radialGradient id="plantGlowMagenta" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#FF00FF" />
<stop offset="30%" stop-color="#FF00FF" />
<stop offset="100%" stop-color="#FF00FF" stop-opacity="0" />
</radialGradient>
<radialGradient id="plantGlowLime" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#AEFF00" />
<stop offset="30%" stop-color="#AEFF00" />
<stop offset="100%" stop-color="#AEFF00" stop-opacity="0" />
</radialGradient>
<radialGradient id="plantGlowOrange" cx="50%" cy="50%" r="50%">
<stop offset="0%" stop-color="#FF8C00" />
<stop offset="30%" stop-color="#FF8C00" />
<stop offset="100%" stop-color="#FF8C00" stop-opacity="0" />
</radialGradient>
<filter id="softGlow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur stdDeviation="3" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<pattern id="alienSkinPattern" patternUnits="userSpaceOnUse" width="8" height="8">
<rect width="8" height="8" fill="#9A70C9"/>
<circle cx="2.5" cy="2.5" r="0.7" fill="#B48FE0" opacity="0.7"/>
<circle cx="6.5" cy="6.5" r="0.5" fill="#B48FE0" opacity="0.6"/>
</pattern>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#skyGradient)" />
<!-- Stars -->
<circle cx="50" cy="30" r="1" fill="white" opacity="0.8"/>
<circle cx="100" cy="50" r="1.2" fill="white" opacity="0.9"/>
<circle cx="200" cy="20" r="0.8" fill="white" opacity="0.7"/>
<circle cx="250" cy="60" r="1.5" fill="white" opacity="0.9"/>
<circle cx="150" cy="80" r="1" fill="white" opacity="0.8"/>
<circle cx="30" cy="100" r="1.1" fill="white" opacity="0.85"/>
<circle cx="280" cy="120" r="0.9" fill="white" opacity="0.75"/>
<circle cx="180" cy="150" r="0.7" fill="white" opacity="0.6"/>
<circle cx="80" cy="170" r="1.3" fill="white" opacity="0.9"/>
<!-- Moons -->
<path d="M 70 25 A 25 25 0 1 1 70 75 A 18 18 0 1 0 70 25 Z" fill="#FFFDE4" filter="url(#softGlow)" transform="rotate(-20 70 50)"/>
<path d="M 230 50 A 30 30 0 1 1 230 110 A 22 22 0 1 0 230 50 Z" fill="#D0EFFF" filter="url(#softGlow)" transform="rotate(25 230 80)"/>
<!-- Ground -->
<path d="M 0 250 Q 50 230, 150 255 Q 250 270, 300 240 L 300 300 L 0 300 Z" fill="#2A1A3A" />
<!-- Alien -->
<g id="alien" transform="translate(70, 130) scale(0.8)">
<!-- Body -->
<path d="M 50 150 C 40 120, 40 80, 50 50 C 55 40, 65 40, 70 50 C 80 80, 80 120, 70 150 Q 60 160 50 150 Z" fill="url(#alienSkinPattern)" stroke="#7A50A9" stroke-width="0.5"/>
<!-- Head -->
<ellipse cx="60" cy="45" rx="25" ry="30" fill="#9A70C9" stroke="#7A50A9" stroke-width="0.5"/>
<path d="M 60 15 C 40 15, 35 50, 60 75 C 85 50, 80 15, 60 15 Z" fill="#B48FE0"/> <!-- Lighter shade for head front -->
<!-- Eyes -->
<ellipse cx="50" cy="45" rx="7" ry="10" fill="#101020" />
<ellipse cx="70" cy="45" rx="7" ry="10" fill="#101020" />
<circle cx="51.5" cy="42" r="1.8" fill="white" opacity="0.7"/>
<circle cx="71.5" cy="42" r="1.8" fill="white" opacity="0.7"/>
<!-- Antennae -->
<path d="M 50 18 C 45 0, 40 -5, 40 -10" stroke="#7A50A9" stroke-width="2.5" fill="none" stroke-linecap="round"/>
<circle cx="40" cy="-10" r="3.5" fill="#C4AFFF" stroke="#7A50A9" stroke-width="0.5"/>
<path d="M 70 18 C 75 0, 80 -5, 80 -10" stroke="#7A50A9" stroke-width="2.5" fill="none" stroke-linecap="round"/>
<circle cx="80" cy="-10" r="3.5" fill="#C4AFFF" stroke="#7A50A9" stroke-width="0.5"/>
<!-- Arm holding watering can -->
<path d="M 70 80 C 80 90, 100 95, 115 90 L 120 110 C 110 115, 90 110, 75 100 Z" fill="#8A60B9" stroke="#7A50A9" stroke-width="0.5"/>
<!-- Hand (simple mitten/3-finger) -->
<path d="M 112 85 A 10 10 0 0 1 122 95 L 125 93 L 120 83 Z" fill="#9A70C9" stroke="#7A50A9" stroke-width="0.5"/>
</g>
<!-- Watering Device -->
<g id="wateringCan" transform="translate(145, 195) rotate(-20)">
<ellipse cx="0" cy="0" rx="15" ry="8" fill="#707080" stroke="#505060" stroke-width="0.5"/>
<path d="M 0 -8 C 5 -15, 15 -18, 20 -15 L 15 -5 C 10 -8, 5 -6, 0 -8 Z" fill="#606070" stroke="#505060" stroke-width="0.5"/>
<path d="M 18 -16 L 35 -25 L 30 -20 L 15 -12 Z" fill="#808090" stroke="#505060" stroke-width="0.5"/>
</g>
<!-- Water Stream -->
<path id="waterFlow" d="M 169 160 Q 175 180, 180 200" stroke="url(#waterStream)" stroke-width="5" fill="none" stroke-linecap="round"/>
<!-- Plants -->
<g id="plants">
<!-- Plant 1: Cyan Crystal Spire -->
<g transform="translate(180, 225)">
<circle cx="0" cy="-55" r="60" fill="url(#plantGlowCyan)" opacity="0.7"/>
<polygon points="0,0 -15,-30 0,-60 15,-30" fill="#00AAAA" stroke="#008888" stroke-width="0.5"/>
<polygon points="0,-50 -10,-70 0,-90 10,-70" fill="#00CCCC" stroke="#00AAAA" stroke-width="0.5"/>
<polygon points="0,-80 -5,-95 0,-110 5,-95" fill="#00FFFF" stroke="#00CCCC" stroke-width="0.5"/>
</g>
<!-- Plant 2: Magenta Geometric Flower -->
<g transform="translate(230, 245)">
<circle cx="0" cy="-5" r="40" fill="url(#plantGlowMagenta)" opacity="0.7"/>
<polygon points="0,0 -20,-15 -10,-30 0,-25 10,-30 20,-15" fill="#DD00DD" stroke="#AA00AA" stroke-width="0.5"/>
<polygon points="0,0 -15,20 -30,10 -25,0 -30,-10 -15,-20" fill="#DD00DD" stroke="#AA00AA" stroke-width="0.5" transform="rotate(60 0 0)"/>
<polygon points="0,0 -15,20 -30,10 -25,0 -30,-10 -15,-20" fill="#DD00DD" stroke="#AA00AA" stroke-width="0.5" transform="rotate(120 0 0)"/>
<circle cx="0" cy="0" r="8" fill="#FF44FF" stroke="#DD00DD" stroke-width="0.5"/>
</g>
<!-- Plant 3: Lime Cube Cluster -->
<g transform="translate(135, 255)">
<circle cx="0" cy="-45" r="35" fill="url(#plantGlowLime)" opacity="0.7"/>
<rect x="-2" y="-30" width="4" height="30" fill="#507020" stroke="#406010" stroke-width="0.5"/>
<rect x="-15" y="-45" width="10" height="10" fill="#88CC00" transform="rotate(15 -10 -40)" stroke="#66AA00" stroke-width="0.5"/>
<rect x="5" y="-50" width="12" height="12" fill="#99DD00" transform="rotate(-20 11 -44)" stroke="#77BB00" stroke-width="0.5"/>
<rect x="-5" y="-60" width="8" height="8" fill="#AAEE00" stroke="#88CC00" stroke-width="0.5"/>
</g>
<!-- Plant 4: Orange Spiral -->
<g transform="translate(265, 210)">
<circle cx="0" cy="25" r="30" fill="url(#plantGlowOrange)" opacity="0.6"/>
<path d="M0,0 C 10,0 10,10 0,10 C -10,10 -10,20 0,20 C 10,20 10,30 0,30 C -10,30 -10,40 0,40 C 10,40 10,50 0,50"
stroke="#FF8C00" stroke-width="4" fill="none" stroke-linecap="round"/>
<path d="M0,2 Q 8,2 8,10 Q 0,10 -8,10 Q -8,18 0,18 Q 8,18 8,26 Q 0,26 -8,26 Q -8,34 0,34 Q 8,34 8,42 Q 0,42 -8,42"
stroke="#FFA500" stroke-width="1.5" fill="none" stroke-linecap="round" stroke-dasharray="3 2"/>
</g>
</g>
</svg>
Judge's Analysis
Player 2's submission demonstrates superior creativity and adherence to the prompt with a detailed alien figure actively watering glowing, geometric plants under a night sky.
The technical quality and visual appeal are stronger, with more intricate design elements and a coherent composition that effectively captures the theme.
Player 1's submission, while colorful, lacks sufficient detail and doesn't fully convey the idea of an alien watering a garden under two crescent moons.
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 to the finish line under a starry sky."
"A cactus wearing sunglasses, holding a balloon, standing in the middle of a desert."
"Surreal snail with a city skyline spiraled into its shell."