{"id":512112,"student_id":2589,"content":"createSprite('cover.png'); //設定背景圖\nlet player = createSprite('0.png', '1.png', '2.png', '3.png', '4.png', '5.png', '6.png', '7.png', '8.png', '9.png', '10.png'); //企鵝\nlet item = createSprite('item_0.png', 'item_1.png', 'item_2.png', 'item_3.png'); //拋出物品\nlet number = createSprite('n_1.png', 'n_2.png', 'n_3.png', 'n_4.png', 'n_5.png'); //倒數數字\nlet info = createSprite('info.png', 'next.png', 'end.png'); //遊戲說明、下個關卡、遊戲結束\nlet sight = createSprite('target.png'); //準星\n\nlet blocks = []; //存放冰塊角色的陣列\nlet level = 0; //等級\nlet timer = 0; //計時器\nlet target; //目標冰塊\nlet vy = 0; //物品下降速度\nlet count = 0; //紅寶石數量\nlet score = 0; //金塊數量\nlet clock = 0; //動畫計時器\n\nfor (let y = 0; y \u003c 6; y++) {\n for (let x = 0; x \u003c 10; x++) {\n let b = createSprite('b_0.png', 'b_1.png', 'b_2.png', 'b_3.png', 'b_4.png', 'b_4.png', 'b_4.png', 'b_4.png');\n b.x = x * 100 + 150;\n b.y = y * 100 + 150;\n if (x % 2 == 0) b.y -= 50;\n b.layer = -1;\n b.on('click', function () {\n if (b.costumeId \u003e 3 \u0026\u0026 timer \u003c 900) {\n target = b;\n }\n });\n blocks.push(b);\n }\n}\n\nplayer.rotationStyle = 'fixed';\nnumber.opacity = 0.3;\n\n//開始每個關卡\nfunction startLevel () {\n level += 1; //每進入一個關卡等級 +1\n count = 0; //紅寶石數量歸零\n timer = 1200; //重置計時器\n target = null; //取消目標物\n info.hidden = true; //隱藏說明\n player.costumeId = 0; //恢復造型\n player.moveTo(600, 450); //重置玩家企鵝\n item.moveTo(600, 1000); //移動到畫面外\n // 重置所有的冰塊造型\n for (let i = 0; i \u003c 60; i++) {\n blocks[i].costumeId = 0;\n if (i \u003c 17) blocks[i].costumeId = 1;\n else if (i \u003c 20) blocks[i].costumeId = 3;\n else if (i \u003c 20 + level) blocks[i].costumeId = 2;\n }\n shuffle(); //隨機切換冰塊造型\n}\n\n//冰塊隨機互換\nfunction shuffle () {\n for (let i = 0; i \u003c 100; i++) {\n let randA = Math.floor(Math.random() * 60);\n let randB = Math.floor(Math.random() * 60);\n let a = blocks[randA].costumeId; //隨機取出 A 冰塊的造型編號\n let b = blocks[randB].costumeId; //隨機取出 B 冰塊的造型編號\n blocks[randA].costumeId = b; //交換造型編號\n blocks[randB].costumeId = a; //交換造型編號\n }\n}\n\nfunction gameloop () {\n sight.moveTo(cursor); //準星不斷跟著滑鼠移動\n if (info.hidden) {\n updateTimer(); //更新計時器\n updatePlayer(); //更新企鵝角色\n updateitem(); //更新寶石\n updateTexts(); //引出計分板文字\n }\n}\n\nfunction updatePlayer () {\n if (target != undefined) {\n player.toward(target); //朝向目標\n player.stepForward(6); //向前移動\n player.costumeId = Math.floor(timer / 12) % 2; //走路動畫\n player.costumeId += Math.floor(player.direction / 90) * 2; //根據方向切換造型\n if (player.distanceTo(target) \u003c 6) {\n item.moveTo(player); //移動到玩家所在\n target.costumeId -= 4; //翻開冰塊\n item.costumeId = target.costumeId; //拋出的角色造型設定\n if (target.costumeId == 1) score += 1; //挖到金塊\n if (target.costumeId == 2) count += 1; //挖到紅寶石\n if (target.costumeId == 3) {\n //挖到炸彈\n timer = 0; //時間歸零\n player.costumeId = 10; //變成烤焦造型\n }\n vy = -10; //拋物線\n clock = 20; //動畫時間\n target = undefined; //清空目標\n }\n }\n //挖冰塊的動畫\n if (player.costumeId != 10) {\n clock -= 1;\n if (clock \u003e 10) player.costumeId = 8; //挖下動作\n else if (clock \u003e 0) player.costumeId = 9; //挖起動作\n }\n}\n\n//更新計時器\nfunction updateTimer () {\n if (timer \u003e 0) timer -= 1; //時間減少 1\n if (timer == 0) timeout(); //時間到\n if (timer == 900) hideAll(); //蓋上冰塊\n number.costumeId = Math.floor(timer / 60) % 5; //切換倒數數字造型\n number.hidden = 300 \u003c= timer \u0026\u0026 timer \u003c= 900; //顯示倒數數字\n}\n\n//時間到\nfunction timeout () {\n info.hidden = false; //顯示說明\n info.costumeId = count == level ? 1: 2;\n}\n\n//隱藏全部寶石\nfunction hideAll () {\n for (let i = 0; i \u003c 60; i++) {\n blocks[i].costumeId += 4; //蓋上冰塊\n }\n}\n\n//更新拋出的物品\nfunction updateitem () {\n vy += 0.5; //向下速度增加\n item.y += vy; //改變垂直 y 座標\n item.direction += 10; //旋轉\n}\n\n//顯示計分板上的文字\nfunction updateTexts () {\n drawText(Math.floor(timer / 60), 250, 830, 'white', 50); //剩餘時間\n drawText(score, 650, 830, 'white', 50); //金塊數量\n drawText(count, 1050, 830, 'white', 50); //紅寶石數量\n}\n\n//點擊遊戲說明圖\nfunction infoOnClick () {\n if (info.costumeId == 2) {\n let result = createSprite('end_0.png', 'end_1.png', 'end_2.png', 'end_3.png', 'end_4.png', 'end_5.png'); //創造企鵝解鎖圖\n result.costumeId = Math.floor(score / 10); //根據分數切換解鎖等級\n if (result.costumeId \u003e 5) result.costumeId = 5; //最高只能解鎖至最後一張\n info.destroy(); //隱藏說明圖\n } else {\n startLevel(); //開始新的一局\n }\n}\n\nforever(gameloop);\ninfo.on('click', infoOnClick);","created_at":"2023-03-27T13:09:38.015+08:00","updated_at":"2023-03-29T13:57:09.860+08:00","name":"企鵝挖寶藏 - 開始後用滑鼠點擊舞台以啟用按鍵,重整畫面即可重新遊戲。","language":"javascript","screenshot":{"url":null},"parent_id":2,"plugin":"Game.set({width: 1200, height: 900});","description":null,"note":null,"status":"public","like_student_ids":[],"is_featured":false,"views":41,"hashid":"jzmskj6r6","is_content_changed":false,"review_status":"unsubmitted","submitted_at":null,"reviewed_at":null,"advise":null,"is_deleted":false}
[{"id":11656957,"file_name":"item_0.png","project_id":512112,"asset_id":616585,"created_at":"2023-03-27T13:09:46.683+08:00","updated_at":"2023-03-27T13:09:46.683+08:00"},{"id":11656958,"file_name":"10.png","project_id":512112,"asset_id":616586,"created_at":"2023-03-27T13:09:46.699+08:00","updated_at":"2023-03-27T13:09:46.699+08:00"},{"id":11656959,"file_name":"9.png","project_id":512112,"asset_id":616587,"created_at":"2023-03-27T13:09:46.712+08:00","updated_at":"2023-03-27T13:09:46.712+08:00"},{"id":11656960,"file_name":"8.png","project_id":512112,"asset_id":616588,"created_at":"2023-03-27T13:09:46.722+08:00","updated_at":"2023-03-27T13:09:46.722+08:00"},{"id":11656961,"file_name":"3.png","project_id":512112,"asset_id":616589,"created_at":"2023-03-27T13:09:46.735+08:00","updated_at":"2023-03-27T13:09:46.735+08:00"},{"id":11656962,"file_name":"5.png","project_id":512112,"asset_id":616590,"created_at":"2023-03-27T13:09:46.745+08:00","updated_at":"2023-03-27T13:09:46.745+08:00"},{"id":11656963,"file_name":"2.png","project_id":512112,"asset_id":616591,"created_at":"2023-03-27T13:09:46.757+08:00","updated_at":"2023-03-27T13:09:46.757+08:00"},{"id":11656964,"file_name":"4.png","project_id":512112,"asset_id":616592,"created_at":"2023-03-27T13:09:46.770+08:00","updated_at":"2023-03-27T13:09:46.770+08:00"},{"id":11656965,"file_name":"1.png","project_id":512112,"asset_id":616593,"created_at":"2023-03-27T13:09:46.781+08:00","updated_at":"2023-03-27T13:09:46.781+08:00"},{"id":11656966,"file_name":"7.png","project_id":512112,"asset_id":616594,"created_at":"2023-03-27T13:09:46.793+08:00","updated_at":"2023-03-27T13:09:46.793+08:00"},{"id":11656967,"file_name":"0.png","project_id":512112,"asset_id":616595,"created_at":"2023-03-27T13:09:46.804+08:00","updated_at":"2023-03-27T13:09:46.804+08:00"},{"id":11656968,"file_name":"6.png","project_id":512112,"asset_id":616596,"created_at":"2023-03-27T13:09:46.814+08:00","updated_at":"2023-03-27T13:09:46.814+08:00"},{"id":11656969,"file_name":"gameover.png","project_id":512112,"asset_id":616597,"created_at":"2023-03-27T13:09:46.828+08:00","updated_at":"2023-03-27T13:09:46.828+08:00"},{"id":11656970,"file_name":"end.png","project_id":512112,"asset_id":616598,"created_at":"2023-03-27T13:09:46.839+08:00","updated_at":"2023-03-27T13:09:46.839+08:00"},{"id":11656971,"file_name":"end_5.png","project_id":512112,"asset_id":616599,"created_at":"2023-03-27T13:09:46.851+08:00","updated_at":"2023-03-27T13:09:46.851+08:00"},{"id":11656972,"file_name":"end_4.png","project_id":512112,"asset_id":616600,"created_at":"2023-03-27T13:09:46.864+08:00","updated_at":"2023-03-27T13:09:46.864+08:00"},{"id":11656973,"file_name":"end_3.png","project_id":512112,"asset_id":616601,"created_at":"2023-03-27T13:09:46.878+08:00","updated_at":"2023-03-27T13:09:46.878+08:00"},{"id":11656974,"file_name":"end_2.png","project_id":512112,"asset_id":616602,"created_at":"2023-03-27T13:09:46.892+08:00","updated_at":"2023-03-27T13:09:46.892+08:00"},{"id":11656975,"file_name":"end_1.png","project_id":512112,"asset_id":616603,"created_at":"2023-03-27T13:09:46.905+08:00","updated_at":"2023-03-27T13:09:46.905+08:00"},{"id":11656976,"file_name":"end_0.png","project_id":512112,"asset_id":616604,"created_at":"2023-03-27T13:09:46.918+08:00","updated_at":"2023-03-27T13:09:46.918+08:00"},{"id":11656977,"file_name":"b_4.png","project_id":512112,"asset_id":616605,"created_at":"2023-03-27T13:09:46.932+08:00","updated_at":"2023-03-27T13:09:46.932+08:00"},{"id":11656978,"file_name":"b_0.png","project_id":512112,"asset_id":616606,"created_at":"2023-03-27T13:09:46.944+08:00","updated_at":"2023-03-27T13:09:46.944+08:00"},{"id":11656979,"file_name":"b_2.png","project_id":512112,"asset_id":616607,"created_at":"2023-03-27T13:09:46.956+08:00","updated_at":"2023-03-27T13:09:46.956+08:00"},{"id":11656980,"file_name":"b_1.png","project_id":512112,"asset_id":616608,"created_at":"2023-03-27T13:09:46.988+08:00","updated_at":"2023-03-27T13:09:46.988+08:00"},{"id":11656981,"file_name":"b_3.png","project_id":512112,"asset_id":616609,"created_at":"2023-03-27T13:09:47.002+08:00","updated_at":"2023-03-27T13:09:47.002+08:00"},{"id":11656982,"file_name":"board.png","project_id":512112,"asset_id":616610,"created_at":"2023-03-27T13:09:47.016+08:00","updated_at":"2023-03-27T13:09:47.016+08:00"},{"id":11656983,"file_name":"item_3.png","project_id":512112,"asset_id":616611,"created_at":"2023-03-27T13:09:47.030+08:00","updated_at":"2023-03-27T13:09:47.030+08:00"},{"id":11656984,"file_name":"item_1.png","project_id":512112,"asset_id":616612,"created_at":"2023-03-27T13:09:47.043+08:00","updated_at":"2023-03-27T13:09:47.043+08:00"},{"id":11656985,"file_name":"item_2.png","project_id":512112,"asset_id":616613,"created_at":"2023-03-27T13:09:47.055+08:00","updated_at":"2023-03-27T13:09:47.055+08:00"},{"id":11656986,"file_name":"info.png","project_id":512112,"asset_id":616614,"created_at":"2023-03-27T13:09:47.068+08:00","updated_at":"2023-03-27T13:09:47.068+08:00"},{"id":11656987,"file_name":"n_1.png","project_id":512112,"asset_id":616615,"created_at":"2023-03-27T13:09:47.078+08:00","updated_at":"2023-03-27T13:09:47.078+08:00"},{"id":11656988,"file_name":"n_2.png","project_id":512112,"asset_id":616616,"created_at":"2023-03-27T13:09:47.090+08:00","updated_at":"2023-03-27T13:09:47.090+08:00"},{"id":11656989,"file_name":"n_3.png","project_id":512112,"asset_id":616617,"created_at":"2023-03-27T13:09:47.102+08:00","updated_at":"2023-03-27T13:09:47.102+08:00"},{"id":11656990,"file_name":"n_4.png","project_id":512112,"asset_id":616618,"created_at":"2023-03-27T13:09:47.114+08:00","updated_at":"2023-03-27T13:09:47.114+08:00"},{"id":11656991,"file_name":"n_5.png","project_id":512112,"asset_id":616619,"created_at":"2023-03-27T13:09:47.125+08:00","updated_at":"2023-03-27T13:09:47.125+08:00"},{"id":11656992,"file_name":"next.png","project_id":512112,"asset_id":616620,"created_at":"2023-03-27T13:09:47.139+08:00","updated_at":"2023-03-27T13:09:47.139+08:00"},{"id":11656993,"file_name":"target.png","project_id":512112,"asset_id":616621,"created_at":"2023-03-27T13:09:47.152+08:00","updated_at":"2023-03-27T13:09:47.152+08:00"},{"id":11656994,"file_name":"cover.png","project_id":512112,"asset_id":616622,"created_at":"2023-03-27T13:09:47.165+08:00","updated_at":"2023-03-27T13:09:47.165+08:00"}]
橘蘋學習平台
橘蘋學習平台
我的作品
檢視專案頁
匯出
複製
匯入
刪除
下載 Android APP (APK)
截圖
1:1:1
1:1
full
幫助
用手機掃描下方 QRCode 進行安裝
或您也可以
下載 APK
到這台電腦
用手機掃描下方 QRCode 進行安裝
或您也可以
下載 APK
到這台電腦