Creative Challenge
"Bubblegum skyscraper in a desert"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<defs>
<!-- Desert gradients -->
<linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#FF7F50" />
<stop offset="60%" stop-color="#FFCC99" />
<stop offset="100%" stop-color="#FFE4B5" />
</linearGradient>
<linearGradient id="sandGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#D2B48C" />
<stop offset="50%" stop-color="#F5DEB3" />
<stop offset="100%" stop-color="#D2B48C" />
</linearGradient>
<!-- Bubblegum patterns -->
<pattern id="bubblePattern" width="20" height="20" patternUnits="userSpaceOnUse">
<circle cx="10" cy="10" r="5" fill="#FF69B4" opacity="0.3" />
</pattern>
<radialGradient id="bubbleGradient1" cx="50%" cy="50%" r="50%" fx="25%" fy="25%">
<stop offset="0%" stop-color="#FF9ACD" />
<stop offset="100%" stop-color="#FF69B4" />
</radialGradient>
<radialGradient id="bubbleGradient2" cx="50%" cy="50%" r="50%" fx="25%" fy="25%">
<stop offset="0%" stop-color="#9AFFFF" />
<stop offset="100%" stop-color="#00CED1" />
</radialGradient>
<radialGradient id="bubbleGradient3" cx="50%" cy="50%" r="50%" fx="25%" fy="25%">
<stop offset="0%" stop-color="#FFFF9A" />
<stop offset="100%" stop-color="#EEDD82" />
</radialGradient>
<filter id="gooeyEffect" height="300%" width="300%" x="-100%" y="-100%">
<feGaussianBlur in="SourceGraphic" stdDeviation="4" result="blur" />
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 18 -7" result="gooey" />
</filter>
<filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
<feDropShadow dx="2" dy="4" stdDeviation="4" flood-opacity="0.3" />
</filter>
</defs>
<!-- Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />
<!-- Desert floor -->
<path d="M0,220 C60,210 120,230 180,215 C240,200 300,225 300,220 L300,300 L0,300 Z" fill="url(#sandGradient)" />
<!-- Distant dunes -->
<path d="M0,240 C30,230 60,235 90,245 C120,255 150,240 180,235 C210,230 240,245 270,240 C300,235 300,245 300,245 L300,300 L0,300 Z" fill="#E6C99D" opacity="0.6" />
<!-- Bubblegum skyscraper base -->
<g filter="url(#shadow)">
<path d="M130,220 L170,220 L180,100 L120,100 Z" fill="#FF69B4" />
<!-- Main tower segments -->
<rect x="120" y="100" width="60" height="30" fill="url(#bubbleGradient1)" />
<rect x="125" y="70" width="50" height="30" fill="url(#bubbleGradient2)" />
<rect x="130" y="40" width="40" height="30" fill="url(#bubbleGradient3)" />
<rect x="135" y="20" width="30" height="20" fill="url(#bubbleGradient1)" />
<!-- Windows -->
<g opacity="0.8">
<rect x="125" y="110" width="10" height="10" rx="2" fill="white" />
<rect x="145" y="110" width="10" height="10" rx="2" fill="white" />
<rect x="165" y="110" width="10" height="10" rx="2" fill="white" />
<rect x="130" y="80" width="8" height="8" rx="2" fill="white" />
<rect x="145" y="80" width="8" height="8" rx="2" fill="white" />
<rect x="160" y="80" width="8" height="8" rx="2" fill="white" />
<rect x="135" y="50" width="6" height="6" rx="2" fill="white" />
<rect x="145" y="50" width="6" height="6" rx="2" fill="white" />
<rect x="155" y="50" width="6" height="6" rx="2" fill="white" />
<rect x="140" y="25" width="5" height="5" rx="1" fill="white" />
<rect x="150" y="25" width="5" height="5" rx="1" fill="white" />
</g>
</g>
<!-- Bubbles floating -->
<g filter="url(#gooeyEffect)">
<circle cx="160" cy="15" r="10" fill="url(#bubbleGradient1)" opacity="0.9">
<animate attributeName="cy" values="15;10;15" dur="3s" repeatCount="indefinite" />
</circle>
<circle cx="175" cy="25" r="7" fill="url(#bubbleGradient2)" opacity="0.8">
<animate attributeName="cy" values="25;20;25" dur="4s" repeatCount="indefinite" />
</circle>
<circle cx="185" cy="40" r="12" fill="url(#bubbleGradient3)" opacity="0.7">
<animate attributeName="cy" values="40;35;40" dur="3.5s" repeatCount="indefinite" />
</circle>
<circle cx="190" cy="60" r="8" fill="url(#bubbleGradient1)" opacity="0.6">
<animate attributeName="cy" values="60;55;60" dur="4.5s" repeatCount="indefinite" />
</circle>
<circle cx="120" cy="25" r="6" fill="url(#bubbleGradient2)" opacity="0.8">
<animate attributeName="cy" values="25;20;25" dur="3.2s" repeatCount="indefinite" />
</circle>
<circle cx="110" cy="45" r="9" fill="url(#bubbleGradient1)" opacity="0.7">
<animate attributeName="cy" values="45;40;45" dur="4.2s" repeatCount="indefinite" />
</circle>
</g>
<!-- Melting gum effect -->
<path d="M135,19 Q140,5 150,5 Q160,5 165,19" fill="url(#bubbleGradient1)" />
<path d="M180,100 Q200,110 205,130 Q210,150 195,170" fill="url(#bubbleGradient2)" opacity="0.7" />
<path d="M120,100 Q100,110 95,130 Q90,150 105,170" fill="url(#bubbleGradient3)" opacity="0.7" />
<!-- Cactus -->
<g transform="translate(50,210) scale(0.8)">
<path d="M10,0 L15,0 L18,-30 Q20,-40 22,-30 L25,0 L30,0 L30,10 L10,10 Z" fill="#2E8B57" />
<path d="M20,-25 L30,-20 L28,-18 L18,-23 Z" fill="#2E8B57" />
<path d="M20,-15 L10,-10 L12,-8 L22,-13 Z" fill="#2E8B57" />
</g>
<g transform="translate(240,200) scale(0.7)">
<path d="M10,0 L15,0 L18,-40 Q20,-50 22,-40 L25,0 L30,0 L30,10 L10,10 Z" fill="#2E8B57" />
<path d="M20,-35 L30,-30 L28,-28 L18,-33 Z" fill="#2E8B57" />
<path d="M20,-20 L10,-15 L12,-13 L22,-18 Z" fill="#2E8B57" />
<path d="M20,-10 L30,-5 L28,-3 L18,-8 Z" fill="#2E8B57" />
</g>
<!-- Sun -->
<circle cx="250" cy="50" r="20" fill="#FFCC00">
<animate attributeName="opacity" values="0.8;1;0.8" dur="5s" repeatCount="indefinite" />
</circle>
<g>
<path d="M250,20 L250,10" stroke="#FFCC00" stroke-width="2" />
<path d="M250,90 L250,80" stroke="#FFCC00" stroke-width="2" />
<path d="M220,50 L210,50" stroke="#FFCC00" stroke-width="2" />
<path d="M290,50 L280,50" stroke="#FFCC00" stroke-width="2" />
<path d="M228,28 L221,21" stroke="#FFCC00" stroke-width="2" />
<path d="M279,79 L272,72" stroke="#FFCC00" stroke-width="2" />
<path d="M228,72 L221,79" stroke="#FFCC00" stroke-width="2" />
<path d="M279,21 L272,28" stroke="#FFCC00" stroke-width="2" />
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Desert Background -->
<rect x="0" y="0" width="300" height="300" fill="url(#desertGradient)"/>
<linearGradient id="desertGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#F7F4C9"/>
<stop offset="0.5" stop-color="#F2E4B9"/>
<stop offset="1" stop-color="#E6D8B5"/>
</linearGradient>
<!-- Bubblegum Skyscraper -->
<g transform="translate(150, 100)">
<rect x="-50" y="-150" width="100" height="150" rx="20" fill="url(#bubblegumGradient)"/>
<linearGradient id="bubblegumGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#FFC5C5"/>
<stop offset="0.5" stop-color="#FFA07A"/>
<stop offset="1" stop-color="#FF69B4"/>
</linearGradient>
<!-- Windows and Doors -->
<g fill="#FFFFFF" fill-opacity="0.5">
<rect x="-40" y="-130" width="20" height="20" rx="5"/>
<rect x="-20" y="-110" width="20" height="20" rx="5"/>
<rect x="0" y="-90" width="20" height="20" rx="5"/>
<rect x="-30" y="-70" width="40" height="20" rx="5"/>
<rect x="-20" y="-50" width="20" height="20" rx="5"/>
<rect x="10" y="-30" width="20" height="20" rx="5"/>
</g>
<!-- Bubblegum Texture -->
<pattern id="bubblegumPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
<circle cx="5" cy="5" r="2" fill="#FFC5C5"/>
</pattern>
<rect x="-50" y="-150" width="100" height="150" fill="url(#bubblegumPattern)"/>
</g>
<!-- Palm Trees -->
<g transform="translate(100, 200)">
<rect x="-10" y="0" width="20" height="50" fill="#228B22"/>
<circle cx="0" cy="-20" r="20" fill="#228B22"/>
</g>
<g transform="translate(200, 220)">
<rect x="-10" y="0" width="20" height="40" fill="#228B22"/>
<circle cx="0" cy="-20" r="20" fill="#228B22"/>
</g>
<!-- Sun -->
<circle cx="250" cy="50" r="20" fill="#F2C464"/>
</svg>
Judge's Analysis
Player 1's image effectively captures the idea of a 'bubblegum skyscraper in a desert' with a vibrant color palette and creative design elements that resemble both a skyscraper and bubblegum.
The image composition is balanced, and the inclusion of desert elements like the sun and cacti enhances the theme.
Player 2's image, while colorful, lacks the distinct shape and context to clearly convey the concept as effectively.
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 cat juggling fish while riding a unicycle on a rainbow"
"Astronaut riding a giant koi fish through a star-filled cosmic pond"
"Triangular moon lighting a field of square sunflowers"
"Chameleon playing a tiny, neon-colored guitar on a dark branch"
"Galactic opera sung by cats in astronaut costumes"
"A flying fish wearing a top hat under a crescent moon"