{"id":511877,"student_id":3760,"content":"createSprite('bg.png'); //設定背景圖\nlet board = createSprite('board.png'); //木板\nlet tongueR = createSprite('tongue_r_1.png', 'tongue_r_2.png'); //紅色青蛙的舌頭\nlet tongueB = createSprite('tongue_b_1.png', 'tongue_b_2.png'); //藍色青蛙的舌頭\nlet frogR = createSprite('frog_r_0.png', 'frog_r_1.png'); //紅色青蛙\nlet frogB = createSprite('frog_b_0.png', 'frog_b_1.png'); //藍色青蛙\nlet fly1 = createSprite('fly_r.png', 'fly_b.png', 'fly_k_0.png', 'fly_k_1.png'); //目標1\nlet fly2 = createSprite('fly_r.png', 'fly_b.png', 'fly_k_0.png', 'fly_k_1.png'); //目標2\nlet fly3 = createSprite('fly_r.png', 'fly_b.png', 'fly_k_0.png', 'fly_k_1.png'); //目標3\nlet fly4 = createSprite('fly_r.png', 'fly_b.png', 'fly_k_0.png', 'fly_k_1.png'); //目標4\nlet fly5 = createSprite('fly_r.png', 'fly_b.png', 'fly_k_0.png', 'fly_k_1.png'); //目標5\nlet info = createSprite('info.png'); //遊戲說明\n// info.hidden = true; // 預設隱藏遊戲說明\n\nlet vyR = 0; //紅色舌頭的速度\nlet vyB = 0; //藍色舌頭的速度\nlet score = 0; //分數\nlet clock = 0; //迴圈次數\n\ntongueR.moveTo(150, 700);\ntongueB.moveTo(450, 700);\nfrogR.moveTo(150, 750);\nfrogB.moveTo(450, 750);\nfly1.moveTo(0 + 150, 200);\nfly2.moveTo(300 + 150, 200);\nfly3.moveTo(600 + 150, 200);\nfly4.moveTo(900 + 150, 200);\nfly5.moveTo(1200 + 150, 200);\n\n// 播放背景音樂\ncreateSound('bgm.mp3', true);\n\n// 遊戲主迴圈\nfunction gameloop () {\n\n if (info.hidden) {\n // 計算剩餘時間\n let timer = Math.floor(60 - clock / 60);\n \n // 如果剩餘時間到了就結束遊戲\n if (timer \u003c= 0) {\n createSprite('timeout.png');\n stop();\n }\n \n // 印出剩餘時間與分數\n print('剩餘時間: ' + timer, 740, 700, 'black', 40);\n print('捕捉成功: ' + score, 740, 760, 'white', 40);\n \n updateTongues(); //更新青蛙舌頭位置\n \n updateFly(fly1);\n updateFly(fly2);\n updateFly(fly3);\n updateFly(fly4);\n updateFly(fly5);\n \n clock++;\n }\n \n if (key.space) {\n info.hidden = true; // 隱藏遊戲說明\n }\n}\n\n// 更新蜻蜓角色\nfunction updateFly(fly) {\n \n if (clock % 40 \u003c 20) {\n fly.x -= 15;\n }\n if (fly.x \u003c= -150) {\n fly.x += 300 * 5; // 重置到場景右側\n fly.costumeId = Math.floor(Math.random() * 3); //隨機切換圖片\n fly.hidden = false; // 重新顯示蜻蜓\n }\n\n if (fly.costumeId == 0 \u0026\u0026 fly.touched(tongueR)) {\n fly.hidden = true; // 隱藏蜻蜓\n tongueR.costumeId = 1; // 舌頭黏到蜻蜓\n score++; // 分數加一\n }\n \n if (fly.costumeId == 1 \u0026\u0026 fly.touched(tongueB)) {\n fly.hidden = true; // 隱藏蜻蜓\n tongueB.costumeId = 1; // 舌頭黏到蜻蜓\n score++; // 分數加一\n }\n\n if (fly.costumeId == 2 \u0026\u0026 fly.touched(tongueR)) {\n frogR.costumeId = 1; // 紅色青蛙切驚嚇\n fly.costumeId = 3; // 叩叮蜻蜓生氣\n stop(); // 停止遊戲\n createSound('fail.mp3');\n }\n \n if (fly.costumeId == 2 \u0026\u0026 fly.touched(tongueB)) {\n frogB.costumeId = 1; // 藍色青蛙切驚嚇\n fly.costumeId = 3; // 叩叮蜻蜓生氣\n stop(); // 停止遊戲\n createSound('fail.mp3');\n }\n}\n\n// 更新青蛙舌頭位置\nfunction updateTongues () {\n tongueR.y += vyR; // 根據數值改變垂直位置\n if (tongueR.y \u003c 200) {\n vyR = 50; // 往下移動\n }\n if (key.o \u0026\u0026 tongueR.y \u003e= 700) {\n vyR = -50; //往上移動\n tongueR.y = 700; //發射前位置\n tongueR.costumeId = 0; //恢復造型\n createSound('shoot.mp3');\n }\n\n tongueB.y += vyB; // 根據數值改變垂直位置\n if (tongueB.y \u003c 200) {\n vyB = 50; // 往下移動\n }\n if (key.p \u0026\u0026 tongueB.y \u003e= 700) {\n vyB = -50; //往上移動\n tongueB.y = 700; //發射前位置\n tongueB.costumeId = 0; //恢復造型\n createSound('shoot.mp3');\n }\n}\n\nforever(gameloop); //不斷執行遊戲迴圈\n","created_at":"2023-03-26T14:01:26.624+08:00","updated_at":"2024-05-03T11:38:52.636+08:00","name":"補蜻蜓大作戰(預設版) 副本","language":"javascript","screenshot":{"url":"https://cdn5.koding.school/uploads/project/screenshot/511877/8ce13572538c3bfae94443a83bc48981.jpg"},"parent_id":444097,"plugin":"Game.set({width: 1200, height: 900})","description":null,"note":null,"status":"public","like_student_ids":[],"is_featured":false,"views":31,"hashid":"zpesr23vr","is_content_changed":false,"review_status":"unsubmitted","submitted_at":null,"reviewed_at":null,"advise":null,"is_deleted":false}
[{"id":11652126,"file_name":"timeout.png","project_id":511877,"asset_id":570106,"created_at":"2023-03-26T14:01:26.633+08:00","updated_at":"2023-03-26T14:01:26.633+08:00"},{"id":11652127,"file_name":"fail.mp3","project_id":511877,"asset_id":570107,"created_at":"2023-03-26T14:01:26.638+08:00","updated_at":"2023-03-26T14:01:26.638+08:00"},{"id":11652128,"file_name":"fly_k_1.png","project_id":511877,"asset_id":570108,"created_at":"2023-03-26T14:01:26.640+08:00","updated_at":"2023-03-26T14:01:26.640+08:00"},{"id":11652129,"file_name":"tongue_r_2.png","project_id":511877,"asset_id":570109,"created_at":"2023-03-26T14:01:26.641+08:00","updated_at":"2023-03-26T14:01:26.641+08:00"},{"id":11652130,"file_name":"tongue_r_1.png","project_id":511877,"asset_id":570110,"created_at":"2023-03-26T14:01:26.643+08:00","updated_at":"2023-03-26T14:01:26.643+08:00"},{"id":11652131,"file_name":"tongue_b_2.png","project_id":511877,"asset_id":570111,"created_at":"2023-03-26T14:01:26.645+08:00","updated_at":"2023-03-26T14:01:26.645+08:00"},{"id":11652132,"file_name":"tongue_b_1.png","project_id":511877,"asset_id":570112,"created_at":"2023-03-26T14:01:26.646+08:00","updated_at":"2023-03-26T14:01:26.646+08:00"},{"id":11652133,"file_name":"fly_k_0.png","project_id":511877,"asset_id":570113,"created_at":"2023-03-26T14:01:26.648+08:00","updated_at":"2023-03-26T14:01:26.648+08:00"},{"id":11652134,"file_name":"fly_b.png","project_id":511877,"asset_id":570114,"created_at":"2023-03-26T14:01:26.650+08:00","updated_at":"2023-03-26T14:01:26.650+08:00"},{"id":11652135,"file_name":"fly_r.png","project_id":511877,"asset_id":570115,"created_at":"2023-03-26T14:01:26.651+08:00","updated_at":"2023-03-26T14:01:26.651+08:00"},{"id":11652136,"file_name":"info.png","project_id":511877,"asset_id":570116,"created_at":"2023-03-26T14:01:26.652+08:00","updated_at":"2023-03-26T14:01:26.652+08:00"},{"id":11652137,"file_name":"frog_r_1.png","project_id":511877,"asset_id":570117,"created_at":"2023-03-26T14:01:26.653+08:00","updated_at":"2023-03-26T14:01:26.653+08:00"},{"id":11652138,"file_name":"frog_r_0.png","project_id":511877,"asset_id":570118,"created_at":"2023-03-26T14:01:26.655+08:00","updated_at":"2023-03-26T14:01:26.655+08:00"},{"id":11652139,"file_name":"frog_b_1.png","project_id":511877,"asset_id":570119,"created_at":"2023-03-26T14:01:26.657+08:00","updated_at":"2023-03-26T14:01:26.657+08:00"},{"id":11652140,"file_name":"frog_b_0.png","project_id":511877,"asset_id":570120,"created_at":"2023-03-26T14:01:26.658+08:00","updated_at":"2023-03-26T14:01:26.658+08:00"},{"id":11652141,"file_name":"board.png","project_id":511877,"asset_id":570121,"created_at":"2023-03-26T14:01:26.660+08:00","updated_at":"2023-03-26T14:01:26.660+08:00"},{"id":11652142,"file_name":"bg.png","project_id":511877,"asset_id":570122,"created_at":"2023-03-26T14:01:26.661+08:00","updated_at":"2023-03-26T14:01:26.661+08:00"},{"id":11652143,"file_name":"bgm.mp3","project_id":511877,"asset_id":570123,"created_at":"2023-03-26T14:01:26.662+08:00","updated_at":"2023-03-26T14:01:26.662+08:00"},{"id":11652144,"file_name":"shoot.mp3","project_id":511877,"asset_id":570124,"created_at":"2023-03-26T14:01:26.664+08:00","updated_at":"2023-03-26T14:01:26.664+08:00"}]
橘蘋學習平台
橘蘋學習平台
我的作品
檢視專案頁
匯出
複製
匯入
刪除
下載 Android APP (APK)
截圖
1:1:1
1:1
full
幫助
用手機掃描下方 QRCode 進行安裝
或您也可以
下載 APK
到這台電腦
用手機掃描下方 QRCode 進行安裝
或您也可以
下載 APK
到這台電腦