今天看啥  ›  专栏  ›  git小米粥

自制网页版植物大战僵尸,我跟女朋友玩得不亦乐乎

git小米粥  · CSDN  ·  · 2020-10-10 18:15

导语:

小时候刚刚玩到植物大战僵尸的时候,觉得游戏太好玩了,就幻想着自己以后要做一个会电脑的人,要写出好多好多游戏,让大家一起玩,长大后发现游戏太难做了,一己之力很难做出来,但是一些简单的童年游戏还是能够学会的。

这不,植物大战僵尸网页版他来了

我们先来看看效果图

在这里插入图片描述
在这里插入图片描述
这个实现还是挺简单的,只需要用到html,css,和JavaScript就能够做出整个游戏。

关注公众号【web小馆】,回复“ 植物大战僵尸 ”,下载 游戏源码

在这里插入图片描述

1,游戏项目目录

在这里插入图片描述
这个 images 用于存放植物,僵尸,还有背景图一系列图片。
js 用于存放植物和僵尸的攻击和动画,还有一些游戏界面基本的js。
level 用于存放每个关卡的僵尸的行为。
music 自然不用说,肯定是游戏的背景音乐。

废话不多说我们来看一看主要代码吧,学习一下这些代码是什么作用的。

2,js文件夹

在这里插入图片描述
cfunction.js ,里面写了游戏界面,素材载入,游戏的基本操作等等

