{"id":238644,"student_id":3276,"content":"import time #載入時間計算套件\nimport random #載入產生隨機數套件\nimport math #載入數學計算套件\nfrom game import (\n create_sprite, #創造角色\n create_sound, #創造音效\n cursor, #遊戲滑鼠\n draw_text, #繪製文字\n forever, #重複不斷執行\n stop, #遊戲暫停\n)\n\nbg_1 = create_sprite('bg_1.png') #背景\nbg_2 = create_sprite('bg_2.png') #背景\ntarget = create_sprite('target.png') #準星\nnumber = create_sprite('n0.png','n1.png','n2.png','n3.png','n4.png','n5.png') #倒數數字\nreward = create_sprite('r0.png','r1.png','r2.png','r3.png','r4.png','r5.png','r6.png','r7.png','r8.png','r9.png','r10.png') #獎勵圖片\n\nbg_1.layer = 1\nnumber.layer = 2\ntarget.layer = 3\nreward.layer = 4\nreward.hidden = True\nnumber.opacity = 0.7\nnumber.hidden = True\ncreate_sound(\"bgm.mp3\", True)\n\nclock = 0 #紀錄遊戲迴圈次數\nscores = 0 #玩家得分\nballoons = [] #存放氣球角色\nend_time = time.time() + 15 #遊戲結束時間點\n\ndef loop ():\n global clock, scores, end_time\n target.x = cursor.x\n target.y = cursor.y\n clock += 1\n if clock % 10 == 0:\n b = create_sprite(\"b0.png\", \"b1.png\", \"b2.png\", \"b3.png\", \"b4.png\", \"b5.png\", \"b6.png\") #創造角色\n b.y = 800\n b.x = random.randrange(100, 1100)\n rand = random.random()\n if rand \u003c 0.4:\n b.costume_id = 0\n elif rand \u003c 0.6:\n b.costume_id = 1\n elif rand \u003c 0.7:\n b.costume_id = 2\n elif rand \u003c 0.8:\n b.costume_id = 3\n elif rand \u003c 0.9:\n b.costume_id = 4\n elif rand \u003c 0.95:\n b.costume_id = 5\n else:\n b.costume_id = 6\n balloons.append(b) \n for b in balloons:\n if b.costume_id == 0:\n b.y -= 3\n if b.costume_id == 1:\n b.y -= 5 \n if b.costume_id == 2:\n b.y -= 7 \n if b.costume_id == 3:\n b.y -= 8 \n if b.costume_id == 4:\n b.y -= 8 \n if b.costume_id == 6:\n b.y -= 7 \n if b.costume_id == 5:\n b.y -= 9 \n if b.touched(cursor) and cursor.is_down:\n create_sound(\"shot.mp3\")\n b.destroy()\n if b.costume_id == 0:\n scores += 1\n if b.costume_id == 1:\n scores += 5 \n if b.costume_id == 2:\n scores += 10 \n if b.costume_id == 3:\n scores *= 2 \n if b.costume_id == 4:\n scores /= 2 \n if b.costume_id == 6:\n end_time = time.time()\n if b.costume_id ==5:\n end_time += 3 \n count_down = int(end_time - time.time()) \n \n number.hidden = count_down \u003e 5\n if count_down == 5:\n number.costume_id = 5\n if count_down == 4:\n number.costume_id = 4 \n if count_down == 3:\n number.costume_id = 3\n if count_down == 2:\n number.costume_id = 2 \n if count_down == 1:\n number.costume_id = 1\n if count_down == 0:\n number.costume_id = 0 \n if count_down \u003c 0:\n stop()\n reward.hidden = False\n if scores \u003c 10 :\n reward.costume_id = 10\n elif scores \u003c 100:\n reward.costume_id = 9\n elif scores \u003c 1000:\n reward.costume_id = 8 \n elif scores \u003c 10000:\n reward.costume_id = 7\n elif scores \u003c 100000:\n reward.costume_id = 6\n elif scores \u003c 1000000:\n reward.costume_id = 5\n elif scores \u003c 10000000:\n reward.costume_id = 4 \n elif scores \u003c 100000000:\n reward.costume_id = 3\n elif scores \u003c 1000000000:\n reward.costume_id = 2 \n elif scores \u003c 10000000000:\n reward.costume_id = 1\n else:\n reward.costume_id = 0 \n \n draw_text(count_down, 150, 20, \"white\", 40) \n \n draw_text(int(scores), 60, 20, \"white\", 40) \n \n \n \nforever(loop) #不斷執行遊戲迴圈\n\n","created_at":"2021-03-27T10:10:31.547+08:00","updated_at":"2024-01-12T22:44:38.923+08:00","name":"射擊氣球(預設版) 副本","language":"python","screenshot":{"url":"https://cdn9.koding.school/uploads/project/screenshot/238644/d7f72eb85f77b49e3fb4f79f33aa33bb.jpg"},"parent_id":183418,"plugin":"","description":null,"note":null,"status":"public","like_student_ids":[],"is_featured":false,"views":143,"hashid":"meyswvm94","is_content_changed":false,"review_status":"unsubmitted","submitted_at":null,"reviewed_at":null,"advise":null,"is_deleted":false}
[{"id":4360252,"file_name":"b6.png","project_id":238644,"asset_id":251851,"created_at":"2021-03-27T10:10:31.587+08:00","updated_at":"2021-03-27T10:10:31.587+08:00"},{"id":4360253,"file_name":"n0.png","project_id":238644,"asset_id":251852,"created_at":"2021-03-27T10:10:31.591+08:00","updated_at":"2021-03-27T10:10:31.591+08:00"},{"id":4360254,"file_name":"n1.png","project_id":238644,"asset_id":251853,"created_at":"2021-03-27T10:10:31.593+08:00","updated_at":"2021-03-27T10:10:31.593+08:00"},{"id":4360255,"file_name":"n2.png","project_id":238644,"asset_id":251854,"created_at":"2021-03-27T10:10:31.596+08:00","updated_at":"2021-03-27T10:10:31.596+08:00"},{"id":4360256,"file_name":"n3.png","project_id":238644,"asset_id":251855,"created_at":"2021-03-27T10:10:31.599+08:00","updated_at":"2021-03-27T10:10:31.599+08:00"},{"id":4360257,"file_name":"n4.png","project_id":238644,"asset_id":251856,"created_at":"2021-03-27T10:10:31.601+08:00","updated_at":"2021-03-27T10:10:31.601+08:00"},{"id":4360258,"file_name":"n5.png","project_id":238644,"asset_id":251857,"created_at":"2021-03-27T10:10:31.603+08:00","updated_at":"2021-03-27T10:10:31.603+08:00"},{"id":4360259,"file_name":"pointer.png","project_id":238644,"asset_id":251858,"created_at":"2021-03-27T10:10:31.604+08:00","updated_at":"2021-03-27T10:10:31.604+08:00"},{"id":4360260,"file_name":"r0.png","project_id":238644,"asset_id":251859,"created_at":"2021-03-27T10:10:31.606+08:00","updated_at":"2021-03-27T10:10:31.606+08:00"},{"id":4360261,"file_name":"r1.png","project_id":238644,"asset_id":251860,"created_at":"2021-03-27T10:10:31.608+08:00","updated_at":"2021-03-27T10:10:31.608+08:00"},{"id":4360262,"file_name":"r2.png","project_id":238644,"asset_id":251861,"created_at":"2021-03-27T10:10:31.610+08:00","updated_at":"2021-03-27T10:10:31.610+08:00"},{"id":4360263,"file_name":"r3.png","project_id":238644,"asset_id":251862,"created_at":"2021-03-27T10:10:31.612+08:00","updated_at":"2021-03-27T10:10:31.612+08:00"},{"id":4360264,"file_name":"r4.png","project_id":238644,"asset_id":251863,"created_at":"2021-03-27T10:10:31.613+08:00","updated_at":"2021-03-27T10:10:31.613+08:00"},{"id":4360265,"file_name":"r5.png","project_id":238644,"asset_id":251864,"created_at":"2021-03-27T10:10:31.615+08:00","updated_at":"2021-03-27T10:10:31.615+08:00"},{"id":4360266,"file_name":"r6.png","project_id":238644,"asset_id":251865,"created_at":"2021-03-27T10:10:31.617+08:00","updated_at":"2021-03-27T10:10:31.617+08:00"},{"id":4360267,"file_name":"r7.png","project_id":238644,"asset_id":251866,"created_at":"2021-03-27T10:10:31.619+08:00","updated_at":"2021-03-27T10:10:31.619+08:00"},{"id":4360268,"file_name":"r8.png","project_id":238644,"asset_id":251867,"created_at":"2021-03-27T10:10:31.620+08:00","updated_at":"2021-03-27T10:10:31.620+08:00"},{"id":4360269,"file_name":"r9.png","project_id":238644,"asset_id":251868,"created_at":"2021-03-27T10:10:31.622+08:00","updated_at":"2021-03-27T10:10:31.622+08:00"},{"id":4360270,"file_name":"r10.png","project_id":238644,"asset_id":251869,"created_at":"2021-03-27T10:10:31.624+08:00","updated_at":"2021-03-27T10:10:31.624+08:00"},{"id":4360271,"file_name":"shot.mp3","project_id":238644,"asset_id":251870,"created_at":"2021-03-27T10:10:31.626+08:00","updated_at":"2021-03-27T10:10:31.626+08:00"},{"id":4360272,"file_name":"target.png","project_id":238644,"asset_id":251871,"created_at":"2021-03-27T10:10:31.627+08:00","updated_at":"2021-03-27T10:10:31.627+08:00"},{"id":4360273,"file_name":"b0.png","project_id":238644,"asset_id":251872,"created_at":"2021-03-27T10:10:31.629+08:00","updated_at":"2021-03-27T10:10:31.629+08:00"},{"id":4360274,"file_name":"b1.png","project_id":238644,"asset_id":251873,"created_at":"2021-03-27T10:10:31.631+08:00","updated_at":"2021-03-27T10:10:31.631+08:00"},{"id":4360275,"file_name":"b4.png","project_id":238644,"asset_id":251874,"created_at":"2021-03-27T10:10:31.633+08:00","updated_at":"2021-03-27T10:10:31.633+08:00"},{"id":4360276,"file_name":"b5.png","project_id":238644,"asset_id":251875,"created_at":"2021-03-27T10:10:31.635+08:00","updated_at":"2021-03-27T10:10:31.635+08:00"},{"id":4360247,"file_name":"b2.png","project_id":238644,"asset_id":251846,"created_at":"2021-03-27T10:10:31.563+08:00","updated_at":"2021-03-27T10:10:31.563+08:00"},{"id":4360248,"file_name":"bg_1.png","project_id":238644,"asset_id":251847,"created_at":"2021-03-27T10:10:31.574+08:00","updated_at":"2021-03-27T10:10:31.574+08:00"},{"id":4360249,"file_name":"bg_2.png","project_id":238644,"asset_id":251848,"created_at":"2021-03-27T10:10:31.579+08:00","updated_at":"2021-03-27T10:10:31.579+08:00"},{"id":4360250,"file_name":"bgm.mp3","project_id":238644,"asset_id":251849,"created_at":"2021-03-27T10:10:31.582+08:00","updated_at":"2021-03-27T10:10:31.582+08:00"},{"id":4360251,"file_name":"b3.png","project_id":238644,"asset_id":251850,"created_at":"2021-03-27T10:10:31.584+08:00","updated_at":"2021-03-27T10:10:31.584+08:00"}]
橘蘋學習平台
我的作品
檢視專案頁
匯出
複製
匯入
刪除
截圖
繁中
简中
English
日本語
用手機掃描下方 QRCode 進行安裝
或您也可以
下載 APK
到這台電腦