- Blockly Game
- 計分:Puzzle=1, Maze=2, Bird=3, Turtle=4, Movie=5, Pond Tutor=6, Pond=10
- Maze 8
- Maze 9
- Maze 10
- Bird
- Bird level 6
- Bird level 7
- Bird level 8
- Bird level 9
- Bird level 10
- turtle 9
- Pond Tutor (池塘導師)
Please study the document(文件說明) about the Pond command.
- cannon(角度,距離) , 距離射程<=70
- scan(角度) 掃描
- swim(角度) 游動
- stop() 停止
- loc_x() x座標值
- loc_y() y座標值
- while (true) { ..... } while 迴圈
- Pond tutor 4
cannon(270,scan(270));
}
cannon(角度,距離), 用scan(角度)取代猜測"距離"的困擾
- Pond tutor9
- Pond tutor10
- 射程超過70時,需使用swim(角度)配合loc_x() 或loc_y()及 while loop 來移動,
- 如想要往x方向水平移動至50處
{
swim(0);
}
stop();
while(true)
{
cannon(0,scan(0));
}