var $User = function() {
		var a = navigator.platform,
			e = navigator.userAgent,
			c = (a == "Win32" || a == "Windows"),
			d = (a == "Mac68K" || a == "MacPPC" || a == "Macintosh"),
			b = (a == "X11" && !c && !d),
			f = c || d || b;
		return {
			Browser: {
				IE: !!(window.attachEvent && !window.opera),
				IE6: !!(window.attachEvent && !window.opera) && !window.XMLHttpRequest,
				Opera: !!window.opera,
				WebKit: e.indexOf("AppleWebKit/") > -1,
				Gecko: e.indexOf("Gecko") > -1 && e.indexOf("KHTML") == -1
			},
			System: {
				Win: c,
				Mac: d,
				Unix: b
			},
			Client: {
				PC: f,
				Mobile: !f
			},
			HTTP: location.protocol.toLowerCase() == "http:" ? 1 : 0,
			AuthorWebsite: location.hostname === "pvz.lonelystar.org"
		}
	}(),
	oSym = {
		Init: function(b, a) {
			this.Now = 0;
			this.Timer = null;
			this.execTask = null;
			this.TQ = [{
				T: 0,
				f: b,
				ar: a || []
			}];
			this.TimeStep = 10;
			this.Start()
		},
		Clear: function() {
			this.TQ.length = 0
		},
		Start: function() {
			(function() {
				try {
					++oSym.Now
				} catch (a) {
					alert("超时退出游戏");
					location.reload()
				}
				oSym.Timer = setTimeout(arguments.callee, oSym.TimeStep)
			})();
			(function() {
				var d = oSym,
					a = d.TQ,
					c = a.length,
					b, e;
				while (c--) {
					d.Now >= (b = a[c])
						.T && ((e = b.f)
							.apply(e, b.ar), d.removeTask(c))
				}
				d.execTask = setTimeout(arguments.callee, oSym.TimeStep)
			})()
		},
		Stop: function() {
			clearTimeout(this.Timer);
			clearTimeout(this.execTask);
			this.Timer = null
		},
		addTask: function(b, c, a) {
			var d = this.TQ;
			d[d.length] = {
				T: this.Now + b,
				f: c,
				ar: a
			};
			return this
		},
		removeTask: function(a) {
			this.TQ.splice(a, 1);
			return this
		}
	},
	ShadowPNG = "images/plantshadow" + ($User.Browser.IE6 ? (document.execCommand("BackgroundImageCache", false, true), "8.gif") : "32.png"),
	innerText = (function() {
		return $User.Browser.IE ? ($Random = "?", function(b, a) {
			b.innerText = a
		}) : ($Random = "#", function(b, a) {
			b.textContent = a
		})
	})(),
	oS = {
		W: 900,
		H: 600,
		C: 9,
		LawnMowerX: 70,
		Lvl: 0,
		GlobalVariables: {},
		LvlVariables: {},
		SelfVariables: [],
		LvlClearFunc: null,
		Init: function(e, g, b, d) {
			var c, a = window;
			if (b != d) {
				for (c in b) {
					a[c] != d ? (this.GlobalVariables[c] = a[c], a[c] = b[c]) : this.LvlVariables[c] = a[c] = b[c]
				}
			}
			ArCard = [];
			ArPCard = [];
			ArSun = [];
			$Pn = [];
			$Z = [];
			$P = [];
			EDAll = $("dAll");
			EDNewAll = EDAll.cloneNode(true);
			EDNewFlagMeter = $("dFlagMeter")
				.cloneNode(true);
			ESSunNum = $("sSunNum");
			this.LoadAccess = null;
			this.InitLawnMower = null;
			this.StartGame = null;
			this.ChoseCard = this.MPID = "";
			this.PicNum = this.AccessNum = this.MCID = this.Chose = 0;
			this.Monitor = null;
			this.UserDefinedFlagFunc = null;
			for (c in e) {
				this.SelfVariables.push(c);
				this[c] = e[c]
			}!this.PicArr && (this.PicArr = []);
			!this.PName && (this.PName = []);
			!this.ZName && (this.ZName = []);
			!this.backgroundImage && (this.backgroundImage = "images/interface/background1.jpg");
			!this.LF && (this.LF = [0, 1, 1, 1, 1, 1]);
			!this.ZF && (this.ZF = this.LF);
			!this.LargeWaveFlag && (this.LargeWaveFlag = {});
			this.SunNum == d && (this.SunNum = 50);
			this.CanSelectCard == d && (this.CanSelectCard = 1);
			this.DKind == d && (this.DKind = 1);
			this.StaticCard == d && (this.StaticCard = 1);
			!this.StartGameMusic && (this.StartGameMusic = "UraniwaNi.swf");
			(this.Coord || function() {
				oS.R = 5;
				ChosePlantX = function(f) {
					return Compare(GetC(f), 1, oS.C, GetX)
				};
				ChosePlantY = function(f) {
					return $SSml(f, [86, 181, 281, 386, 476], [
						[75, 0],
						[175, 1],
						[270, 2],
						[380, 3],
						[470, 4],
						[575, 5]
					])
				};
				GetC = function(f) {
					return $SSml(f, [100, 140, 220, 295, 379, 460, 540, 625, 695, 775, 855, 935], [-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11])
				};
				GetR = function(f) {
					return $SSml(f, [86, 181, 281, 386, 476], [0, 1, 2, 3, 4, 5])
				};
				GetX = function(f) {
					return $SEql(f, {
						"-1": 100,
						0: 140,
						1: 187,
						2: 267,
						3: 347,
						4: 427,
						5: 507,
						6: 587,
						7: 667,
						8: 747,
						9: 827,
						10: 865,
						11: 950
					})
				};
				GetY = function(f) {
					return $SEql(f, {
						0: 75,
						1: 175,
						2: 270,
						3: 380,
						4: 470,
						5: 575
					})
				};
				GetY1Y2 = function(f) {
					return $SEql(f, {
						0: [0, 85],
						1: [86, 180],
						2: [181, 280],
						3: [281, 385],
						4: [386, 475],
						5: [476, 600]
					})
				};
				!oS.InitLawnMower && (oS.InitLawnMower = function() {
					var f = 6,
						h = oGd.$LM;
					while (--f) {
						h[f] = 1;
						NewImg("LawnMower" + f, "images/LawnMower.gif", "left:" + oS.LawnMowerX + "px;top:" + (GetY(f) - 60) + "px;z-index:" + (3 * f + 2), EDAll)
					}
				})
			})();
			g && oP.Init(g);
			oT.Init(this.R);
			oZ.Init(this.R);
			oGd.Init();
			this.LoadMusic();
			this.LoadProgress()
		},
		LoadProgress: function(r, l, a) {
			SetVisible($("dFlagMeter"));
			SetHidden($("imgGQJC"));
			var p = oS,
				j = [],
				i = p.PicArr,
				k = p.PName,
				s = p.ZName,
				u = 0,
				d = document.createTextNode("正在准备载入游戏素材。。。"),
				t = GetX(11),
				g = oGd.$LF,
				b = oGd.$ZF,
				c = oS.R + 1,
				e = p.LoadImage,
				h = p.CheckImg,
				f = p.InitPn,
				m, q;
			innerText($("sFlagMeterTitleF"), d.data);
			$("dFlagMeterTitleB")
				.insertBefore(d, $("sFlagMeterTitleF"));
			u += (r = k.length);
			while (r--) {
				a = (l = k[r].prototype)
					.PicArr.slice(0);
				j[j.length] = [l.EName, a[l.NormalGif], l.getShadow(l)];
				a.splice(l.NormalGif, 1);
				Array.prototype.push.apply(i, a)
			}
			for (r in oS.LargeWaveFlag) {
				s[s.length] = oFlagZombie;
				break
			}
			r = s.length;
			while (r--) {
				Array.prototype.push.apply(i, (l = (q = s[r])
						.prototype)
					.PicArr.slice(0));
				l.Init.call(q, t, l, b, c)
			}
			p.PicNum = u += i.length;
			r = i.length;
			while (r--) {
				e(i[r], h)
			}
			r = j.length;
			while (r--) {
				e((m = j[r])[1], f, m)
			}
		},
		InitPn: function(a) {
			var b;
			$Pn[a[0]] = b = NewEle(0, "div", "position:absolute");
			NewImg(0, ShadowPNG, a[2], b);
			NewImg(0, a[1], "", b);
			oS.CheckImg()
		},
		LoadImage: $User.Browser.IE ? function(b, d, c) {
			var a = new Image();
			a.onreadystatechange = function() {
				a.readyState == "complete" && d(c)
			};
			a.onerror = function() {
				a.onreadystatechange = null;
				a.title = b;
				d(c)
			};
			a.src = b
		} : function(b, d, c) {
			var a = new Image();
			a.src = b;
			a.complete ? d(c) : (a.onload = function() {
				a.complete && d(c)
			}, a.onerror = function() {
				a.title = b;
				d(c)
			})
		},
		CheckImg: function(b, a) {
			var c = oS;
			if (c.AccessNum > c.PicNum) {
				return
			}
			b = 139 - c.AccessNum++ * 140 / c.PicNum - 11;
			$("imgFlagHead")
				.style.left = b + "px";
			a = "载入:(" + c.AccessNum + "/" + c.PicNum + ")";
			innerText($("sFlagMeterTitleF"), a);
			$("dFlagMeterTitleB")
				.firstChild.data = a;
			$("imgFlagMeterFull")
				.style.clip = "rect(0,auto,21px," + (b + 11) + "px)";
			if (c.AccessNum == c.PicNum) {
				SetHidden($("dFlagMeterContent"), $("dFlagMeter"));
				SetStyle($("dFlagMeter"), {
					left: "260px",
					top: "560px"
				});
				innerText($("sFlagMeterTitleF"), $("dFlagMeterTitleB")
					.firstChild.data = c.LevelName);
				$("imgFlagHead")
					.style.left = "139px";
				$("imgFlagMeterFull")
					.style.clip = "rect(0,auto,auto,157px)";
				(oS.AutoSun = $User.Client.PC && $User.HTTP ? Math.floor(getCookie("JSPVZAutoSun")) : 1) && ($("cAutoSun")
					.checked = true);
				delete c.PicArr;
				delete c.Coord;
				delete c.LF;
				delete c.ZF;
				(c.LoadAccess || function() {
					NewImg("imgGrowSoil", "images/interface/GrowSoil.png", "display:none;z-index:50", EDAll);
					NewEle("dTitle", "div", 0, 0, EDAll);
					innerText(ESSunNum, c.SunNum);
					SetStyle($("tGround"), {
						background: "url(" + c.backgroundImage + ") no-repeat",
						display: "block"
					});
					InitPCard();
					oSym.addTask(100, function() {
						var d = EDAll.scrollLeft += 25;
						d < 500 ? oSym.addTask(2, arguments.callee, []) : (DisplayZombie(), SetBlock($("dMenu")), oS.CanSelectCard ? (SetBlock($("dTop"), $("dSelectCard")), SetVisible($("dCardList"))) : (AutoSelectCard(), oSym.addTask(200, LetsGO, [])))
					}, [])
				})()
			}
		}
	},
	oP = {
		Init: function(b) {
			var a;
			this.NumZombies = 0;
			this.FlagZombies = 0;
			for (a in b) {
				this[a] = b[a]
			}
			this.LAr = this.ArZ.length;
			this.FlagHeadStep = Math.floor(140 / (b.FlagNum - 1))
		},
		SelectFlagZombie: function(d) {
			var h = oP,
				c = [],
				a = 0,
				g = h.ArZ,
				f = oS.LargeWaveFlag[h.FlagZombies],
				e = h.SumToZombie,
				b = !f ? 150 : (f.style.top = "5px", --d, c[a++] = oFlagZombie, 30);
			while (d > 0) {
				d -= (c[a++] = g[Math.floor(Math.random() * $SEql(d, e))])
					.prototype.Lvl
			}
			h.NumZombies += a;
			h.SetTimeoutZombie(c, b)
		},
		SetTimeoutTomZombie: function(c) {
			var f = [],
				d = [],
				e = 0,
				a = c.length,
				h = oGd.$Tombstones,
				b, g;
			for (b in h) {
				g = b.split("_");
				d[e] = (f[e] = new c[Math.floor(Math.random() * a)])
					.CustomBirth(g[0], g[1], 100);
				++e
			}
			oP.NumZombies += e;
			asyncInnerHTML(d.join(""), function(n, l) {
				EDAll.appendChild(n);
				var k = l.length,
					m, j;
				while (k--) {
					m = l[k];
					oSym.addTask(10, function(r, q, i, p) {
						q = Math.max(q - p, 0);
						SetStyle(r, {
							top: q + "px",
							clip: "rect(0,auto," + (i += p) + "px,0)"
						});
						q && oSym.addTask(10, arguments.callee, [r, q, i, p])
					}, [$(m.id)
						.childNodes[1], j = m.height, 0, j * 0.1
					]);
					m.Birth()
				}
			}, f)
		},
		SetTimeoutZombie: function(b, d) {
			var f = [],
				c = [],
				e = delayT = 0,
				a = b.length;
			while (e < a) {
				c[e] = (f[e] = new b[e])
					.prepareBirth(delayT);
				delayT += d;
				++e
			}
			asyncInnerHTML(c.join(""), function(j, h) {
				EDAll.appendChild(j);
				var g = h.length;
				while (g--) {
					h[g].Birth()
				}
			}, f)
		},
		AddZombiesFlag: function(d) {
			var g = oP,
				c = oS.LargeWaveFlag,
				e, b = g.FlagHeadStep,
				a = g.FlagNum;
			SetVisible($("imgGQJC"), $("dFlagMeterContent"));
			for (e in c) {
				Math.floor(e) < a ? SetStyle(c[e], {
					display: "block",
					left: (150 - (e - 1) * b) + "px"
				}) : SetBlock(c[e])
			}
			oGd.MoveBullet();
			g.ReadyFlag = 1;
			g.FlagPrgs(d)
		},
		FlagPrgs: function() {
			var f = oP,
				c = f.FlagZombies,
				e = f.FlagToSumNum,
				a = 139 - c * f.FlagHeadStep,
				d = $SSml(c, e.a1, e.a2),
				b;
			f.FlagNum > (c = ++f.FlagZombies) ? ($("imgFlagHead")
				.style.left = a + "px", $("imgFlagMeterFull")
				.style.clip = "rect(0,157px,21px," + (a + 11) + "px)", (b = $SEql(c, f.FlagToMonitor)) && oSym.addTask(1690, function(g) {
					!g[1] && (g[0](), g[1] = 1)
				}, [b]), oSym.addTask(2490, function(g) {
					var h = oP;
					h.ReadyFlag == g++ && (h.ReadyFlag = g, h.FlagPrgs())
				}, [c])) : ($("imgFlagHead")
				.style.left = "-1px", $("imgFlagMeterFull")
				.style.clip = "rect(0,157px,21px,0)");
			f.SelectFlagZombie.call(f, d);
			f.UserDefinedFlagFunc && f.UserDefinedFlagFunc()
		},
		MonPrgs: function() {
			var c = oP,
				b, a = c.FlagZombies;
			!--c.NumZombies && (a < c.FlagNum ? ((b = $SEql(a, c.FlagToMonitor)) && (b[0](), b[1] = 1), c.ReadyFlag = ++a, oSym.addTask(500, c.FlagPrgs, [])) : (c.FlagToEnd(), oSym.Stop()))
		},
		Monitor: function(a, b) {
			a && a.f.apply(a.f, a.ar);
			b && (oP.UserDefinedFlagFunc = b);
			(function() {
				oZ.traversalOf();
				oSym.addTask(10, arguments.callee, [])
			})()
		}
	},
	oGd = {
		Init: function() {
			this.$ = [];
			this.$Crater = [];
			this.$Tombstones = [];
			this.$Torch = [];
			this.$LF = oS.LF;
			this.$ZF = oS.ZF;
			this.$LM = [];
			this.$B = []
		},
		add: function(c, a, b, d) {
			(b = (d = this.$)[a]) && b.Die();
			d[a] = c
		},
		del: function(a) {
			delete this.$[a.R + "_" + a.C + "_" + a.PKind]
		},
		MoveBullet: function() {
			var d = oGd.$B,
				a = d.length,
				c, b = oGd.$Torch;
			while (a--) {
				(c = d[a])
				.F(c, a, d, b)
			}
			oSym.addTask(1, arguments.callee, [])
		},
		MB1: function(e, j, m, f) {
			var d = e.id,
				k = $(d),
				h = e.Attack,
				a = e.D,
				p, q = e.X,
				c = GetC(q),
				g = e.R,
				n = e.Kind,
				l = e.ChangeC,
				b = oZ.getZ(q, g, a);
			n < 1 && f[g + "_" + c] && l != c && ((e.Kind = ++n) && (h = e.Attack = 40), e.ChangeC = c, k.src = "images/Plants/PB" + n + a + ".gif");
			b && b.Altitude == 1 ? (b.getHurt(-1, a, h, n, 0, 0, 0), m.splice(j, 1), (SetStyle(k, {
					left: e.pixelLeft + 28 + "px"
				}))
				.src = "images/Plants/PeaBulletHit.gif", oSym.addTask(10, ClearChild, [k])) : (e.X += (p = !a ? 5 : -5)) < oS.W && e.X > 100 ? k.style.left = (e.pixelLeft += p) + "px" : (m.splice(j, 1), ClearChild(k))
		},
		MB2: function(d, g, h) {
			var c = d.id,
				j = d.X,
				a = GetC(j),
				f = d.R,
				b = oZ.getZ(j, f, 0),
				e = $(c);
			b && b.Altitude == 1 ? (b.getHurt(-1, 0, 20, 0, 0, 0, 0), h.splice(g, 1), (SetStyle(e, {
					left: d.pixelLeft + 38 + "px"
				}))
				.src = "images/Plants/ShroomBulletHit.gif", oSym.addTask(10, ClearChild, [e])) : (d.X += 5) < oS.W ? e.style.left = (d.pixelLeft += 5) + "px" : (h.splice(g, 1), ClearChild(e))
		},
		MB3: function(g, d, a) {
			var h = g.id,
				b = $(h),
				f = oZ.getZ(g.X, g.R, 0),
				e = g.D,
				c = g.pixelTop;
			if (f && f.Altitude == 1) {
				f.getHurt(-1, 0, 20, 0, 0, 0, 0);
				a.splice(d, 1);
				ClearChild(b)
			} else {
				switch (g.D) {
					case 4:
						(g.X -= 5) < 100 ? (a.splice(d, 1), ClearChild(b)) : b.style.left = (g.pixelLeft -= 5) + "px";
						break;
					case 6:
						(c = g.pixelTop -= 5) < -15 ? (a.splice(d, 1), ClearChild(b)) : (b.style.top = c + "px", g.R = GetR(c + 15));
						break;
					case 2:
						(c = g.pixelTop += 5) > 600 ? (a.splice(d, 1), ClearChild(b)) : (b.style.top = c + "px", g.R = GetR(c + 15));
						break;
					case 7:
						(g.X += 4.3) > 900 || (c = g.pixelTop -= 5) < -15 ? (a.splice(d, 1), ClearChild(b)) : (g.R = GetR(c + 15), b.style.left = (g.pixelLeft += 9.6) + "px", b.style.top = c + "px");
						break;
					case 1:
						(g.X += 4.3) > 900 || (c = g.pixelTop += 5) > 600 ? (a.splice(d, 1), ClearChild(b)) : (g.R = GetR(c + 15), b.style.left = (g.pixelLeft += 9.6) + "px", b.style.top = c + "px")
				}
			}
		}
	},
	oZ = {
		Init: function(b) {
			this.$ = [];
			this.$R = [];
			var a;
			for (a = b; a; this.$[a] = [], this.$R[a--] = []) {}
		},
		add: function(b, a) {
			(a = this.$[b.R])
			.push(b);
			a.sort(function(d, c) {
				return d.AttackedLX - c.AttackedLX
			});
			a.RefreshTime = oSym.Now
		},
		getZ: function(k, b, g) {
			var e = 0,
				m = this.$[b],
				h = this.$R[b],
				j, c, l, f;
			if (!g) {
				f = (j = m)
					.length;
				while (e < f && (c = j[e++])
					.AttackedLX <= k) {
					if (c.HP && c.AttackedRX >= k) {
						return c
					}
				}
			} else {
				(l = m.RefreshTime) == h.RefreshTime ? j = h : (j = (this.$R[b] = m.slice(0))
						.sort(function(i, d) {
							return d.AttackedRX - i.AttackedRX
						}))
					.RefreshTime = l;
				f = j.length;
				while (e < f && (c = j[e++])
					.AttackedRX >= k) {
					if (c.HP && c.AttackedLX <= k) {
						return c
					}
				}
			}
			return
		},
		getArZ: function(e, d, b) {
			var g = 0,
				l = this.$[b],
				f = [],
				k = 0,
				c, h = l.length,
				j;
			while (g < h && (j = (c = l[g++])
				.AttackedLX) < d) {
				c.HP && (j > e || c.AttackedRX > e) && (f[k++] = c)
			}
			return f
		},
		moveTo: function(g, f, c) {
			var b = this.$[f],
				a = this.$[c],
				e = b.length,
				d;
			while (e--) {
				(o = b[e])
				.id == g && (b.splice(e, 1), o.R = c, a.push(o), (a.sort(function(i, h) {
						return i.AttackedLX - h.AttackedLX
					}))
					.RefreshTime = b.RefreshTime = oSym.Now, e = 0)
			}
		},
		traversalOf: function() {
			var c, a, e = this.$,
				i, k = Refresh = 0,
				j = 1000,
				h, g, b = function(l) {
					(h = l.AttackedLX) > j && (k = Refresh = 1);
					j = h
				},
				d = function(l) {
					Refresh = 1;
					j = h
				},
				f = e.length;
			(function(n) {
				var m = (i = e[n])
					.length,
					l = arguments.callee;
				while (m--) {
					c = i[m];
					c.HP && c.ZX < 901 && oT.check(c);
					!c.HP ? (i.splice(m, 1), d(c)) : !(c.FreeFreezeTime || c.FreeSetbodyTime) ? (c.beAttacked && !c.isAttacking && c.JudgeAttack(), g = c.id, !c.isAttacking ? (a = c.Speed, !c.WalkDirection ? (c.AttackedRX -= a) < 100 ? (GameOver(), oSym.Stop(), m = 0, n = 1) : (c.ZX = c.AttackedLX -= a) < 150 && oGd.$LM[n] ? (i.splice(m, 1), c.Die(2), LawnMowerKill(n), d(c)) : ($(g)
						.style.left = Math.floor(c.X -= a) + "px", b(c)) : (c.AttackedLX += a) > oS.W ? (i.splice(m, 1), c.Die(2), d(c)) : (c.ZX = c.AttackedRX += a, $(g)
						.style.left = Math.ceil(c.X += a) + "px", b(c))) : b(c)) : b(c)
				}
				k ? (k = 0, i.sort(function(q, p) {
					return q.AttackedLX - p.AttackedLX
				}), i.RefreshTime = oSym.Now) : Refresh && (i.RefreshTime = oSym.Now);
				--n && oSym.addTask(0, l, [n])
			})(e.length - 1)
		}
	},
	oT = {
		Init: function(b) {
			this.$ = [];
			this.$L = [];
			for (var a = b; a;) {
				this.$[a] = [];
				this.$L[a--] = []
			}
		},
		add: function(f, c, g) {
			var e = this.$[f],
				d = c.length,
				b;
			while (d--) {
				b = c[d];
				e.push([b[0], b[1], b[2], g])
			}
			e.sort(function(i, h) {
				return h[1] - i[1]
			});
			e.RefreshTime = new Date
		},
		check: function(b, l, k, e, a, j, c) {
			var h = b.AttackedLX,
				f = b.AttackedRX,
				d = 0,
				g = this.$[c = b.R];
			if (!b.WalkDirection) {
				while (d < g.length && (e = g[d])[1] >= h) {
					(a = $P[e[3]])
					.canTrigger && e[0] <= h && a.TriggerCheck(b, e[2], d);
					++d
				}
			} else {
				(k = g.RefreshTime) == (j = this.$L[c])
				.RefreshTime ? l = j : (l = (this.$L[c] = g.slice(0))
						.sort(function(m, i) {
							return m[0] - i[0]
						}))
					.RefreshTime = k;
				while (d < l.length && (e = l[d])[0] <= f) {
					(a = $P[e[3]])
					.canTrigger && e[1] >= f && a.TriggerCheck(b, e[2], d);
					++d
				}
			}
		},
		delP: function(e) {
			var b = e.oTrigger,
				f = e.id,
				d, a, c;
			for (d in b) {
				for (c = (a = this.$[d])
					.length; c--; a[c][3] == f && a.splice(c, 1)) {}
				a.RefreshTime = new Date
			}
		},
		indexOf: function(j, d) {
			var f = new RegExp(d + ",", "g"),
				h = (j.toString() + ",")
				.replace(f, "┢,")
				.replace(/[^,┢]/g, ""),
				i = 0,
				g = 0,
				b = [];
			for (;
				(g = h.indexOf("┢", g)) > 0; b.push((g++ - i++ - 2) / 3)) {}
			return b
		}
	},
	asyncInnerHTML = function(d, c, a) {
		var b = $n("div"),
			e = document.createDocumentFragment();
		b.innerHTML = d;
		(function(g) {
			var f = arguments.callee;
			g-- ? (e.appendChild(b.firstChild), setTimeout(function() {
				f(g)
			}, 0)) : c(e, a)
		})(b.childNodes.length)
	},
	WhichMouseButton = function(a) {
		a = window.event || a;
		var b = $User.Browser;
		return !b.Gecko ? $SEql(a.button, {
			1: 1,
			0: b.IE ? 2 : 1,
			2: 2,
			"default": 1
		}) : $SEql(a.which, {
			1: 1,
			3: 2,
			"default": 1
		})
	},
	GroundOnmousedown = function(i) {
		i = window.event || i;
		var a = i.clientX,
			k = i.clientY + document.body.scrollTop,
			g = ChosePlantX(a),
			h = ChosePlantY(k),
			d = g[0],
			c = h[0],
			f = h[1],
			b = g[1],
			j = GetAP(a, k, f, b);
		switch (oS.Chose) {
			case 1:
				WhichMouseButton(i) < 2 ? GrowPlant(j[0], d, c, f, b) : CancelPlant();
				break;
			case -1:
				WhichMouseButton(i) < 2 ? ShovelPlant(j) : CancelShovel()
		}
	},
	GetAP = function(a, h, d, c) {
		var f, i = oGd.$,
			e, g = [],
			b;
		for (f = 0; f < 4; g.push(e = i[d + "_" + c + "_" + f++]), e && !(a < e.pixelLeft || a > e.pixelRight || h < e.pixelTop || h > e.pixelBottom) && (b = e)) {}
		return [g, b]
	},
	GroundOnkeydown = function(b) {
		var a;
		if ((a = (b || event)
			.keyCode) == 27) {
			switch (oS.Chose) {
				case 1:
					CancelPlant();
					break;
				case -1:
					CancelShovel()
			}
			return false
		} else {
			!oS.Chose && KeyBoardGrowPlant(a)
		}
	},
	KeyBoardGrowPlant = function(b, a) {
		a = a || 0;
		if (b > 47 && b < 58) {
			switch (a) {
				case 0:
					ChosePlant({
						clientX: 450,
						clientY: 300
					}, String.fromCharCode(b))
			}
		}
	},
	GroundOnmousemove = function(k) {
		k = window.event || k;
		var d = k.clientX,
			b = k.clientY + document.body.scrollTop,
			m = oS.ChoseCard,
			h = ChosePlantX(d),
			i = ChosePlantY(b),
			f = h[0],
			c = i[0],
			g = i[1],
			a = h[1],
			p = GetAP(d, b, g, a);
		switch (oS.Chose) {
			case 1:
				var n = ArCard[m].PName.prototype;
				SetStyle($("MovePlant"), {
					left: d - n.width * 0.5 + "px",
					top: b + 20 - n.height + "px"
				});
				n.CanGrow(p[0], g, a) ? SetStyle($("MovePlantAlpha"), {
					display: "block",
					left: f + n.GetDX() + "px",
					top: c - n.height + n.GetDY(g, a, p[0]) + "px"
				}) : SetNone($("MovePlantAlpha"));
				break;
			case -1:
				var j = p[1],
					l = j ? j.id : "",
					q = oS.MPID;
				q != l && (q && SetAlpha($(q)
					.childNodes[1], 100, 1), (oS.MPID = l) && SetAlpha($(l)
					.childNodes[1], 60, 0.6));
				SetStyle($("tShovel"), {
					left: d - 15 + "px",
					top: b - 16 + "px"
				})
		}
	},
	ViewProducePlant = function(b) {
		var a = b.prototype;
		$("pHandBookPlant")
			.src = a.PicArr[a.NormalGif];
		$("tdProducePlant")
			.innerHTML = a.Produce;
		innerText($("tdHandBookPlantName"), a.CName);
		innerText($("spSunNum"), a.SunNum);
		innerText($("spCoolTime"), a.coolTime * 0.001 + "秒")
	},
	ViewProduceZombie = function(b) {
		var a = b.prototype;
		$("pHandBookZombie")
			.src = a.PicArr[a.NormalGif];
		$("tdProduceZombie")
			.innerHTML = a.Produce;
		innerText($("tdHandBookZombieName"), a.CName)
	},
	DisplayZombie = function() {
		var c = oP.ArZ.slice(0),
			b = l2 = c.length,
			f, g = $("dZombie"),
			e = [],
			d = [],
			a;
		while (b--) {
			e.push(Math.floor(150 + Math.random() * 444))
		}
		e.sort(function(i, h) {
			return i - h
		});
		while (l2) {
			f = c[a = Math.floor(Math.random() * l2)].prototype;
			c.splice(a, 1);
			d[l2--] = f.getHTML("", Math.floor(50 + Math.random() * 201) - f.width * 0.5, e[l2] - f.height, 1, "visibility", "auto", 0)
		}
		asyncInnerHTML(d.join(""), function(h) {
			g.appendChild(h)
		})
	},
	AutoSelectCard = function() {
		var c = oS.PName,
			b = -1,
			a = c.length;
		while (++b < a) {
			SelectCard(c[b].prototype.EName)
		}
	},
	InitPCard = function() {
		var d = "",
			f, e = oS.PName,
			a = e.length,
			b = 0,
			c;
		while (b < a) {
			f = e[b];
			c = f.prototype;
			ArPCard[EName = c.EName] = {
				Select: 0,
				PName: f
			};
			d += '<span class="span1" id="Card' + EName + '" οnmοuseοut="SetNone($(\'dTitle\'))" οnmοusemοve="ViewCardTitle(\'' + EName + "',event)\" οnclick=\"SelectCard('" + EName + '\')"><img src="' + c.PicArr[c.CardGif] + '"><span class="span2">' + c.SunNum + "</span></span>";
			b++ % 6 == 5 && (d += "<br>")
		}
		$("dPCard")
			.innerHTML = d
	},
	ViewCardTitle = function(b, c) {
		c = c || window.event;
		var f = $("dTitle"),
			a = ArPCard[b].PName.prototype;
		f.innerHTML = a.CName + "<br>冷却时间:" + (a.coolTime * 0.001)
			.toFixed(1) + "秒<br>" + a.Tooltip;
		SetStyle(f, {
			left: c.clientX + EDAll.scrollLeft - 3 + "px",
			top: c.clientY + 18 + "px",
			display: "block"
		})
	},
	SelectCard = function(f) {
		var a = $("Card" + f)
			.firstChild,
			i = ArPCard[f],
			c = i.PName.prototype,
			h, e, b, g = $("btnOK");
		if (!i.Select) {
			if (!(ArPCard.SelNum |= 0)) {
				g.disabled = "";
				g.style.color = "#FC6"
			} else {
				if (ArPCard.SelNum > 9) {
					return
				}
			}++ArPCard.SelNum;
			i.Select = 1;
			oS.StaticCard && (h = NewEle("dCard" + f, "div", 0, {
				onclick: function() {
					SelectCard(f)
				}
			}, $("dCardList")), NewImg(0, a.src, 0, h), innerText(NewEle("sSunNum" + f, "span", 0, 0, h), c.SunNum), a.src = c.PicArr[c.CardGif + 1])
		} else {
			i.Select = 0;
			!--ArPCard.SelNum && (g.disabled = "disabled", g.style.color = "#888");
			(h = $("dCard" + f))
			.onclick = null;
			e = h.firstChild;
			b = h.lastChild;
			ClearChild(e, b, h);
			a.src = c.PicArr[c.CardGif]
		}
	},
	ResetSelectCard = function() {
		var a;
		for (a in ArPCard) {
			ArPCard[a].Select && SelectCard(a)
		}
		$("btnOK")
			.disabled = "disalbed";
		$("btnOK")
			.style.color = "#888"
	},
	LetsGO = function() {
		var b = $("dZombie"),
			f = $("dCardList"),
			h = 0,
			l = f.childNodes.length,
			g, j, m, e, k, a, c = $("dBody");
		while (b.hasChildNodes()) {
			b.removeChild(k = b.lastChild);
			k = null
		}
		SetNone(b, $("dSelectCard"));
		$("tGround")
			.style.left = "-115px";
		EDAll.scrollLeft = 0;
		SetStyle($("dTop"), {
			left: "105px",
			top: 0
		});
		f.style.left = 0;
		while (h < l) {
			(function(d) {
				g = (k = f.childNodes[d])
					.id.substr(5);
				m = (j = ArPCard[g].PName)
					.prototype;
				k.onclick = function(i) {
					ChosePlant(i, d)
				};
				k.onmouseover = function() {
					SetBlock($("dTitle"));
					ViewPlantTitle(oS.MCID = d)
				};
				k.onmouseout = function() {
					SetNone($("dTitle"))
				};
				(a = k.lastChild)
				.id = "sSunNum" + d;
				innerText(a, m.SunNum);
				k.firstChild.src = m.PicArr[m.CardGif + 1];
				ArCard.push({
					DID: k.id,
					CDReady: 0,
					SunReady: 0,
					PName: j
				})
			})(h++)
		}
		c.onkeydown = function(d) {
			GroundOnkeydown(d)
		};
		c.onmousedown = function(d) {
			GroundOnmousedown(d)
		};
		c.onmousemove = function(d) {
			GroundOnmousemove(d)
		};
		SetVisible(f);
		(oS.StartGame || function() {
			ClearChild($("oEmbed"));
			NewEle("oEmbed", "embed", "width:0;height:0", {
				src: "music/" + oS.StartGameMusic
			}, EDAll);
			SetVisible($("tdShovel"), $("dFlagMeter"));
			SetBlock($("dTop"));
			oS.InitLawnMower();
			PrepareGrowPlants(function() {
				oP.Monitor(oS.Monitor, oS.UserDefinedFlagFunc);
				BeginCool();
				oS.DKind && AutoProduceSun(25);
				oSym.addTask(1500, function() {
					oP.AddZombiesFlag();
					SetVisible($("dFlagMeterContent"))
				}, [])
			})
		})()
	},
	ViewPlantTitle = function(b) {
		var f = $("dTitle"),
			e = ArCard[b],
			c = e.PName.prototype,
			a = c.CName + "<br>冷却时间:" + (c.coolTime * 0.001)
			.toFixed(1) + "秒<br>" + c.Tooltip;
		!e.CDReady && (a += '<br><span style="color:#F00">正在重新装填中...</span>');
		!e.SunReady && (a += '<br><span style="color:#F00">阳光不足!</span>');
		f.innerHTML = a;
		SetStyle(f, {
			top: 60 * b + "px",
			left: "100px"
		})
	},
	BeginCool = function() {
		var b = ArCard.length,
			c, d, a, e;
		while (b--) {
			a = (c = (d = ArCard[b])
					.PName.prototype)
				.coolTime;
			e = c.SunNum;
			switch (a) {
				case 7500:
					d.CDReady = 1;
					e <= oS.SunNum && (d.SunReady = 1, $(d.DID)
						.firstChild.src = c.PicArr[c.CardGif]);
					break;
				case 30000:
					DoCoolTimer(b, 20000, 20000);
					break;
				default:
					DoCoolTimer(b, 35000, 35000)
			}
		}
	},
	MonitorCard = function(c) {
		var a = ArCard.length,
			b;
		if (oS.Chose < 1) {
			while (a--) {
				(b = (c = ArCard[a])
					.PName.prototype)
				.SunNum > oS.SunNum ? (c.SunReady && (c.SunReady = 0), $(c.DID)
					.firstChild.src = b.PicArr[b.CardGif + 1]) : (!c.SunReady && (c.SunReady = 1), c.CDReady && ($(c.DID)
					.firstChild.src = b.PicArr[b.CardGif]))
			}
		} else {
			while (a--) {
				(b = (c = ArCard[a])
					.PName.prototype)
				.SunNum > oS.SunNum ? c.SunReady && (c.SunReady = 0) : !c.SunReady && (c.SunReady = 1)
			}
		}
		ViewPlantTitle(oS.MCID)
	},
	DoCoolTimer = function(c, b) {
		var a = $(ArCard[c].DID);
		(function(d, g, f, e) {
			d > 0 ? (innerText(f, d), innerText(e, d), oSym.addTask(50, arguments.callee, [(d - 0.5)
				.toFixed(1), g, f, e
			])) : (ClearChild(f, e), ArCard[g].CDReady = 1, MonitorCard())
		})(b * 0.001, c, NewEle("dCD1" + c, "span", "position:absolute;left:22px;top:22px;font-size:18px;font-weight:500;font-family:Verdana;color:#000", "", a), NewEle("dCD2" + c, "span", "position:absolute;left:20px;top:20px;font-size:18px;font-weight:500;font-family:Verdana;color:#FF0", "", a))
	},
	ChosePlant = function(a, f) {
		var h = ArCard[oS.ChoseCard = f];
		if (!(h.CDReady && h.SunReady)) {
			return
		}
		var g = (a = a || event)
			.clientX,
			e = a.clientY + document.body.scrollTop,
			d = h.PName.prototype,
			c = ArCard.length,
			b;
		oS.Chose = 1;
		EditImg((EditImg($Pn[d.EName].childNodes[1].cloneNode(false), "MovePlant", "", {
				left: g - d.width * 0.5 + "px",
				top: e + 20 - d.height + "px",
				zIndex: 254
			}, EDAll))
			.cloneNode(false), "MovePlantAlpha", "", {
				display: "none",
				filter: "alpha(opacity=40)",
				opacity: 0.4,
				zIndex: 30
			}, EDAll);
		while (c--) {
			$((b = ArCard[c])
					.DID)
				.firstChild.src = (d = b.PName.prototype)
				.PicArr[d.CardGif + 1]
		}
		SetNone($("dTitle"))
	},
	CancelPlant = function() {
		ClearChild($("MovePlant"), $("MovePlantAlpha"));
		oS.Chose = 0;
		MonitorCard()
	},
	ShovelPlant = function(a) {
		var b = a[0],
			c = a[1];
		c && (c.PKind || !(b[1] || b[2])) && (c.Die(), oS.MPID = "");
		CancelShovel()
	},
	CancelShovel = function(a) {
		var b = oS.MPID;
		ClearChild($("tShovel"));
		oS.Chose = 0;
		SetBlock($("imgShovel"));
		b && SetAlpha($(b)
			.childNodes[1], 100, 1)
	},
	ChoseShovel = function(a) {
		WhichMouseButton(a) < 2 && (SetNone($("imgShovel")), NewImg("tShovel", "images/interface/Shovel.png", "left:" + (a.clientX - 10) + "px;top:" + (a.clientY + document.body.scrollTop - 17) + "px;z-index:1", EDAll), oS.Chose = -1, StopBubble(a))
	},
	StopBubble = function(a) {
		window.event ? event.cancelBubble = true : a.stopPropagation()
	},
	GrowPlant = function(i, c, b, d, a) {
		var g = oS.ChoseCard,
			e = ArCard[g],
			f = e.PName,
			h = f.prototype;
		h.CanGrow(i, d, a) && ((new f)
			.Birth(c, b, d, a, i), innerText(ESSunNum, oS.SunNum -= h.SunNum), $(e.DID)
			.firstChild.src = h.PicArr[h.CardGif + 1], e.CDReady = 0, DoCoolTimer(g, h.coolTime), SetStyle($("imgGrowSoil"), {
				left: c - 30 + "px",
				top: b - 40 + "px",
				zIndex: 3 * d,
				display: "block"
			}), oSym.addTask(20, SetNone, [$("imgGrowSoil")]));
		CancelPlant()
	},
	AutoProduceSun = function(a) {
		AppearSun(GetX(Math.floor(1 + Math.random() * oS.C)), GetY(Math.floor(1 + Math.random() * oS.R)), a, 1);
		oSym.addTask(Math.floor(9 + Math.random() * 3) * 100, AutoProduceSun, [a])
	},
	AppearSun = function(h, f, e, a) {
		var b, d, g = "Sun" + Math.random(),
			c = "cursor:pointer;z-index:25;filter:alpha(opacity=80);opacity:0.8;left:" + h + "px;";
		switch (e) {
			case 25:
				c += "width:78px;height:78px";
				b = 39;
				break;
			case 15:
				c += "width:46px;height:46px";
				b = 23;
				break;
			default:
				c += "width:100px;height:100px";
				b = 55
		}
		a ? (d = 0, oSym.addTask(10, MoveDropSun, [g, f])) : (d = f - b - 20, c += ";top:" + d + "px", oSym.addTask(800, DisappearSun, [g]));
		ArSun[g] = {
			id: g,
			N: e,
			C: 1,
			left: h,
			top: d
		};
		NewImg(g, "images/Sun.gif", c, EDAll, {
			onclick: function() {
				ClickSun(this.id)
			}
		});
		oS.AutoSun && oSym.addTask(100, ClickSun, [g])
	},
	MoveDropSun = function(c, b) {
		var a = ArSun[c];
		a && a.C && (a.top < b - 53 ? ($(c)
			.style.top = (a.top += 3) + "px", oSym.addTask(5, MoveDropSun, [c, b])) : oSym.addTask(800, DisappearSun, [c]))
	},
	DisappearSun = function(b) {
		var a = ArSun[b];
		a && a.C && (delete ArSun[b], ClearChild($(b)))
	},
	ClickSun = function(c) {
		var a = ArSun[c],
			b = oS.SunNum;
		a && a.C && (a.C = 0, innerText(ESSunNum, oS.SunNum = Math.min(b + a.N, 9990)), oSym.addTask(0, MoveClickSun, [c])
			.addTask(0, MonitorCard, []))
	},
	MoveClickSun = function(b) {
		var a = 15,
			c = ArSun[b],
			e = 85,
			i = -20,
			d = c.left,
			h = c.top,
			g = Math.round((d - e) / a),
			f = Math.round((h - i) / a);
		(function(k, l, n, s, m, r, j, q, p) {
			(m -= q) > n ? (SetStyle($(k), {
				left: m + "px",
				top: (r -= p) + "px"
			}), oSym.addTask(j, arguments.callee, [k, l, n, s, m, r, j += 0.3, q, p])) : (SetStyle($(k), {
				left: n + "px",
				top: s + "px"
			}), delete ArSun[k], oSym.addTask(20, ClearChild, [$(k)]))
		})(b, c, e, i, d, h, 1, g, f)
	},
	AutoClickSun = function() {
		var a, b;
		for (b in ArSun) {
			ArSun[b].C && ClickSun(b)
		}
	},
	ShowLargeWave = function(a) {
		NewImg("LargeWave", "images/LargeWave.gif", "left:71px;top:249px;width:858px;height:102px;z-index:50", EDAll);
		oSym.addTask(4, function(b, c, d) {
			SetStyle($("LargeWave"), {
				width: (b -= 57.2) + "px",
				height: (c -= 6.8) + "px",
				left: 500 - b * 0.5 + "px",
				top: 300 - c * 0.5 + "px"
			});
			b > 286 ? oSym.addTask(4, arguments.callee, [b, c, d]) : d()
		}, [858, 102, a || function() {
			oSym.addTask(460, ClearChild, [$("LargeWave")])
		}])
	},
	ShowFinalWave = function() {
		var a = function(b) {
			NewImg("FinalWave", "images/FinalWave.gif", "left:122px;top:194px;width:756px;height:213px;z-index:50", EDAll);
			oSym.addTask(4, function(c, e, d) {
				SetStyle($("FinalWave"), {
					width: (c -= 50.4) + "px",
					height: (e -= 14.2) + "px",
					left: 500 - c * 0.5 + "px",
					top: 300 - e * 0.5 + "px"
				});
				c > 252 ? oSym.addTask(4, arguments.callee, [c, e, d]) : oSym.addTask(d, ClearChild, [$("FinalWave")])
			}, [756, 213, b])
		};
		(oP.FlagNum in oS.LargeWaveFlag) ? ShowLargeWave(function() {
			oSym.addTask(460, function() {
				ClearChild($("LargeWave"));
				oSym.addTask(100, a, [150])
			}, [])
		}): a(500)
	},
	LawnMowerKill = function(b) {
		var e = "LawnMower" + b,
			c = $(e),
			d = oS.LawnMowerX,
			a = oS.W;
		oGd.$LM[b] = 0;
		(function() {
			var g = oZ.getArZ(d, d + 50, b),
				f = g.length;
			while (f--) {
				g[f].Die(2)
			}(d += 10) > a ? ClearChild(c) : (c.style.left = d + "px", oSym.addTask(1, arguments.callee, []))
		})()
	},
	GameOver = function() {
		NewImg("iGameOver", "images/ZombiesWon.png", "width:900px;height:600px;z-index:255", EDAll, {
			onclick: function() {
				SelectModal(oS.Lvl)
			}
		})
	},
	PrepareGrowPlants = function(a) {
		NewImg("PrepareGrow", "images/PrepareGrowPlants.gif" + $Random + Math.random(), "z-index:50;left:" + (oS.W * 0.5 - 77) + "px;top:" + (oS.H * 0.5 - 54) + "px", EDAll);
		oSym.addTask(250, function(b) {
			ClearChild($("PrepareGrow"));
			b()
		}, [a])
	},
	CustomPlants = function(b, a, c) {
		(new ArCard[b].PName)
		.Birth(GetX(c), GetY(a), a, c, [])
	};
