Lode Runner version 2.11a, AI_VERSION=4

(1) Modified for AI VERSION = 4
   (1.1) When guard failing in hole, will drop gold before guard failing into hole totally
   (1.2) Shake time extension when guard in hole.
         NOW the runner can dig three hold for three guards and pass through them. (MUST quickly)
	 ==> The behavior almost same as original lode runner (APPLE-II version).
   Modified files: LodeRunner/lodeRunner.guard.js

(2) New Demo Data all ai_version = 4
    modified files: lodeRunner.demoData1.js

(3) Slow down play speed:
                            //slow normal fast
    change from speedMode = [15, 20, 25, 30, 35];
             to speedMode = [14, 18, 23, 29, 35];
    Modified files: lodeRunner.main.js

(4) Keep ai version don't overflow:
    Modified files: lodeRunner.preload.js
Cette révision appartient à :
simon_hung
2016-06-06 22:10:32 +08:00
Parent ae1eb8a02c
révision dc96a5ac8d
7 fichiers modifiés avec 199 ajouts et 180 suppressions
+2 -2
Voir le fichier
@@ -1,5 +1,5 @@
var VERSION = "2.01c";
var AI_VERSION = 3;
var VERSION = "2.11a";
var AI_VERSION = 4;
var NO_OF_TILES_X = 28,
NO_OF_TILES_Y = 16;