{"id":301620,"student_id":3525,"content":"import game\nimport random\ngame.set_backdrop('bg.jpg')\nswing = game.create_sprite('swing_0.png', 'swing_1.png') #盪鞦韆與叩叮\napple = game.create_sprite('apple.png') #蘋果\narcher = game.create_sprite('archer.png') #弓箭手\nbow = game.create_sprite('bow.png') #弓\narrow = game.create_sprite('arrow_0.png', 'arrow_1.png') #箭\nlives = game.create_sprite(\"5.png\", \"4.png\", \"3.png\", \"2.png\", \"1.png\", \"0.png\") #創造角色\n\nswing.x = 900\napple.x = 900\nswing.y = 400\napple.y = 400\narcher.x = 300\narcher.y = 600\nbow.x = 300\nbow.y = 600\narrow.x = 300\narrow.y = 600\nlives.x = 200\nlives.y = 100\n\nbow.direction = 135\narrow.direction = 135\n\nactive = False #紀錄是否拉過弓\nscore = 0 #玩家得分\nvy = 0 #目標移動速度\n\n#遊戲主迴圈\ndef loop ():\n global active, score, vy\n \n if game.cursor.is_down == True:\n \n active = True\n \n if bow.direction \u003e 30 and arrow.x == 300:\n bow.direction -= 2\n arrow.direction -= 2\n \n if bow.direction \u003c 30 and arrow.x == 300:\n bow.direction = 135\n arrow.direction = 135\n \n if game.cursor.is_down == False and active == True:\n arrow.step_forward(25)\n arrow.direction += 1\n \n if arrow.touched(apple) == True:\n apple.hidden = True\n arrow.costume_id = 1\n \n if arrow.x \u003e= 1200 or arrow.y \u003c 0 or arrow.y \u003e 900:\n arrow.x = 300\n arrow.y = 600\n active = False\n bow.direction = 135\n arrow.direction = bow.direction\n apple.hidden = False\n \n if arrow.costume_id == 1:\n rand = random.randrange(200, 700)\n apple.y = rand\n swing.y = rand\n score += 1\n else:\n lives.costume_id += 1\n \n if lives.costume_id == 5:\n game.create_sprite(\"gameover.png\")\n game.stop()\n \n arrow.costume_id = 0\n \n if arrow.touched(swing):\n swing.costume_id = 1\n else:\n swing.costume_id = 0.\n \n game.draw_text(score, 1084, 46, \"white\", 60)\n\ngame.forever(loop) #重複不斷執行\n\n\n\n\n\n\n\n\n\n\n\n\n","created_at":"2021-10-02T10:16:43.636+08:00","updated_at":"2021-10-02T12:02:20.900+08:00","name":"射箭遊戲(預設版) 副本","language":"python","screenshot":{"url":"https://cdn6.koding.school/uploads/project/screenshot/301620/c6ce37702028c6d81fe609017393d309.jpg"},"parent_id":194470,"plugin":"","description":null,"note":null,"status":"public","like_student_ids":[],"is_featured":false,"views":66,"hashid":"npms3992p","is_content_changed":false,"review_status":"unsubmitted","submitted_at":null,"reviewed_at":null,"advise":null,"is_deleted":false}
[{"id":6104783,"file_name":"gameover.png","project_id":301620,"asset_id":267838,"created_at":"2021-10-02T10:16:43.643+08:00","updated_at":"2021-10-02T10:16:43.643+08:00"},{"id":6104784,"file_name":"bg.jpg","project_id":301620,"asset_id":267839,"created_at":"2021-10-02T10:16:43.645+08:00","updated_at":"2021-10-02T10:16:43.645+08:00"},{"id":6104785,"file_name":"swing_1.png","project_id":301620,"asset_id":267840,"created_at":"2021-10-02T10:16:43.646+08:00","updated_at":"2021-10-02T10:16:43.646+08:00"},{"id":6104786,"file_name":"swing_0.png","project_id":301620,"asset_id":267841,"created_at":"2021-10-02T10:16:43.647+08:00","updated_at":"2021-10-02T10:16:43.647+08:00"},{"id":6104787,"file_name":"0.png","project_id":301620,"asset_id":267842,"created_at":"2021-10-02T10:16:43.648+08:00","updated_at":"2021-10-02T10:16:43.648+08:00"},{"id":6104788,"file_name":"1.png","project_id":301620,"asset_id":267843,"created_at":"2021-10-02T10:16:43.649+08:00","updated_at":"2021-10-02T10:16:43.649+08:00"},{"id":6104789,"file_name":"2.png","project_id":301620,"asset_id":267844,"created_at":"2021-10-02T10:16:43.650+08:00","updated_at":"2021-10-02T10:16:43.650+08:00"},{"id":6104790,"file_name":"3.png","project_id":301620,"asset_id":267845,"created_at":"2021-10-02T10:16:43.650+08:00","updated_at":"2021-10-02T10:16:43.650+08:00"},{"id":6104791,"file_name":"4.png","project_id":301620,"asset_id":267846,"created_at":"2021-10-02T10:16:43.651+08:00","updated_at":"2021-10-02T10:16:43.651+08:00"},{"id":6104792,"file_name":"5.png","project_id":301620,"asset_id":267847,"created_at":"2021-10-02T10:16:43.652+08:00","updated_at":"2021-10-02T10:16:43.652+08:00"},{"id":6104793,"file_name":"arrow_1.png","project_id":301620,"asset_id":267848,"created_at":"2021-10-02T10:16:43.653+08:00","updated_at":"2021-10-02T10:16:43.653+08:00"},{"id":6104794,"file_name":"archer.png","project_id":301620,"asset_id":267849,"created_at":"2021-10-02T10:16:43.654+08:00","updated_at":"2021-10-02T10:16:43.654+08:00"},{"id":6104795,"file_name":"arrow_0.png","project_id":301620,"asset_id":267850,"created_at":"2021-10-02T10:16:43.655+08:00","updated_at":"2021-10-02T10:16:43.655+08:00"},{"id":6104796,"file_name":"bow.png","project_id":301620,"asset_id":267851,"created_at":"2021-10-02T10:16:43.656+08:00","updated_at":"2021-10-02T10:16:43.656+08:00"},{"id":6104797,"file_name":"apple.png","project_id":301620,"asset_id":267852,"created_at":"2021-10-02T10:16:43.657+08:00","updated_at":"2021-10-02T10:16:43.657+08:00"}]
橘蘋學習平台
我的作品
檢視專案頁
匯出
複製
匯入
刪除
截圖
繁中
简中
English
日本語
用手機掃描下方 QRCode 進行安裝
或您也可以
下載 APK
到這台電腦