CheckAutoSun = function(a) {
	var b = a.checked ? 1 : 0;
	b != oS.AutoSun && (addCookie("JSPVZAutoSun", oS.AutoSun = b), b && AutoClickSun())
}, GetNewCard = function(a, b, c) {
	oSym.Clear();
	(SetStyle(a, {
		left: "350px",
		top: "131px",
		width: "200px",
		height: "120px",
		cursor: "default"
	}))
	.onclick = null;
	NewEle("DivA", "div", "width:900px;height:600px;background:#FFF;z-index:255", 0, EDAll);
	oSym.Init(function(d, e) {
		++d < 100 ? (SetAlpha(e, d, d * 0.01), oSym.addTask(1, arguments.callee, [d, e])) : function() {
			SetHidden(EDAll, $("dTop"));
			var f = b.prototype;
			$("iNewPlantCard")
				.src = f.PicArr[f.NormalGif];
			$("iNewPlantCard")
				.style.marginTop = 180 - f.height + "px";
			innerText($("dNewPlantName"), f.CName);
			$("dNewPlantTooltip")
				.innerHTML = f.Tooltip;
			$("btnNextLevel")
				.onclick = function() {
					c == 10 && (c = 0, alert("还没做好,敬请期待!"));
					SelectModal(c)
				};
			SetStyle($("dNewPlant"), {
				display: "block",
				zIndex: 255
			});
			oSym.Stop()
		}()
	}, [0, $("DivA")])
}, getCookie = function(b) {
	var d = document.cookie,
		e = d.split(";"),
		c = e.length,
		a;
	while (c--) {
		if ((a = e[c].split("="))[0].replace(" ", "") == b) {
			return a[1]
		}
	}
	return 0
}, addCookie = function(a, c, d) {
	var b = a + "=" + escape(c);
	document.cookie = b
}, deleteCookie = function(a) {
	document.cookie = a + "=0;"
}, WordUTF8 = '<div id="dLogo" style="position:absolute;width:900px;height:600px;background:#000 url(images/Logo.jpg) no-repeat;z-index:1"><span style="position:absolute;line-height:1.5;left:349px;top:10px;width:524px;text-align:right;font-size:15pt; font-family:&#x9ED1;&#x4F53;;color:#F60; top:32px">&#x6B22;&#x8FCE;&#x6765;&#x5230;<span style="font-family:Verdana">LonelyStar</span>&#x7684;<span style="font-family:Verdana">JavaScript</span>&#x7248;&#x690D;&#x7269;&#x5927;&#x6218;&#x50F5;&#x5C38;<br>&#x5728;&#x7EBF;&#x7F51;&#x5740; <span style="font-family:Verdana">http://pvz.lonelystar.org/</span><br><b>&#x7A0B;&#x5E8F;&#x7684;&#x5F00;&#x53D1;&#x76EE;&#x7684;&#x662F;&#x4E3A;&#x4E86;&#x5B66;&#x4E60;&#xFF0C;&#x6240;&#x6709;&#x7248;&#x6743;&#x5F52;PopCap&#x6240;&#x6709;</b></span><div id="LogoWord" style="position:absolute;color:#FF0;top:510px;width:100%;height:90px"><span style="position:absolute;font-size:15pt;width:321px;height:69px; font-family:&#x9ED1;&#x4F53;;line-height:69px; left:60px; top:10px;cursor:pointer;background:url(images/interface/LogoLine.png) no-repeat center -5px;text-align:center" οnclick="SetBlock($(\'dSurface\'),$(\'iSurfaceBackground\'))">&#x70B9;&#x51FB;&#x5F00;&#x59CB;<span style="font-size:15pt; font-family:Verdana;color:#FF0;cursor:pointer;">JavaScript</span>&#x7248;&#x3002;&#x3002;&#x3002;</span><span style="position:absolute;font-size:11pt;left:407px;top:29px;line-height:1.5;font-weight:bold"><span style="cursor:pointer;" οnclick="SetBlock($(\'dProcess\'))">&#x70B9;&#x51FB;&#x67E5;&#x770B;&#x66F4;&#x65B0;&#x8FDB;&#x5EA6;&#x5217;&#x8868;!<span id="sTime"></span></span><br><a target="_blank" style="cursor:pointer;color:#FF0;" href="http://www.mycodes.net">&#x70B9;&#x51FB;&#x8FD9;&#x91CC;&#x5230;&#x7F51;&#x7AD9;&#x7559;&#x8A00;&#x677F;&#x7559;&#x8A00;&#xFF0C;&#x8C22;&#x8C22;&#x3002;(&#x65E0;&#x9700;&#x6CE8;&#x518C;&#x767B;&#x9646;)</a></span></div></div>', SelectModal = function(g) {
	var b = oS.GlobalVariables,
		c = oS.LvlVariables,
		e = oS.SelfVariables,
		a = window,
		d;
	for (d in b) {
		a[d] = b[d]
	}
	for (d in c) {
		a[d] = null
	}
	for (d = e.length; d--; delete oS[e[d]]) {}
	oS.LvlClearFunc && oS.LvlClearFunc();
	oS.GlobalVariables = {};
	oS.LvlVariables = {};
	oS.SelfVariables.length = 0;
	HiddenLevel();
	HiddenMiniGame();
	SetHidden($("dCardList"));
	SetNone($("dSurface"), $("iSurfaceBackground"), $("tGround"), $("dSelectCard"), $("dTop"), $("dMenu"), $("dHandBook"), $("dNewPlant"), $("dProcess"));
	ClearChild($("dFlagMeterTitleB")
		.firstChild);
	EDAll = $("dBody")
		.replaceChild(EDNewAll, EDAll);
	$("dBody")
		.replaceChild(EDNewFlagMeter, $("dFlagMeter"));
	LoadLvl(g)
}, LoadLvl = function(b, a) {
	(b = b || 0) && oSym.Now == a && (b = 0);
	oSym.Timer && oSym.Stop();
	oSym.Init(function(d) {
		var c = $("JSPVZ");
		c && ClearChild(c);
		NewEle("JSPVZ", "script", "", {
				src: "level/" + (oS.Lvl = d) + ".js",
				type: "text/javascript"
			}, document.getElementsByTagName("head")
			.item(0))
	}, [b])
}, AppearTombstones = function(j, d, h) {
	var l = oGd.$Tombstones,
		g = [],
		f = oS.R + 1,
		b, c = 0,
		k, a, e;
	while (--f) {
		e = d;
		while (e >= j) {
			!l[f + "_" + e] && (g[c++] = [f, e--])
		}
	}
	while (h--) {
		k = g[e = Math.floor(Math.random() * g.length)];
		l[(f = k[0]) + "_" + (b = k[1])] = 1;
		g.splice(e, 1);
		a = NewEle("Tombstones_" + Math.random(), "div", "position:absolute;width:86px;height:91px;left:" + (GetX(b) - 43) + "px;top:" + (GetY(f) - 91) + "px", 0, EDAll);
		f = Math.floor(Math.random() * 4);
		b = Math.floor(Math.random() * 3);
		NewEle("", "div", "background-position:-" + 86 * b + "px -" + 91 * f + "px", {
			className: "Tom1"
		}, a);
		NewEle("", "div", "background-position:-" + 86 * b + "px -" + 91 * f + "px", {
			className: "Tom2"
		}, a)
	}
}, PauseGame = function(b) {
	var a = oSym;
	a.Timer ? (a.Stop(), innerText(b, "回到游戏"), $("dMenu1")
		.onclick = null) : (a.Start(), innerText(b, "暂停游戏"), $("dMenu1")
		.onclick = ClickMenu)
}, ClickMenu = function() {
	oSym.Timer && (oSym.Stop(), SetBlock($("dSurface")), ShowOptions())
}, OptionsMenuDown = function(b, a) {
	b.className = "OptionsMenuButtonDown";
	a.style.lineHeight = "102px"
}, OptionsMenuUP = function(b, a) {
	b.className = "OptionsMenuButton";
	a.style.lineHeight = "100px"
}, ShowLevel = function() {
	SetBlock($("dSurfaceBack"), $("dOptionsMenuback"), $("dSelectLevel"), $("dTitleSmallContainer"))
}, HiddenLevel = function() {
	SetNone($("dSurfaceBack"), $("dOptionsMenuback"), $("dSelectLevel"), $("dTitleSmallContainer"))
}, ShowMiniGame = function() {
	SetBlock($("dSurfaceBack"), $("dOptionsMenuback"), $("dSelectLevel"), $("dMiniSmallContainer"))
}, HiddenMiniGame = function() {
	SetNone($("dSurfaceBack"), $("dOptionsMenuback"), $("dSelectLevel"), $("dMiniSmallContainer"))
}, ShowOptions = function() {
	SetBlock($("dSurfaceBack"), $("dOptionsMenuback"), $("dOptionsMenu"))
}, HiddenOptions = function() {
	SetNone($("dSurfaceBack"), $("dOptionsMenuback"), $("dOptionsMenu"));
	oS.Lvl && (SetNone($("dSurface")), PauseGame($("dMenu0")))
}, ShowHelp = function() {
	SetBlock($("dSurfaceBack"), $("dHelp"))
}, HiddenHelp = function() {
	SetNone($("dSurfaceBack"), $("dHelp"))
}, LoadProProcess = function() {
	var a = $("JSProcess");
	$User.Browser.IE ? a.onreadystatechange = function() {
		a.readyState == "loaded" && ClearChild(a)
	} : a.onload = function() {
		ClearChild(a)
	};
	a.onerror = function() {
		ClearChild(this)
	};
	a.src = "http://demo.mycodes.net/youxi/jspvz/Process.js"
}, $ = function(a) {
	return document.getElementById(a)
}, $n = function(a) {
	return document.createElement(a)
}, ClearChild = function() {
	var a = arguments.length,
		c;
	while (a--) {
		try {
			c = arguments[a];
			c.parentNode.removeChild(c);
			c = null
		} catch (b) {}
	}
}, SetBlock = function() {
	var a = arguments.length;
	while (a--) {
		arguments[a].style.display = "block"
	}
}, SetNone = function() {
	var a = arguments.length;
	while (a--) {
		arguments[a].style.display = "none"
	}
}, SetHidden = function() {
	var a = arguments.length;
	while (a--) {
		arguments[a].style.visibility = "hidden"
	}
}, SetVisible = function() {
	var a = arguments.length;
	while (a--) {
		arguments[a].style.visibility = "visible"
	}
}, SetAlpha = function(c, b, a) {
	c.style.filter = "alpha(opacity=" + b + ")";
	c.style.opacity = a
}, SetStyle = function(d, b) {
	var c = d.style,
		a;
	for (a in b) {
		c[a] = b[a]
	}
	return d
}, NewImg = function(f, e, b, c, d) {
	var a = $n("img");
	a.src = e;
	b && (a.style.cssText = b);
	if (d) {
		for (v in d) {
			a[v] = d[v]
		}
	}
	f && (a.id = f);
	c && c.appendChild(a);
	return a
}, EditImg = function(e, f, c, b, a) {
	f && (e.id = f);
	c && (e.src = c);
	b && SetStyle(e, b);
	a && a.appendChild(e);
	return e
}, NewEle = function(h, b, d, a, e, f, g, c) {
	g = $n(b);
	h && (g.id = h);
	d && (g.style.cssText = d);
	if (a) {
		for (c in a) {
			g[c] = a[c]
		}
	}
	if (f) {
		for (c in f) {
			g.setAttribute(c, f[c])
		}
	}
	e && e.appendChild(g);
	return g
}, EditEle = function(g, f, a, e, b, c) {
	if (f) {
		for (c in f) {
			g.setAttribute(c, f[c])
		}
	}
	a && SetStyle(g, a);
	if (b) {
		for (c in b) {
			g[c] = b[c]
		}
	}
	e && e.appendChild(g);
	return g
}, NewO = function(b, a) {
	return (a = function() {})
		.prototype = b, a
}, SetPrototype = function(d, c, a) {
	a = d.prototype;
	for (var b in c) {
		a[b] = c[b]
	}
}, InheritO = function(d, i, c, g, b, h, f, e, a) {
	var g = function() {};
	g.prototype = new d;
	i && SetPrototype(g, i);
	if (c) {
		a = g.prototype;
		for (f in c) {
			b = a[f].slice(0);
			h = c[f];
			for (e in h) {
				b[e] = h[e]
			}
			g.prototype[f] = b
		}
	}
	return g
}, Compare = function(e, b, a, c, d) {
	return d = e < b ? b : e > a ? a : e, c ? [c(d), d] : [d]
}, $Switch = function(h, d, c, a, g, b, e) {
	b = 0;
	g = d.length;
	e = c;
	while (b < g) {
		if (e(h, d[b])) {
			break
		}++b
	}
	return a[b]
}, $SEql = function(d, c, a, b) {
	return (a = c[d]) != b ? a : c["default"]
};
$SSml = function(d, c, a) {
	var b = 0;
	LX = c.length;
	while (b < LX) {
		if (d < c[b]) {
			break
		}++b
	}
	return a[b]
}, $SGrt = function(d, c, a) {
	var b = 0;
	LX = c.length;
	while (b < LX) {
		if (d > c[b]) {
			break
		}++b
	}
	return a[b]
}, ImgSpriter = function(h, c, e, f, g) {
	var b = e[f],
		d = b[2],
		a = $(h);
	a && (a.style.backgroundPosition = b[0], oSym.addTask(b[1] * 0.1, function(j) {
		j > -1 ? ImgSpriter(h, c, e, j, g) : g(h, c)
	}, [d]))
};
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • 290
  • 291
  • 292
  • 293
  • 294
  • 295
  • 296
  • 297
  • 298
  • 299
  • 300
  • 301
  • 302
  • 303
  • 304
  • 305
  • 306
  • 307
  • 308
  • 309
  • 310
  • 311
  • 312
  • 313
  • 314
  • 315
  • 316
  • 317
  • 318
  • 319
  • 320
  • 321
  • 322
  • 323
  • 324
  • 325
  • 326
  • 327
  • 328
  • 329
  • 330
  • 331
  • 332
  • 333
  • 334
  • 335
  • 336
  • 337
  • 338
  • 339
  • 340
  • 341
  • 342
  • 343
  • 344
  • 345
  • 346
  • 347
  • 348
  • 349
  • 350
  • 351
  • 352
  • 353
  • 354
  • 355
  • 356
  • 357
  • 358
  • 359
  • 360
  • 361
  • 362
  • 363
  • 364
  • 365
  • 366
  • 367
  • 368
  • 369
  • 370
  • 371
  • 372
  • 373
  • 374
  • 375
  • 376
  • 377
  • 378
  • 379
  • 380
  • 381
  • 382
  • 383
  • 384
  • 385
  • 386
  • 387
  • 388
  • 389
  • 390
  • 391
  • 392
  • 393
  • 394
  • 395
  • 396
  • 397
  • 398
  • 399
  • 400
  • 401
  • 402
  • 403
  • 404
  • 405
  • 406
  • 407
  • 408
  • 409
  • 410
  • 411
  • 412
  • 413
  • 414
  • 415
  • 416
  • 417
  • 418
  • 419
  • 420
  • 421
  • 422
  • 423
  • 424
  • 425
  • 426
  • 427
  • 428
  • 429
  • 430
  • 431
  • 432
  • 433
  • 434
  • 435
  • 436
  • 437
  • 438
  • 439
  • 440
  • 441
  • 442
  • 443
  • 444
  • 445
  • 446
  • 447
  • 448
  • 449
  • 450
  • 451
  • 452
  • 453
  • 454
  • 455
  • 456
  • 457
  • 458
  • 459
  • 460
  • 461
  • 462
  • 463
  • 464
  • 465
  • 466
  • 467
  • 468
  • 469
  • 470
  • 471
  • 472
  • 473
  • 474
  • 475
  • 476
  • 477
  • 478
  • 479
  • 480
  • 481
  • 482
  • 483
  • 484
  • 485
  • 486
  • 487
  • 488
  • 489
  • 490
  • 491
  • 492
  • 493
  • 494
  • 495
  • 496
  • 497
  • 498
  • 499
  • 500
  • 501
  • 502
  • 503
  • 504
  • 505
  • 506
  • 507
  • 508
  • 509
  • 510
  • 511
  • 512
  • 513
  • 514
  • 515
  • 516
  • 517
  • 518
  • 519
  • 520
  • 521
  • 522
  • 523
  • 524
  • 525
  • 526
  • 527
  • 528
  • 529
  • 530
  • 531
  • 532
  • 533
  • 534
  • 535
  • 536
  • 537
  • 538
  • 539
  • 540
  • 541
  • 542
  • 543
  • 544
  • 545
  • 546
  • 547
  • 548
  • 549
  • 550
  • 551
  • 552
  • 553
  • 554
  • 555
  • 556
  • 557
  • 558
  • 559
  • 560
  • 561
  • 562
  • 563
  • 564
  • 565
  • 566
  • 567
  • 568
  • 569
  • 570
  • 571
  • 572
  • 573
  • 574
  • 575
  • 576
  • 577
  • 578
  • 579
  • 580
  • 581
  • 582
  • 583
  • 584
  • 585
  • 586
  • 587
  • 588
  • 589
  • 590
  • 591
  • 592
  • 593
  • 594
  • 595
  • 596
  • 597
  • 598
  • 599
  • 600
  • 601
  • 602
  • 603
  • 604
  • 605
  • 606
  • 607
  • 608
  • 609
  • 610
  • 611
  • 612
  • 613
  • 614
  • 615
  • 616
  • 617
  • 618
  • 619
  • 620
  • 621
  • 622
  • 623
  • 624
  • 625
  • 626
  • 627
  • 628
  • 629
  • 630
  • 631
  • 632
  • 633
  • 634
  • 635
  • 636
  • 637
  • 638
  • 639
  • 640
  • 641
  • 642
  • 643
  • 644
  • 645
  • 646
  • 647
  • 648
  • 649
  • 650
  • 651
  • 652
  • 653
  • 654
  • 655
  • 656
  • 657
  • 658
  • 659
  • 660
  • 661
  • 662
  • 663
  • 664
  • 665
  • 666
  • 667
  • 668
  • 669
  • 670
  • 671
  • 672
  • 673
  • 674
  • 675
  • 676
  • 677
  • 678
  • 679
  • 680
  • 681
  • 682
  • 683
  • 684
  • 685
  • 686
  • 687
  • 688
  • 689
  • 690
  • 691
  • 692
  • 693
  • 694
  • 695
  • 696
  • 697
  • 698
  • 699
  • 700
  • 701
  • 702
  • 703
  • 704
  • 705
  • 706
  • 707
  • 708
  • 709
  • 710
  • 711
  • 712
  • 713
  • 714
  • 715
  • 716
  • 717
  • 718
  • 719
  • 720
  • 721
  • 722
  • 723
  • 724
  • 725
  • 726
  • 727
  • 728
  • 729
  • 730
  • 731
  • 732
  • 733
  • 734
  • 735
  • 736
  • 737
  • 738
  • 739
  • 740
  • 741
  • 742
  • 743
  • 744
  • 745
  • 746
  • 747
  • 748
  • 749
  • 750
  • 751
  • 752
  • 753
  • 754
  • 755
  • 756
  • 757
  • 758
  • 759
  • 760
  • 761
  • 762
  • 763
  • 764
  • 765
  • 766
  • 767
  • 768
  • 769
  • 770
  • 771
  • 772
  • 773
  • 774
  • 775
  • 776
  • 777
  • 778
  • 779
  • 780
  • 781
  • 782
  • 783
  • 784
  • 785
  • 786
  • 787
  • 788
  • 789
  • 790
  • 791
  • 792
  • 793
  • 794
  • 795
  • 796
  • 797
  • 798
  • 799
  • 800
  • 801
  • 802
  • 803
  • 804
  • 805
  • 806
  • 807
  • 808
  • 809
  • 810
  • 811
  • 812
  • 813
  • 814
  • 815
  • 816
  • 817
  • 818
  • 819
  • 820
  • 821
  • 822
  • 823
  • 824
  • 825
  • 826
  • 827
  • 828
  • 829
  • 830
  • 831
  • 832
  • 833
  • 834
  • 835
  • 836
  • 837
  • 838
  • 839
  • 840
  • 841
  • 842
  • 843
  • 844
  • 845
  • 846
  • 847
  • 848
  • 849
  • 850
  • 851
  • 852
  • 853
  • 854
  • 855
  • 856
  • 857
  • 858
  • 859
  • 860
  • 861
  • 862
  • 863
  • 864
  • 865
  • 866
  • 867
  • 868
  • 869
  • 870
  • 871
  • 872
  • 873
  • 874
  • 875
  • 876
  • 877
  • 878
  • 879
  • 880
  • 881
  • 882
  • 883
  • 884
  • 885
  • 886
  • 887
  • 888
  • 889
  • 890
  • 891
  • 892
  • 893
  • 894
  • 895
  • 896
  • 897
  • 898
  • 899
  • 900
  • 901
  • 902
  • 903
  • 904
  • 905
  • 906
  • 907
  • 908
  • 909
  • 910
  • 911
  • 912
  • 913
  • 914
  • 915
  • 916
  • 917
  • 918
  • 919
  • 920
  • 921
  • 922
  • 923
  • 924
  • 925
  • 926
  • 927
  • 928
  • 929
  • 930
  • 931
  • 932
  • 933
  • 934
  • 935
  • 936
  • 937
  • 938
  • 939
  • 940
  • 941
  • 942
  • 943
  • 944
  • 945
  • 946
  • 947
  • 948
  • 949
  • 950
  • 951
  • 952
  • 953
  • 954
  • 955
  • 956
  • 957
  • 958
  • 959
  • 960
  • 961
  • 962
  • 963
  • 964
  • 965
  • 966
  • 967
  • 968
  • 969
  • 970
  • 971
  • 972
  • 973
  • 974
  • 975
  • 976
  • 977
  • 978
  • 979
  • 980
  • 981
  • 982
  • 983
  • 984
  • 985
  • 986
  • 987
  • 988
  • 989
  • 990
  • 991
  • 992
  • 993
  • 994
  • 995
  • 996
  • 997
  • 998
  • 999
  • 1000
  • 1001
  • 1002
  • 1003
  • 1004
  • 1005
  • 1006
  • 1007
  • 1008
  • 1009
  • 1010
  • 1011
  • 1012
  • 1013
  • 1014
  • 1015
  • 1016
  • 1017
  • 1018
  • 1019
  • 1020
  • 1021
  • 1022
  • 1023
  • 1024
  • 1025
  • 1026
  • 1027
  • 1028
  • 1029
  • 1030
  • 1031
  • 1032
  • 1033
  • 1034
  • 1035
  • 1036
  • 1037
  • 1038
  • 1039
  • 1040
  • 1041
  • 1042
  • 1043
  • 1044
  • 1045
  • 1046
  • 1047
  • 1048
  • 1049
  • 1050
  • 1051
  • 1052
  • 1053
  • 1054
  • 1055
  • 1056
  • 1057
  • 1058
  • 1059
  • 1060
  • 1061
  • 1062
  • 1063
  • 1064
  • 1065
  • 1066
  • 1067
  • 1068
  • 1069
  • 1070
  • 1071
  • 1072
  • 1073
  • 1074
  • 1075
  • 1076
  • 1077
  • 1078
  • 1079
  • 1080
  • 1081
  • 1082
  • 1083
  • 1084
  • 1085
  • 1086
  • 1087
  • 1088
  • 1089
  • 1090
  • 1091
  • 1092
  • 1093
  • 1094
  • 1095
  • 1096
  • 1097
  • 1098
  • 1099
  • 1100
  • 1101
  • 1102
  • 1103
  • 1104
  • 1105
  • 1106
  • 1107
  • 1108
  • 1109
  • 1110
  • 1111
  • 1112
  • 1113
  • 1114
  • 1115
  • 1116
  • 1117
  • 1118
  • 1119
  • 1120
  • 1121
  • 1122
  • 1123
  • 1124
  • 1125
  • 1126
  • 1127
  • 1128
  • 1129
  • 1130
  • 1131
  • 1132
  • 1133
  • 1134
  • 1135
  • 1136
  • 1137
  • 1138
  • 1139
  • 1140
  • 1141
  • 1142
  • 1143
  • 1144
  • 1145
  • 1146
  • 1147
  • 1148
  • 1149
  • 1150
  • 1151
  • 1152
  • 1153
  • 1154
  • 1155
  • 1156
  • 1157
  • 1158
  • 1159
  • 1160
  • 1161
  • 1162
  • 1163
  • 1164
  • 1165
  • 1166
  • 1167
  • 1168
  • 1169
  • 1170
  • 1171
  • 1172
  • 1173
  • 1174
  • 1175
  • 1176
  • 1177
  • 1178
  • 1179
  • 1180
  • 1181
  • 1182
  • 1183
  • 1184
  • 1185
  • 1186
  • 1187
  • 1188
  • 1189
  • 1190
  • 1191
  • 1192
  • 1193
  • 1194
  • 1195
  • 1196
  • 1197
  • 1198
  • 1199
  • 1200
  • 1201
  • 1202
  • 1203
  • 1204
  • 1205
  • 1206
  • 1207
  • 1208
  • 1209
  • 1210
  • 1211
  • 1212
  • 1213
  • 1214
  • 1215
  • 1216
  • 1217
  • 1218
  • 1219
  • 1220
  • 1221
  • 1222
  • 1223
  • 1224
  • 1225
  • 1226
  • 1227
  • 1228
  • 1229
  • 1230
  • 1231
  • 1232
  • 1233
  • 1234
  • 1235
  • 1236
  • 1237
  • 1238
  • 1239
  • 1240
  • 1241
  • 1242
  • 1243
  • 1244
  • 1245
  • 1246
  • 1247
  • 1248
  • 1249
  • 1250
  • 1251
  • 1252
  • 1253
  • 1254
  • 1255
  • 1256
  • 1257
  • 1258
  • 1259
  • 1260
  • 1261
  • 1262
  • 1263
  • 1264
  • 1265
  • 1266
  • 1267
  • 1268
  • 1269
  • 1270
  • 1271
  • 1272
  • 1273
  • 1274
  • 1275
  • 1276
  • 1277
  • 1278
  • 1279
  • 1280
  • 1281
  • 1282
  • 1283
  • 1284
  • 1285
  • 1286
  • 1287
  • 1288
  • 1289
  • 1290
  • 1291
  • 1292
  • 1293
  • 1294
  • 1295
  • 1296
  • 1297
  • 1298
  • 1299
  • 1300
  • 1301
  • 1302
  • 1303
  • 1304
  • 1305
  • 1306
  • 1307
  • 1308
  • 1309
  • 1310
  • 1311
  • 1312
  • 1313
  • 1314
  • 1315
  • 1316
  • 1317
  • 1318
  • 1319
  • 1320
  • 1321
  • 1322
  • 1323
  • 1324
  • 1325
  • 1326
  • 1327
  • 1328
  • 1329
  • 1330
  • 1331
  • 1332
  • 1333
  • 1334
  • 1335
  • 1336
  • 1337
  • 1338
  • 1339
  • 1340
  • 1341
  • 1342
  • 1343
  • 1344
  • 1345
  • 1346
  • 1347
  • 1348
  • 1349
  • 1350
  • 1351
  • 1352
  • 1353
  • 1354
  • 1355
  • 1356
  • 1357
  • 1358
  • 1359
  • 1360
  • 1361
  • 1362
  • 1363
  • 1364
  • 1365
  • 1366
  • 1367
  • 1368
  • 1369
  • 1370
  • 1371
  • 1372
  • 1373
  • 1374
  • 1375
  • 1376
  • 1377
  • 1378
  • 1379
  • 1380
  • 1381
  • 1382
  • 1383
  • 1384
  • 1385
  • 1386
  • 1387
  • 1388
  • 1389
  • 1390
  • 1391
  • 1392
  • 1393
  • 1394
  • 1395
  • 1396
  • 1397
  • 1398
  • 1399
  • 1400
  • 1401
  • 1402
  • 1403
  • 1404
  • 1405
  • 1406
  • 1407
  • 1408
  • 1409
  • 1410
  • 1411
  • 1412
  • 1413
  • 1414
  • 1415
  • 1416
  • 1417
  • 1418
  • 1419
  • 1420
  • 1421
  • 1422
  • 1423
  • 1424
  • 1425
  • 1426
  • 1427
  • 1428
  • 1429
  • 1430
  • 1431
  • 1432
  • 1433
  • 1434
  • 1435
  • 1436
  • 1437
  • 1438
  • 1439
  • 1440
  • 1441
  • 1442
  • 1443
  • 1444
  • 1445
  • 1446
  • 1447
  • 1448
  • 1449
  • 1450
  • 1451
  • 1452
  • 1453
  • 1454
  • 1455
  • 1456
  • 1457
  • 1458
  • 1459
  • 1460
  • 1461
  • 1462
  • 1463
  • 1464
  • 1465
  • 1466
  • 1467
  • 1468
  • 1469
  • 1470
  • 1471
  • 1472
  • 1473
  • 1474
  • 1475
  • 1476
  • 1477
  • 1478
  • 1479
  • 1480
  • 1481
  • 1482
  • 1483
  • 1484
  • 1485
  • 1486
  • 1487
  • 1488
  • 1489
  • 1490
  • 1491
  • 1492
  • 1493
  • 1494
  • 1495
  • 1496
  • 1497
  • 1498
  • 1499
  • 1500
  • 1501
  • 1502
  • 1503
  • 1504
  • 1505
  • 1506
  • 1507
  • 1508
  • 1509
  • 1510
  • 1511
  • 1512
  • 1513
  • 1514
  • 1515
  • 1516
  • 1517
  • 1518
  • 1519
  • 1520
  • 1521
  • 1522
  • 1523
  • 1524
  • 1525
  • 1526
  • 1527
  • 1528
  • 1529
  • 1530
  • 1531
  • 1532
  • 1533
  • 1534
  • 1535
  • 1536
  • 1537
  • 1538
  • 1539
  • 1540
  • 1541
  • 1542
  • 1543
  • 1544
  • 1545
  • 1546
  • 1547
  • 1548
  • 1549
  • 1550
  • 1551
  • 1552
  • 1553
  • 1554
  • 1555
  • 1556
  • 1557
  • 1558
  • 1559
  • 1560
  • 1561
  • 1562
  • 1563
  • 1564
  • 1565
  • 1566
  • 1567
  • 1568
  • 1569
  • 1570
  • 1571
  • 1572
  • 1573
  • 1574
  • 1575
  • 1576
  • 1577
  • 1578
  • 1579
  • 1580
  • 1581
  • 1582
  • 1583
  • 1584
  • 1585
  • 1586
  • 1587
  • 1588
  • 1589
  • 1590
  • 1591
  • 1592
  • 1593
  • 1594
  • 1595
  • 1596
  • 1597
  • 1598
  • 1599
  • 1600
  • 1601
  • 1602
  • 1603
  • 1604
  • 1605
  • 1606
  • 1607
  • 1608
  • 1609
  • 1610
  • 1611
  • 1612
  • 1613
  • 1614
  • 1615
  • 1616
  • 1617
  • 1618
  • 1619
  • 1620
  • 1621
  • 1622
  • 1623
  • 1624
  • 1625
  • 1626
  • 1627
  • 1628
  • 1629
  • 1630
  • 1631
  • 1632
  • 1633
  • 1634
  • 1635
  • 1636
  • 1637
  • 1638
  • 1639
  • 1640
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • 290
  • 291
  • 292
  • 293
  • 294
  • 295
  • 296
  • 297
  • 298
  • 299
  • 300
  • 301
  • 302
  • 303
  • 304
  • 305
  • 306
  • 307
  • 308
  • 309
  • 310
  • 311
  • 312
  • 313
  • 314
  • 315
  • 316
  • 317
  • 318
  • 319
  • 320
  • 321
  • 322
  • 323
  • 324
  • 325
  • 326
  • 327
  • 328
  • 329
  • 330
  • 331
  • 332
  • 333
  • 334
  • 335
  • 336
  • 337
  • 338
  • 339
  • 340
  • 341
  • 342
  • 343
  • 344
  • 345
  • 346
  • 347
  • 348
  • 349
  • 350
  • 351
  • 352
  • 353
  • 354
  • 355
  • 356
  • 357
  • 358
  • 359
  • 360
  • 361
  • 362
  • 363
  • 364
  • 365
  • 366
  • 367
  • 368
  • 369
  • 370
  • 371
  • 372
  • 373
  • 374
  • 375
  • 376
  • 377
  • 378
  • 379
  • 380
  • 381
  • 382
  • 383
  • 384
  • 385
  • 386
  • 387
  • 388
  • 389
  • 390
  • 391
  • 392
  • 393
  • 394
  • 395
  • 396
  • 397
  • 398
  • 399
  • 400
  • 401
  • 402
  • 403
  • 404
  • 405
  • 406
  • 407
  • 408
  • 409
  • 410
  • 411
  • 412
  • 413
  • 414
  • 415
  • 416
  • 417
  • 418
  • 419
  • 420
  • 421
  • 422
  • 423
  • 424
  • 425
  • 426
  • 427
  • 428
  • 429
  • 430
  • 431
  • 432
  • 433
  • 434
  • 435
  • 436
  • 437
  • 438
  • 439
  • 440
  • 441
  • 442
  • 443
  • 444
  • 445
  • 446
  • 447
  • 448
  • 449
  • 450
  • 451
  • 452
  • 453
  • 454
  • 455
  • 456
  • 457
  • 458
  • 459
  • 460
  • 461
  • 462
  • 463
  • 464
  • 465
  • 466
  • 467
  • 468
  • 469
  • 470
  • 471
  • 472
  • 473
  • 474
  • 475
  • 476
  • 477
  • 478
  • 479
  • 480
  • 481
  • 482
  • 483
  • 484
  • 485
  • 486
  • 487
  • 488
  • 489
  • 490
  • 491
  • 492
  • 493
  • 494
  • 495
  • 496
  • 497
  • 498
  • 499
  • 500
  • 501
  • 502
  • 503
  • 504
  • 505
  • 506
  • 507
  • 508
  • 509
  • 510
  • 511
  • 512
  • 513
  • 514
  • 515
  • 516
  • 517
  • 518
  • 519
  • 520
  • 521
  • 522
  • 523
  • 524
  • 525
  • 526
  • 527
  • 528
  • 529
  • 530
  • 531
  • 532
  • 533
  • 534
  • 535
  • 536
  • 537
  • 538
  • 539
  • 540
  • 541
  • 542
  • 543
  • 544
  • 545
  • 546
  • 547
  • 548
  • 549
  • 550
  • 551
  • 552
  • 553
  • 554
  • 555
  • 556
  • 557
  • 558
  • 559
  • 560
  • 561
  • 562
  • 563
  • 564
  • 565
  • 566
  • 567
  • 568
  • 569
  • 570
  • 571
  • 572
  • 573
  • 574
  • 575
  • 576
  • 577
  • 578
  • 579
  • 580
  • 581
  • 582
  • 583
  • 584
  • 585
  • 586
  • 587
  • 588
  • 589
  • 590
  • 591
  • 592
  • 593
  • 594
  • 595
  • 596
  • 597
  • 598
  • 599
  • 600
  • 601
  • 602
  • 603
  • 604
  • 605
  • 606
  • 607
  • 608
  • 609
  • 610
  • 611
  • 612
  • 613
  • 614
  • 615
  • 616
  • 617
  • 618
  • 619
  • 620
  • 621
  • 622
  • 623
  • 624
  • 625
  • 626
  • 627
  • 628
  • 629
  • 630
  • 631
  • 632
  • 633
  • 634
  • 635
  • 636
  • 637
  • 638
  • 639
  • 640
  • 641
  • 642
  • 643
  • 644
  • 645
  • 646
  • 647
  • 648
  • 649
  • 650
  • 651
  • 652
  • 653
  • 654
  • 655
  • 656
  • 657
  • 658
  • 659
  • 660
  • 661
  • 662
  • 663
  • 664
  • 665
  • 666
  • 667
  • 668
  • 669
  • 670
  • 671
  • 672
  • 673
  • 674
  • 675
  • 676
  • 677
  • 678
  • 679
  • 680
  • 681
  • 682
  • 683
  • 684
  • 685
  • 686
  • 687
  • 688
  • 689
  • 690
  • 691
  • 692
  • 693
  • 694
  • 695
  • 696
  • 697
  • 698
  • 699
  • 700
  • 701
  • 702
  • 703
  • 704
  • 705
  • 706
  • 707
  • 708
  • 709
  • 710
  • 711
  • 712
  • 713
  • 714
  • 715
  • 716
  • 717
  • 718
  • 719
  • 720
  • 721
  • 722
  • 723
  • 724
  • 725
  • 726
  • 727
  • 728
  • 729
  • 730
  • 731
  • 732
  • 733
  • 734
  • 735
  • 736
  • 737
  • 738
  • 739
  • 740
  • 741
  • 742
  • 743
  • 744
  • 745
  • 746
  • 747
  • 748
  • 749
  • 750
  • 751
  • 752
  • 753
  • 754
  • 755
  • 756
  • 757
  • 758
  • 759
  • 760
  • 761
  • 762
  • 763
  • 764
  • 765
  • 766
  • 767
  • 768
  • 769
  • 770
  • 771
  • 772
  • 773
  • 774
  • 775
  • 776
  • 777
  • 778
  • 779
  • 780
  • 781
  • 782
  • 783
  • 784
  • 785
  • 786
  • 787
  • 788
  • 789
  • 790
  • 791
  • 792
  • 793
  • 794
  • 795
  • 796
  • 797
  • 798
  • 799
  • 800
  • 801
  • 802
  • 803
  • 804
  • 805
  • 806
  • 807
  • 808
  • 809
  • 810
  • 811
  • 812
  • 813
  • 814
  • 815
  • 816
  • 817
  • 818
  • 819
  • 820
  • 821
  • 822
  • 823
  • 824
  • 825
  • 826
  • 827
  • 828
  • 829
  • 830
  • 831
  • 832
  • 833
  • 834
  • 835
  • 836
  • 837
  • 838
  • 839
  • 840
  • 841
  • 842
  • 843
  • 844
  • 845
  • 846
  • 847
  • 848
  • 849
  • 850
  • 851
  • 852
  • 853
  • 854
  • 855
  • 856
  • 857
  • 858
  • 859
  • 860
  • 861
  • 862
  • 863
  • 864
  • 865
  • 866
  • 867
  • 868
  • 869
  • 870
  • 871
  • 872
  • 873
  • 874
  • 875
  • 876
  • 877
  • 878
  • 879
  • 880
  • 881
  • 882
  • 883
  • 884
  • 885
  • 886
  • 887
  • 888
  • 889
  • 890
  • 891
  • 892
  • 893
  • 894
  • 895
  • 896
  • 897
  • 898
  • 899
  • 900
  • 901
  • 902
  • 903
  • 904
  • 905
  • 906
  • 907
  • 908
  • 909
  • 910
  • 911
  • 912
  • 913
  • 914
  • 915
  • 916
  • 917
  • 918
  • 919
  • 920
  • 921
  • 922
  • 923
  • 924
  • 925
  • 926
  • 927
  • 928
  • 929
  • 930
  • 931
  • 932
  • 933
  • 934
  • 935
  • 936
  • 937
  • 938
  • 939
  • 940
  • 941
  • 942
  • 943
  • 944
  • 945
  • 946
  • 947
  • 948
  • 949
  • 950
  • 951
  • 952
  • 953
  • 954
  • 955
  • 956
  • 957
  • 958
  • 959
  • 960
  • 961
  • 962
  • 963
  • 964
  • 965
  • 966
  • 967
  • 968
  • 969
  • 970
  • 971
  • 972
  • 973
  • 974
  • 975
  • 976
  • 977
  • 978
  • 979
  • 980
  • 981
  • 982
  • 983
  • 984
  • 985
  • 986
  • 987
  • 988
  • 989
  • 990
  • 991
  • 992
  • 993
  • 994
  • 995
  • 996
  • 997
  • 998
  • 999
  • 1000
  • 1001
  • 1002
  • 1003
  • 1004
  • 1005
  • 1006
  • 1007
  • 1008
  • 1009
  • 1010
  • 1011
  • 1012
  • 1013
  • 1014
  • 1015
  • 1016
  • 1017
  • 1018
  • 1019
  • 1020
  • 1021
  • 1022
  • 1023
  • 1024
  • 1025
  • 1026
  • 1027
  • 1028
  • 1029
  • 1030
  • 1031
  • 1032
  • 1033
  • 1034
  • 1035
  • 1036
  • 1037
  • 1038
  • 1039
  • 1040
  • 1041
  • 1042
  • 1043
  • 1044
  • 1045
  • 1046
  • 1047
  • 1048
  • 1049
  • 1050
  • 1051
  • 1052
  • 1053
  • 1054
  • 1055
  • 1056
  • 1057
  • 1058
  • 1059
  • 1060
  • 1061
  • 1062
  • 1063
  • 1064
  • 1065
  • 1066
  • 1067
  • 1068
  • 1069
  • 1070
  • 1071
  • 1072
  • 1073
  • 1074
  • 1075
  • 1076
  • 1077
  • 1078
  • 1079
  • 1080
  • 1081
  • 1082
  • 1083
  • 1084
  • 1085
  • 1086
  • 1087
  • 1088
  • 1089
  • 1090
  • 1091
  • 1092
  • 1093
  • 1094
  • 1095
  • 1096
  • 1097
  • 1098
  • 1099
  • 1100
  • 1101
  • 1102
  • 1103
  • 1104
  • 1105
  • 1106
  • 1107
  • 1108
  • 1109
  • 1110
  • 1111
  • 1112
  • 1113
  • 1114
  • 1115
  • 1116
  • 1117
  • 1118
  • 1119
  • 1120
  • 1121
  • 1122
  • 1123
  • 1124
  • 1125
  • 1126
  • 1127
  • 1128
  • 1129
  • 1130
  • 1131
  • 1132
  • 1133
  • 1134
  • 1135
  • 1136
  • 1137
  • 1138
  • 1139
  • 1140
  • 1141
  • 1142
  • 1143
  • 1144
  • 1145
  • 1146
  • 1147
  • 1148
  • 1149
  • 1150
  • 1151
  • 1152
  • 1153
  • 1154
  • 1155
  • 1156
  • 1157
  • 1158
  • 1159
  • 1160
  • 1161
  • 1162
  • 1163
  • 1164
  • 1165
  • 1166
  • 1167
  • 1168
  • 1169
  • 1170
  • 1171
  • 1172
  • 1173
  • 1174
  • 1175
  • 1176
  • 1177
  • 1178
  • 1179
  • 1180
  • 1181
  • 1182
  • 1183
  • 1184
  • 1185
  • 1186
  • 1187
  • 1188
  • 1189
  • 1190
  • 1191
  • 1192
  • 1193
  • 1194
  • 1195
  • 1196
  • 1197
  • 1198
  • 1199
  • 1200
  • 1201
  • 1202
  • 1203
  • 1204
  • 1205
  • 1206
  • 1207
  • 1208
  • 1209
  • 1210
  • 1211
  • 1212
  • 1213
  • 1214
  • 1215
  • 1216
  • 1217
  • 1218
  • 1219
  • 1220
  • 1221
  • 1222
  • 1223
  • 1224
  • 1225
  • 1226
  • 1227
  • 1228
  • 1229
  • 1230
  • 1231
  • 1232
  • 1233
  • 1234
  • 1235
  • 1236
  • 1237
  • 1238
  • 1239
  • 1240
  • 1241
  • 1242
  • 1243
  • 1244
  • 1245
  • 1246
  • 1247
  • 1248
  • 1249
  • 1250
  • 1251
  • 1252
  • 1253
  • 1254
  • 1255
  • 1256
  • 1257
  • 1258
  • 1259
  • 1260
  • 1261
  • 1262
  • 1263
  • 1264
  • 1265
  • 1266
  • 1267
  • 1268
  • 1269
  • 1270
  • 1271
  • 1272
  • 1273
  • 1274
  • 1275
  • 1276
  • 1277
  • 1278
  • 1279
  • 1280
  • 1281
  • 1282
  • 1283
  • 1284
  • 1285
  • 1286
  • 1287
  • 1288
  • 1289
  • 1290
  • 1291
  • 1292
  • 1293
  • 1294
  • 1295
  • 1296
  • 1297
  • 1298
  • 1299
  • 1300
  • 1301
  • 1302
  • 1303
  • 1304
  • 1305
  • 1306
  • 1307
  • 1308
  • 1309
  • 1310
  • 1311
  • 1312
  • 1313
  • 1314
  • 1315
  • 1316
  • 1317
  • 1318
  • 1319
  • 1320
  • 1321
  • 1322
  • 1323
  • 1324
  • 1325
  • 1326
  • 1327
  • 1328
  • 1329
  • 1330
  • 1331
  • 1332
  • 1333
  • 1334
  • 1335
  • 1336
  • 1337
  • 1338
  • 1339
  • 1340
  • 1341
  • 1342
  • 1343
  • 1344
  • 1345
  • 1346
  • 1347
  • 1348
  • 1349
  • 1350
  • 1351
  • 1352
  • 1353
  • 1354
  • 1355
  • 1356
  • 1357
  • 1358
  • 1359
  • 1360
  • 1361
  • 1362
  • 1363
  • 1364
  • 1365
  • 1366
  • 1367
  • 1368
  • 1369
  • 1370
  • 1371
  • 1372
  • 1373
  • 1374
  • 1375
  • 1376
  • 1377
  • 1378
  • 1379
  • 1380
  • 1381
  • 1382
  • 1383
  • 1384
  • 1385
  • 1386
  • 1387
  • 1388
  • 1389
  • 1390
  • 1391
  • 1392
  • 1393
  • 1394
  • 1395
  • 1396
  • 1397
  • 1398
  • 1399
  • 1400
  • 1401
  • 1402
  • 1403
  • 1404
  • 1405
  • 1406
  • 1407
  • 1408
  • 1409
  • 1410
  • 1411
  • 1412
  • 1413
  • 1414
  • 1415
  • 1416
  • 1417
  • 1418
  • 1419
  • 1420
  • 1421
  • 1422
  • 1423
  • 1424
  • 1425
  • 1426
  • 1427
  • 1428
  • 1429
  • 1430
  • 1431
  • 1432
  • 1433
  • 1434
  • 1435
  • 1436
  • 1437
  • 1438
  • 1439
  • 1440
  • 1441
  • 1442
  • 1443
  • 1444
  • 1445
  • 1446
  • 1447
  • 1448
  • 1449
  • 1450
  • 1451
  • 1452
  • 1453
  • 1454
  • 1455
  • 1456
  • 1457
  • 1458
  • 1459
  • 1460
  • 1461
  • 1462
  • 1463
  • 1464
  • 1465
  • 1466
  • 1467
  • 1468
  • 1469
  • 1470
  • 1471
  • 1472
  • 1473
  • 1474
  • 1475
  • 1476
  • 1477
  • 1478
  • 1479
  • 1480
  • 1481
  • 1482
  • 1483
  • 1484
  • 1485
  • 1486
  • 1487
  • 1488
  • 1489
  • 1490
  • 1491
  • 1492
  • 1493
  • 1494
  • 1495
  • 1496
  • 1497
  • 1498
  • 1499
  • 1500
  • 1501
  • 1502
  • 1503
  • 1504
  • 1505
  • 1506
  • 1507
  • 1508
  • 1509
  • 1510
  • 1511
  • 1512
  • 1513
  • 1514
  • 1515
  • 1516
  • 1517
  • 1518
  • 1519
  • 1520
  • 1521
  • 1522
  • 1523
  • 1524
  • 1525
  • 1526
  • 1527
  • 1528
  • 1529
  • 1530
  • 1531
  • 1532
  • 1533
  • 1534
  • 1535
  • 1536
  • 1537
  • 1538
  • 1539
  • 1540
  • 1541
  • 1542
  • 1543
  • 1544
  • 1545
  • 1546
  • 1547
  • 1548
  • 1549
  • 1550
  • 1551
  • 1552
  • 1553
  • 1554
  • 1555
  • 1556
  • 1557
  • 1558
  • 1559
  • 1560
  • 1561
  • 1562
  • 1563
  • 1564
  • 1565
  • 1566
  • 1567
  • 1568
  • 1569
  • 1570
  • 1571
  • 1572
  • 1573
  • 1574
  • 1575
  • 1576
  • 1577
  • 1578
  • 1579
  • 1580
  • 1581
  • 1582
  • 1583
  • 1584
  • 1585
  • 1586
  • 1587
  • 1588
  • 1589
  • 1590
  • 1591
  • 1592
  • 1593
  • 1594
  • 1595
  • 1596
  • 1597
  • 1598
  • 1599
  • 1600
  • 1601
  • 1602
  • 1603
  • 1604
  • 1605
  • 1606
  • 1607
  • 1608
  • 1609
  • 1610
  • 1611
  • 1612
  • 1613
  • 1614
  • 1615
  • 1616
  • 1617
  • 1618
  • 1619
  • 1620
  • 1621
  • 1622
  • 1623
  • 1624
  • 1625
  • 1626
  • 1627
  • 1628
  • 1629
  • 1630
  • 1631
  • 1632
  • 1633
  • 1634
  • 1635
  • 1636
  • 1637
  • 1638
  • 1639
  • 1640

cplant.js 植物的各种行为。
czombie.js 各种僵尸的走路和攻击行为。

游戏素材来自网上,侵权麻烦联系删除




原文地址:访问原文地址
快照地址: 访问文章快照