{"id":726240,"student_id":3760,"content":"import game #載入遊戲套件\nimport random #載入產生隨機數的模組\n\ngame.create_sound('bgm.mp3', True)\ngame.set_backdrop('bg.jpg') #設定背景圖\nball = game.create_sprite( 'ball_0.png', 'ball_1.png') #球\np1 = game.create_sprite('p1.png') #左邊玩家擋板\np2 = game.create_sprite('p2.png') #右邊玩家擋板\ninfo = game.create_sprite('info.png', 'bg_1.jpg', 'bg_2.jpg') #遊戲開始、結束提示圖\n\np1.x = 30\np2.x = 1170\ninfo.costume_id = 0\ninfo.hidden = False\n\nspeed = 10 #球的速度\np1_score = 0 #左邊玩家分數\np2_score = 0 #右邊玩家分數\n\n\n# 遊戲主迴圈\ndef loop ():\n global p1_score, p2_score, speed\n \n \n if game.key.space:\n info.hidden = True\n \n if game.key.w and p1.y \u003e 0:\n p1.y -= 20 # 左擋板向上動\n \n if game.key.s and p1.y \u003c 900:\n p1.y += 20 # 左擋板向下動\n \n if game.key.o and p2.y \u003e 0:\n p2.y -= 20 # 右擋板向上動\n \n if game.key.l and p2.y \u003c 900:\n p2.y += 20 # 右擋板向下動\n \n if info.hidden:\n ball.step_forward(speed)\n \n if ball.touched(p1) and ball.direction \u003e 180:\n game.create_sound('hit.mp3')\n ball.direction = ball.direction * -1 + random.randrange(0, 16)\n speed += 0.5\n \n if ball.touched(p2) and ball.direction \u003c 180:\n game.create_sound('hit.mp3')\n ball.direction = ball.direction * -1 + random.randrange(0, 16)\n speed += 0.5\n \n if ball.y \u003c 0 or ball.y \u003e 900:\n ball.direction = ball.direction * -1 + 180 + random.randrange(0, 16)\n \n if ball.x \u003c 0:\n ball.move_to(600, 540)\n ball.direction = 90\n speed = 10\n p2_score += 1\n game.create_sound('lose.ogg')\n \n if ball.x \u003e 1200:\n ball.move_to(600, 540)\n ball.direction = -90\n speed = 10\n p1_score += 1\n game.create_sound('lose.ogg')\n \n game.draw_text(p1_score, 30, 20, '#F46F25', 80) # 印出 p1 分數\n game.draw_text(p2_score, 1140, 20, '#23B0DB', 80) # 印出 p2 分數\n \n if p1_score == 5:\n game.stop()\n info.hidden = False\n info.costume_id = 2\n \n if p2_score == 5:\n game.stop()\n info.hidden = False\n info.costume_id = 1\n\nforever(loop) #重複不斷執行遊戲迴圈\n\n","created_at":"2024-04-07T17:08:26.634+08:00","updated_at":"2024-04-07T17:52:33.700+08:00","name":"彈力球大賽(預設版) 副本","language":"python","screenshot":{"url":"https://cdn5.koding.school/uploads/project/screenshot/726240/660116dc67f1ee20b205057862bf4391.jpg"},"parent_id":183420,"plugin":"game.set({'width': 1200, 'height': 900})","description":null,"note":null,"status":"public","like_student_ids":[],"is_featured":false,"views":21,"hashid":"yeysgj2w6","is_content_changed":false,"review_status":"unsubmitted","submitted_at":null,"reviewed_at":null,"advise":null,"is_deleted":false}
[{"id":16234835,"file_name":"p2.png","project_id":726240,"asset_id":251890,"created_at":"2024-04-07T17:08:26.641+08:00","updated_at":"2024-04-07T17:08:26.641+08:00"},{"id":16234836,"file_name":"ball_1.png","project_id":726240,"asset_id":251891,"created_at":"2024-04-07T17:08:26.643+08:00","updated_at":"2024-04-07T17:08:26.643+08:00"},{"id":16234837,"file_name":"bg.jpg","project_id":726240,"asset_id":251892,"created_at":"2024-04-07T17:08:26.645+08:00","updated_at":"2024-04-07T17:08:26.645+08:00"},{"id":16234838,"file_name":"hit.mp3","project_id":726240,"asset_id":251893,"created_at":"2024-04-07T17:08:26.646+08:00","updated_at":"2024-04-07T17:08:26.646+08:00"},{"id":16234839,"file_name":"lose.ogg","project_id":726240,"asset_id":251894,"created_at":"2024-04-07T17:08:26.647+08:00","updated_at":"2024-04-07T17:08:26.647+08:00"},{"id":16234840,"file_name":"bg_1.jpg","project_id":726240,"asset_id":251895,"created_at":"2024-04-07T17:08:26.648+08:00","updated_at":"2024-04-07T17:08:26.648+08:00"},{"id":16234841,"file_name":"p1.png","project_id":726240,"asset_id":251896,"created_at":"2024-04-07T17:08:26.650+08:00","updated_at":"2024-04-07T17:08:26.650+08:00"},{"id":16234842,"file_name":"info.png","project_id":726240,"asset_id":251897,"created_at":"2024-04-07T17:08:26.651+08:00","updated_at":"2024-04-07T17:08:26.651+08:00"},{"id":16234843,"file_name":"bgm.mp3","project_id":726240,"asset_id":251898,"created_at":"2024-04-07T17:08:26.652+08:00","updated_at":"2024-04-07T17:08:26.652+08:00"},{"id":16234844,"file_name":"bg_2.jpg","project_id":726240,"asset_id":251899,"created_at":"2024-04-07T17:08:26.653+08:00","updated_at":"2024-04-07T17:08:26.653+08:00"},{"id":16234845,"file_name":"ball_3.png","project_id":726240,"asset_id":251900,"created_at":"2024-04-07T17:08:26.655+08:00","updated_at":"2024-04-07T17:08:26.655+08:00"},{"id":16234846,"file_name":"ball_0.png","project_id":726240,"asset_id":251901,"created_at":"2024-04-07T17:08:26.656+08:00","updated_at":"2024-04-07T17:08:26.656+08:00"}]
橘蘋學習平台
橘蘋學習平台
我的作品
檢視專案頁
匯出
複製
匯入
刪除
截圖
幫助
用手機掃描下方 QRCode 進行安裝
或您也可以
下載 APK
到這台電腦