ChatGPT inspired sprites

by spielscratch
See Code Download Embed
The sprite costumes were all created by chatGPT. I simply asked it to write SVG files that included the required elements. 

"please create a valid SVG file that is 100 by 100 pixels that has a 10 by 10 pixel square in the middle of each side."

"Sure! Here is an example of an SVG file that is 100 pixels wide and 100 pixels tall, and that has a 10 by 10 pixel square in the middle of each side:

Copy code
<?xml version="1.0" encoding="UTF-8"?>
<svg width="100" height="100" version="1.1" xmlns="http://www.w3.org/2000/svg">
  <rect x="45" y="0" width="10" height="10" fill="black" />
  <rect x="0" y="45" width="10" height="10" fill="black" />
  <rect x="45" y="90" width="10" height="10" fill="black" />
  <rect x="90" y="45" width="10" height="10" fill="black" />
</svg>
This file will create an SVG image that is 100 pixels wide and 100 pixels tall, with a 10 by 10 pixel black square in the middle of each side. The squares are created using rect elements, which are positioned using the x and y attributes.

For example, the rect element with x="45" and y="0" positions the square 45 pixels from the left side and 0 pixels from the top of the image. Similarly, the rect element with x="0" and y="45" positions the square 0 pixels from the left side and 45 pixels from the top of the image.

You can adjust the appearance and position of the squares by changing the values of the x, y, width, height, and fill attributes."

Created December 21, 2022

Last updated December 21, 2022

Published December 21, 2022