{"id":174,"date":"2026-05-22T14:02:35","date_gmt":"2026-05-22T14:02:35","guid":{"rendered":"https:\/\/theroyalscode.com\/students\/d_harkless\/?p=174"},"modified":"2026-05-29T13:07:32","modified_gmt":"2026-05-29T13:07:32","slug":"5-22-26","status":"publish","type":"post","link":"https:\/\/theroyalscode.com\/students\/d_harkless\/2026\/05\/22\/5-22-26\/","title":{"rendered":"Free Friday 5-22-26"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Today in class, I continued the space war game. I added allies and more enemies and scores.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"823\" height=\"753\" src=\"https:\/\/theroyalscode.com\/students\/d_harkless\/wp-content\/uploads\/2026\/05\/image-4.png\" alt=\"\" class=\"wp-image-177\" style=\"aspect-ratio:1.0929642868053646;width:650px;height:auto\" srcset=\"https:\/\/theroyalscode.com\/students\/d_harkless\/wp-content\/uploads\/2026\/05\/image-4.png 823w, https:\/\/theroyalscode.com\/students\/d_harkless\/wp-content\/uploads\/2026\/05\/image-4-300x274.png 300w, https:\/\/theroyalscode.com\/students\/d_harkless\/wp-content\/uploads\/2026\/05\/image-4-768x703.png 768w\" sizes=\"auto, (max-width: 823px) 100vw, 823px\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">This is the code for the ally.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>class Ally(Sprite):\n\tdef __init__(self, spriteshape, color, startx, starty):\n\t\tSprite.__init__(self, spriteshape, color, startx, starty)\n\t\tself.speed = 8\n\t\tself.setheading(random.randint(0,360))<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This is the code for the score <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>def show_status(self):\n\t\tself.pen.undo()\n\t\tmsg = \"Score: %s\" %(self.score)\n\t\tself.pen.penup()\n\t\tself.pen.goto(-300, 310)\n\t\tself.pen.write(msg, font=(\"Arial\", 16, \"normal\"))<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This is the code for multiple enemies and allies.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>enemies =&#91;]\nfor i in range(6):\n\tenemies.append(Enemy(\"circle\", \"red\", -100, 0))\n\nallies =&#91;]\nfor i in range(6):\n\tallies.append(Ally(\"square\", \"blue\", 100, 0))\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This is the code to increase the score.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>game.score += 100\ngame.show_status()<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This is the code to decrease the score.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>game.score -= 50\ngame.show_status()\t<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Today in class, I continued the space war game. I added allies and more enemies and scores. This is the code for the ally. This is the code for the score This is the code for multiple enemies and allies. This is the code to increase the score. This is the code to decrease the [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-174","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/theroyalscode.com\/students\/d_harkless\/wp-json\/wp\/v2\/posts\/174","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/theroyalscode.com\/students\/d_harkless\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/theroyalscode.com\/students\/d_harkless\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/theroyalscode.com\/students\/d_harkless\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/theroyalscode.com\/students\/d_harkless\/wp-json\/wp\/v2\/comments?post=174"}],"version-history":[{"count":2,"href":"https:\/\/theroyalscode.com\/students\/d_harkless\/wp-json\/wp\/v2\/posts\/174\/revisions"}],"predecessor-version":[{"id":179,"href":"https:\/\/theroyalscode.com\/students\/d_harkless\/wp-json\/wp\/v2\/posts\/174\/revisions\/179"}],"wp:attachment":[{"href":"https:\/\/theroyalscode.com\/students\/d_harkless\/wp-json\/wp\/v2\/media?parent=174"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/theroyalscode.com\/students\/d_harkless\/wp-json\/wp\/v2\/categories?post=174"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/theroyalscode.com\/students\/d_harkless\/wp-json\/wp\/v2\/tags?post=174"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}