diff --git a/app/Game/Client/GameObjects/Doll.js b/app/Game/Client/GameObjects/Doll.js
index 6aea4e0..2a5c4df 100644
--- a/app/Game/Client/GameObjects/Doll.js
+++ b/app/Game/Client/GameObjects/Doll.js
@@ -7,7 +7,7 @@ define([
function (Parent, Settings, NotificationCenter, Exception) {
- function Doll(physicsEngine, playerId) {
+ function Doll(physicsEngine, playerId) {
this.animationDef = {
"stand": [1,1],
"walk": [2,28],
@@ -69,7 +69,10 @@ function (Parent, Settings, NotificationCenter, Exception) {
NotificationCenter.trigger("view/addMesh", mesh);
};
- NotificationCenter.trigger("view/createAnimatedMesh", texturePaths, callback, { visible: false, pivot: "mb" });
+ NotificationCenter.trigger("view/createAnimatedMesh", texturePaths, callback, {
+ visible: false,
+ pivot: "mb"
+ });
}
// Head
diff --git a/app/Game/Client/Physics/Engine.js b/app/Game/Client/Physics/Engine.js
index 70dfb99..ce4d2ac 100755
--- a/app/Game/Client/Physics/Engine.js
+++ b/app/Game/Client/Physics/Engine.js
@@ -34,7 +34,7 @@ function (Parent, Settings, DomController, Box2D) {
| Box2D.Dynamics.b2DebugDraw.e_jointBit
//| Box2D.Dynamics.b2DebugDraw.e_coreShapeBit
//| Box2D.Dynamics.b2DebugDraw.e_aabbBit
- | Box2D.Dynamics.b2DebugDraw.e_centerOfMassBit
+ //| Box2D.Dynamics.b2DebugDraw.e_centerOfMassBit
//| Box2D.Dynamics.b2DebugDraw.e_obbBit
//| Box2D.Dynamics.b2DebugDraw.e_pairBit
);
diff --git a/app/Game/Config/Settings.js b/app/Game/Config/Settings.js
index ac087a7..f8c89bc 100755
--- a/app/Game/Config/Settings.js
+++ b/app/Game/Config/Settings.js
@@ -47,7 +47,7 @@ define({
IS_BROWSER_ENVIRONMENT: typeof window !== 'undefined',
USE_WEGBL: true,
- DEBUG_MODE: 0,
+ DEBUG_MODE: 1,
// NETWORKING
WORLD_UPDATE_BROADCAST_INTERVAL: 70,
diff --git a/app/Game/Core/GameObjects/Doll.js b/app/Game/Core/GameObjects/Doll.js
index 9b504bb..1854e67 100755
--- a/app/Game/Core/GameObjects/Doll.js
+++ b/app/Game/Core/GameObjects/Doll.js
@@ -74,6 +74,18 @@ function (Parent, Box2D, Settings, CollisionDetector) {
}
this.body.CreateFixture(fixtureDef);
+
+ var grabSensorLeftShape = new Box2D.Collision.Shapes.b2PolygonShape();
+ grabSensorLeftShape.SetAsOrientedBox(10 / Settings.RATIO, 20 / Settings.RATIO, new Box2D.Common.Math.b2Vec2(-10 / Settings.RATIO, -10 / Settings.RATIO));
+ fixtureDef.shape = grabSensorLeftShape;
+ fixtureDef.isSensor = true;
+ this.body.CreateFixture(fixtureDef);
+
+ var grabSensorRightShape = new Box2D.Collision.Shapes.b2PolygonShape();
+ grabSensorRightShape.SetAsOrientedBox(10 / Settings.RATIO, 20 / Settings.RATIO, new Box2D.Common.Math.b2Vec2(10 / Settings.RATIO, -10 / Settings.RATIO));
+ fixtureDef.shape = grabSensorRightShape;
+ fixtureDef.isSensor = true;
+ this.body.CreateFixture(fixtureDef);
}
Doll.prototype.setActionState = function(state) {
diff --git a/client.js b/client.js
index 6cdd3a1..c49cdbc 100755
--- a/client.js
+++ b/client.js
@@ -10,25 +10,53 @@ var inspector = {};
requirejs([
"Game/Client/Networker",
"Lib/Vendor/SocketIO",
- "Game/Config/Settings"
+ "Game/Config/Settings",
+ "Lib/Utilities/Exception",
+ "Lib/Vendor/Pixi"
],
-function (Networker, SocketIO, Settings) {
-
- var options = {
- "reconnect": false,
- "reconnection delay": 500,
- "max reconnection attempts": 10,
+function (Networker, SocketIO, Settings, Exception, PIXI) {
- "transports": [
- "websocket",
- "flashsocket"
- ],
- };
+ function loadAssets(callback) {
+ var url = "static/img/paths.txt";
+ var loaded = document.getElementById("loaded");
+ var loading = document.getElementById("loading");
+ var count = 0;
- var socket = SocketIO.connect(location.href, options);
- var networker = new Networker(socket);
+ var xhr = new XMLHttpRequest();
+ xhr.onreadystatechange = function() {
+ if(xhr.readyState == 4) {
+ if(xhr.status == 200) {
+ var paths = xhr.responseText.split("\n");
+ var max = paths.length;
+ loader = new PIXI.AssetLoader(paths);
+ loader.onComplete = function() { loading.style.display = "none"; callback(); };
+ loader.onProgress = function() { loaded.style.width = (100 / max * ++count) + "%"; }
+ loader.load();
+ } else {
+ throw new Exception("Assets preloader error: " + xhr.status + " " + xhr.statusText)
+ }
+ }
+ }
+ xhr.open("GET", url, true);
+ xhr.send(null);
+ }
+
+ loadAssets(function() {
+ var options = {
+ "reconnect": false,
+ "reconnection delay": 500,
+ "max reconnection attempts": 10,
+
+ "transports": [
+ "websocket",
+ "flashsocket"
+ ],
+ };
+ var socket = SocketIO.connect(location.href, options);
+ var networker = new Networker(socket);
+ inspector.networker = networker;
+ inspector.settings = Settings;
+ });
- inspector.networker = networker;
- inspector.settings = Settings;
});
\ No newline at end of file
diff --git a/static/html/index.html b/static/html/index.html
index 264e15f..4e0fc31 100755
--- a/static/html/index.html
+++ b/static/html/index.html
@@ -12,22 +12,39 @@
height: 100%;
background: #000;
}
+
+ #loading {
+ border: 1px solid white;
+ width: 500px;
+ display: table-cell;
+ vertical-align: middle;
+ height: 100%;
+ }
+
+ #loaded {
+ height: 10px;
+ margin: 0;
+ padding: 0;
+ border: 1px solid black;
+ background: white;
+ }
+
#canvasContainer {
text-align: center;
display: table-cell;
vertical-align: middle;
height: 100%;
}
+
canvas {
background: #333;
margin: 10px;
}
- #canvasContainer canvas:first-child {
-
- }
+
+
diff --git a/static/img/Characters/Gogo (Zimbabwe)/chest.gif b/static/img/Characters/Gogo (Zimbabwe)/chest.gif
deleted file mode 100644
index 34cff40..0000000
Binary files a/static/img/Characters/Gogo (Zimbabwe)/chest.gif and /dev/null differ
diff --git a/static/img/Characters/Gogo (Zimbabwe)/foot.gif b/static/img/Characters/Gogo (Zimbabwe)/foot.gif
deleted file mode 100644
index adb7092..0000000
Binary files a/static/img/Characters/Gogo (Zimbabwe)/foot.gif and /dev/null differ
diff --git a/static/img/Characters/Gogo (Zimbabwe)/hand.gif b/static/img/Characters/Gogo (Zimbabwe)/hand.gif
deleted file mode 100644
index 5427591..0000000
Binary files a/static/img/Characters/Gogo (Zimbabwe)/hand.gif and /dev/null differ
diff --git a/static/img/Characters/Gogo (Zimbabwe)/head.gif b/static/img/Characters/Gogo (Zimbabwe)/head.gif
deleted file mode 100644
index 2fbb0fb..0000000
Binary files a/static/img/Characters/Gogo (Zimbabwe)/head.gif and /dev/null differ
diff --git a/static/img/Characters/Nini (China)/chest.gif b/static/img/Characters/Nini (China)/chest.gif
deleted file mode 100644
index 358b106..0000000
Binary files a/static/img/Characters/Nini (China)/chest.gif and /dev/null differ
diff --git a/static/img/Characters/Nini (China)/foot.gif b/static/img/Characters/Nini (China)/foot.gif
deleted file mode 100644
index 38b990f..0000000
Binary files a/static/img/Characters/Nini (China)/foot.gif and /dev/null differ
diff --git a/static/img/Characters/Nini (China)/hand.gif b/static/img/Characters/Nini (China)/hand.gif
deleted file mode 100644
index b563e1b..0000000
Binary files a/static/img/Characters/Nini (China)/hand.gif and /dev/null differ
diff --git a/static/img/Characters/Nini (China)/head.gif b/static/img/Characters/Nini (China)/head.gif
deleted file mode 100644
index deed6a0..0000000
Binary files a/static/img/Characters/Nini (China)/head.gif and /dev/null differ
diff --git a/static/img/Characters/Omma (Germany)/chest.gif b/static/img/Characters/Omma (Germany)/chest.gif
deleted file mode 100644
index 3ff3a3e..0000000
Binary files a/static/img/Characters/Omma (Germany)/chest.gif and /dev/null differ
diff --git a/static/img/Characters/Omma (Germany)/foot.gif b/static/img/Characters/Omma (Germany)/foot.gif
deleted file mode 100644
index 02ade1b..0000000
Binary files a/static/img/Characters/Omma (Germany)/foot.gif and /dev/null differ
diff --git a/static/img/Characters/Omma (Germany)/hand.gif b/static/img/Characters/Omma (Germany)/hand.gif
deleted file mode 100644
index 6605b2c..0000000
Binary files a/static/img/Characters/Omma (Germany)/hand.gif and /dev/null differ
diff --git a/static/img/Characters/Omma (Germany)/head.gif b/static/img/Characters/Omma (Germany)/head.gif
deleted file mode 100644
index 01b3b02..0000000
Binary files a/static/img/Characters/Omma (Germany)/head.gif and /dev/null differ
diff --git a/static/img/Tiles/metaltest.psd b/static/img/Tiles/metaltest.psd
deleted file mode 100644
index bc56014..0000000
Binary files a/static/img/Tiles/metaltest.psd and /dev/null differ
diff --git a/static/img/paths.txt b/static/img/paths.txt
new file mode 100644
index 0000000..d47aa96
--- /dev/null
+++ b/static/img/paths.txt
@@ -0,0 +1,568 @@
+static/img/Items/kitchen/cupboard_dishwasher.gif
+static/img/Items/kitchen/herb_chopper.gif
+static/img/Items/kitchen/tile.gif
+static/img/Items/kitchen/pan.gif
+static/img/Items/kitchen/cup.gif
+static/img/Items/kitchen/cupboard_sink_right.gif
+static/img/Items/kitchen/fork.gif
+static/img/Items/kitchen/banana.gif
+static/img/Items/kitchen/cleaver_small.gif
+static/img/Items/kitchen/cupboard_sink_left.gif
+static/img/Items/kitchen/plate.gif
+static/img/Items/kitchen/fridge.gif
+static/img/Items/kitchen/can.gif
+static/img/Items/kitchen/vase.gif
+static/img/Items/kitchen/cupboard_shelf.gif
+static/img/Items/kitchen/tomato.gif
+static/img/Items/kitchen/coffeemachine.gif
+static/img/Items/kitchen/knife.gif
+static/img/Items/kitchen/microwave.gif
+static/img/Items/kitchen/window_curtain.gif
+static/img/Items/kitchen/cleaver_large.gif
+static/img/Items/kitchen/rolling_pin.gif
+static/img/Items/kitchen/knife_big.gif
+static/img/Items/kitchen/tap.gif
+static/img/Items/kitchen/cupboard_oven.gif
+static/img/Items/kitchen/spoon.gif
+static/img/Items/kitchen/fork_meat.gif
+static/img/Items/kitchen/toaster.gif
+static/img/Items/kitchen/tong.gif
+static/img/Items/kitchen/table.gif
+static/img/Items/kitchen/cupboard_triple_draw.gif
+static/img/Items/laundry/hamper.gif
+static/img/Items/laundry/laundry_machine.gif
+static/img/Items/laundry/laundry_powder.gif
+static/img/Items/outdoor/fence.gif
+static/img/Items/outdoor/fence_door.gif
+static/img/Items/livingroom/flower_pot_triple.gif
+static/img/Items/livingroom/telly_cabinet.gif
+static/img/Items/livingroom/ventilator.gif
+static/img/Items/livingroom/office_chair.gif
+static/img/Items/livingroom/speaker.gif
+static/img/Items/livingroom/bookshelf.gif
+static/img/Items/livingroom/candleholder_full.gif
+static/img/Items/livingroom/candleholder_empty.gif
+static/img/Items/livingroom/book_blue.gif
+static/img/Items/livingroom/stereo.gif
+static/img/Items/livingroom/tuba.gif
+static/img/Items/livingroom/book_red.gif
+static/img/Items/livingroom/flower_pot.gif
+static/img/Items/livingroom/couch.gif
+static/img/Items/livingroom/television.gif
+static/img/Items/livingroom/picture_omma.gif
+static/img/Items/livingroom/plant.gif
+static/img/Items/livingroom/piano.gif
+static/img/Items/livingroom/cactus.gif
+static/img/Items/livingroom/book_bible.gif
+static/img/100.png
+static/img/10.gif
+static/img/Weapons/elegtro_maknetizer.png
+static/img/Weapons/hook_gun.png
+static/img/Characters/Chuck/chest.png
+static/img/Characters/Chuck/arm_back_top.png
+static/img/Characters/Chuck/shorts_down_front.png
+static/img/Characters/Chuck/arm_front_top.png
+static/img/Characters/Chuck/chuck.png
+static/img/Characters/Chuck/shorts.png
+static/img/Characters/Chuck/leg_top.png
+static/img/Characters/Chuck/leg_down.png
+static/img/Characters/Chuck/head.png
+static/img/Characters/Chuck/arm_down_front.png
+static/img/Characters/Chuck/shorts_down_back.png
+static/img/Characters/Chuck/shorts_top.png
+static/img/Characters/Chuck/arm_down_back.png
+static/img/Animation/chuckwithoutarmssprite.png
+static/img/Animation/WithArms/ChuckAnimations0071.png
+static/img/Animation/WithArms/ChuckAnimations0060.png
+static/img/Animation/WithArms/ChuckAnimations0062.png
+static/img/Animation/WithArms/ChuckAnimations0030.png
+static/img/Animation/WithArms/ChuckAnimations0059.png
+static/img/Animation/WithArms/ChuckAnimations0056.png
+static/img/Animation/WithArms/ChuckAnimations0036.png
+static/img/Animation/WithArms/ChuckAnimations0089.png
+static/img/Animation/WithArms/ChuckAnimations0101.png
+static/img/Animation/WithArms/ChuckAnimations0074.png
+static/img/Animation/WithArms/ChuckAnimations0112.png
+static/img/Animation/WithArms/ChuckAnimations0007.png
+static/img/Animation/WithArms/ChuckAnimations0113.png
+static/img/Animation/WithArms/ChuckAnimations0046.png
+static/img/Animation/WithArms/ChuckAnimations0111.png
+static/img/Animation/WithArms/ChuckAnimations0061.png
+static/img/Animation/WithArms/ChuckAnimations0097.png
+static/img/Animation/WithArms/ChuckAnimations0052.png
+static/img/Animation/WithArms/ChuckAnimations0053.png
+static/img/Animation/WithArms/ChuckAnimations0093.png
+static/img/Animation/WithArms/ChuckAnimations0068.png
+static/img/Animation/WithArms/ChuckAnimations0119.png
+static/img/Animation/WithArms/ChuckAnimations0031.png
+static/img/Animation/WithArms/ChuckAnimations0109.png
+static/img/Animation/WithArms/ChuckAnimations0013.png
+static/img/Animation/WithArms/ChuckAnimations0009.png
+static/img/Animation/WithArms/ChuckAnimations0114.png
+static/img/Animation/WithArms/ChuckAnimations0096.png
+static/img/Animation/WithArms/ChuckAnimations0044.png
+static/img/Animation/WithArms/ChuckAnimations0077.png
+static/img/Animation/WithArms/ChuckAnimations0025.png
+static/img/Animation/WithArms/ChuckAnimations0085.png
+static/img/Animation/WithArms/ChuckAnimations0048.png
+static/img/Animation/WithArms/ChuckAnimations0037.png
+static/img/Animation/WithArms/ChuckAnimations0014.png
+static/img/Animation/WithArms/ChuckAnimations0020.png
+static/img/Animation/WithArms/ChuckAnimations0035.png
+static/img/Animation/WithArms/ChuckAnimations0110.png
+static/img/Animation/WithArms/ChuckAnimations0032.png
+static/img/Animation/WithArms/ChuckAnimations0051.png
+static/img/Animation/WithArms/ChuckAnimations0017.png
+static/img/Animation/WithArms/ChuckAnimations0012.png
+static/img/Animation/WithArms/ChuckAnimations0034.png
+static/img/Animation/WithArms/ChuckAnimations0065.png
+static/img/Animation/WithArms/ChuckAnimations0055.png
+static/img/Animation/WithArms/ChuckAnimations0103.png
+static/img/Animation/WithArms/ChuckAnimations0075.png
+static/img/Animation/WithArms/ChuckAnimations0018.png
+static/img/Animation/WithArms/ChuckAnimations0090.png
+static/img/Animation/WithArms/ChuckAnimations0117.png
+static/img/Animation/WithArms/ChuckAnimations0121.png
+static/img/Animation/WithArms/ChuckAnimations0084.png
+static/img/Animation/WithArms/ChuckAnimations0064.png
+static/img/Animation/WithArms/ChuckAnimations0063.png
+static/img/Animation/WithArms/ChuckAnimations0054.png
+static/img/Animation/WithArms/ChuckAnimations0125.png
+static/img/Animation/WithArms/ChuckAnimations0086.png
+static/img/Animation/WithArms/ChuckAnimations0006.png
+static/img/Animation/WithArms/ChuckAnimations0079.png
+static/img/Animation/WithArms/ChuckAnimations0016.png
+static/img/Animation/WithArms/ChuckAnimations0047.png
+static/img/Animation/WithArms/ChuckAnimations0073.png
+static/img/Animation/WithArms/ChuckAnimations0027.png
+static/img/Animation/WithArms/ChuckAnimations0092.png
+static/img/Animation/WithArms/ChuckAnimations0042.png
+static/img/Animation/WithArms/ChuckAnimations0041.png
+static/img/Animation/WithArms/ChuckAnimations0124.png
+static/img/Animation/WithArms/ChuckAnimations0104.png
+static/img/Animation/WithArms/ChuckAnimations0001.png
+static/img/Animation/WithArms/ChuckAnimations0099.png
+static/img/Animation/WithArms/ChuckAnimations0072.png
+static/img/Animation/WithArms/ChuckAnimations0122.png
+static/img/Animation/WithArms/ChuckAnimations0040.png
+static/img/Animation/WithArms/ChuckAnimations0118.png
+static/img/Animation/WithArms/ChuckAnimations0023.png
+static/img/Animation/WithArms/ChuckAnimations0083.png
+static/img/Animation/WithArms/ChuckAnimations0021.png
+static/img/Animation/WithArms/ChuckAnimations0024.png
+static/img/Animation/WithArms/ChuckAnimations0080.png
+static/img/Animation/WithArms/ChuckAnimations0010.png
+static/img/Animation/WithArms/ChuckAnimations0105.png
+static/img/Animation/WithArms/ChuckAnimations0002.png
+static/img/Animation/WithArms/ChuckAnimations0115.png
+static/img/Animation/WithArms/ChuckAnimations0088.png
+static/img/Animation/WithArms/ChuckAnimations0108.png
+static/img/Animation/WithArms/ChuckAnimations0106.png
+static/img/Animation/WithArms/ChuckAnimations0033.png
+static/img/Animation/WithArms/ChuckAnimations0038.png
+static/img/Animation/WithArms/ChuckAnimations0087.png
+static/img/Animation/WithArms/ChuckAnimations0067.png
+static/img/Animation/WithArms/ChuckAnimations0039.png
+static/img/Animation/WithArms/ChuckAnimations0082.png
+static/img/Animation/WithArms/ChuckAnimations0095.png
+static/img/Animation/WithArms/ChuckAnimations0008.png
+static/img/Animation/WithArms/ChuckAnimations0057.png
+static/img/Animation/WithArms/ChuckAnimations0107.png
+static/img/Animation/WithArms/ChuckAnimations0070.png
+static/img/Animation/WithArms/ChuckAnimations0026.png
+static/img/Animation/WithArms/ChuckAnimations0043.png
+static/img/Animation/WithArms/ChuckAnimations0066.png
+static/img/Animation/WithArms/ChuckAnimations0100.png
+static/img/Animation/WithArms/ChuckAnimations0028.png
+static/img/Animation/WithArms/ChuckAnimations0123.png
+static/img/Animation/WithArms/ChuckAnimations0005.png
+static/img/Animation/WithArms/ChuckAnimations0004.png
+static/img/Animation/WithArms/ChuckAnimations0045.png
+static/img/Animation/WithArms/ChuckAnimations0091.png
+static/img/Animation/WithArms/ChuckAnimations0011.png
+static/img/Animation/WithArms/ChuckAnimations0102.png
+static/img/Animation/WithArms/ChuckAnimations0003.png
+static/img/Animation/WithArms/ChuckAnimations0022.png
+static/img/Animation/WithArms/ChuckAnimations0116.png
+static/img/Animation/WithArms/ChuckAnimations0126.png
+static/img/Animation/WithArms/ChuckAnimations0120.png
+static/img/Animation/WithArms/ChuckAnimations0015.png
+static/img/Animation/WithArms/ChuckAnimations0050.png
+static/img/Animation/WithArms/ChuckAnimations0019.png
+static/img/Animation/WithArms/ChuckAnimations0081.png
+static/img/Animation/WithArms/ChuckAnimations0069.png
+static/img/Animation/WithArms/ChuckAnimations0076.png
+static/img/Animation/WithArms/ChuckAnimations0049.png
+static/img/Animation/WithArms/ChuckAnimations0078.png
+static/img/Animation/WithArms/ChuckAnimations0029.png
+static/img/Animation/WithArms/ChuckAnimations0098.png
+static/img/Animation/WithArms/ChuckAnimations0094.png
+static/img/Animation/WithArms/ChuckAnimations0058.png
+static/img/Animation/chuckwitharmssprite.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0081.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0039.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0091.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0083.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0002.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0055.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0047.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0020.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0123.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0010.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0025.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0034.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0121.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0075.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0119.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0043.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0084.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0001.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0103.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0003.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0073.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0052.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0072.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0110.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0105.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0045.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0058.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0067.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0062.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0030.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0027.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0026.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0019.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0015.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0102.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0049.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0048.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0112.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0044.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0014.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0074.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0080.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0011.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0029.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0117.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0086.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0111.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0093.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0056.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0008.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0012.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0063.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0035.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0036.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0100.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0023.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0054.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0038.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0085.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0101.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0082.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0106.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0040.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0071.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0037.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0068.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0092.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0114.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0069.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0107.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0078.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0060.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0016.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0041.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0046.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0021.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0031.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0087.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0050.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0122.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0115.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0113.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0007.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0124.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0004.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0077.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0108.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0089.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0120.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0079.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0088.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0059.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0066.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0126.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0006.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0022.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0057.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0098.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0042.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0116.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0009.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0005.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0018.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0094.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0051.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0097.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0118.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0070.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0053.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0109.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0095.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0013.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0061.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0099.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0024.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0065.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0125.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0017.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0104.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0064.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0076.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0090.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0096.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0033.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0032.png
+static/img/Animation/WithoutArms/ChuckAnimationsWithoutArms0028.png
+static/img/Tiles/Rock/53.gif
+static/img/Tiles/Rock/32.gif
+static/img/Tiles/Rock/63.gif
+static/img/Tiles/Rock/73.gif
+static/img/Tiles/Rock/41.gif
+static/img/Tiles/Rock/10.gif
+static/img/Tiles/Rock/22.gif
+static/img/Tiles/Rock/61.gif
+static/img/Tiles/Rock/72.gif
+static/img/Tiles/Rock/83.gif
+static/img/Tiles/Rock/51.gif
+static/img/Tiles/Rock/43.gif
+static/img/Tiles/Rock/23.gif
+static/img/Tiles/Rock/60.gif
+static/img/Tiles/Rock/21.gif
+static/img/Tiles/Rock/62.gif
+static/img/Tiles/Rock/82.gif
+static/img/Tiles/Rock/20.gif
+static/img/Tiles/Rock/52.gif
+static/img/Tiles/Rock/71.gif
+static/img/Tiles/Rock/31.gif
+static/img/Tiles/Rock/33.gif
+static/img/Tiles/Rock/42.gif
+static/img/Tiles/Rock/81.gif
+static/img/Tiles/Rock/70.gif
+static/img/Tiles/Rock/40.gif
+static/img/Tiles/Rock/80.gif
+static/img/Tiles/Rock/30.gif
+static/img/Tiles/Rock/50.gif
+static/img/Tiles/Stones/53.gif
+static/img/Tiles/Stones/32.gif
+static/img/Tiles/Stones/63.gif
+static/img/Tiles/Stones/73.gif
+static/img/Tiles/Stones/41.gif
+static/img/Tiles/Stones/10.gif
+static/img/Tiles/Stones/22.gif
+static/img/Tiles/Stones/61.gif
+static/img/Tiles/Stones/72.gif
+static/img/Tiles/Stones/83.gif
+static/img/Tiles/Stones/51.gif
+static/img/Tiles/Stones/43.gif
+static/img/Tiles/Stones/23.gif
+static/img/Tiles/Stones/60.gif
+static/img/Tiles/Stones/21.gif
+static/img/Tiles/Stones/62.gif
+static/img/Tiles/Stones/82.gif
+static/img/Tiles/Stones/20.gif
+static/img/Tiles/Stones/52.gif
+static/img/Tiles/Stones/71.gif
+static/img/Tiles/Stones/31.gif
+static/img/Tiles/Stones/33.gif
+static/img/Tiles/Stones/42.gif
+static/img/Tiles/Stones/81.gif
+static/img/Tiles/Stones/70.gif
+static/img/Tiles/Stones/40.gif
+static/img/Tiles/Stones/80.gif
+static/img/Tiles/Stones/30.gif
+static/img/Tiles/Stones/50.gif
+static/img/Tiles/smallrooftoppattern.gif
+static/img/Tiles/Metal3/53.gif
+static/img/Tiles/Metal3/32.gif
+static/img/Tiles/Metal3/63.gif
+static/img/Tiles/Metal3/73.gif
+static/img/Tiles/Metal3/41.gif
+static/img/Tiles/Metal3/10.gif
+static/img/Tiles/Metal3/22.gif
+static/img/Tiles/Metal3/61.gif
+static/img/Tiles/Metal3/72.gif
+static/img/Tiles/Metal3/83.gif
+static/img/Tiles/Metal3/51.gif
+static/img/Tiles/Metal3/43.gif
+static/img/Tiles/Metal3/23.gif
+static/img/Tiles/Metal3/60.gif
+static/img/Tiles/Metal3/21.gif
+static/img/Tiles/Metal3/62.gif
+static/img/Tiles/Metal3/82.gif
+static/img/Tiles/Metal3/20.gif
+static/img/Tiles/Metal3/52.gif
+static/img/Tiles/Metal3/71.gif
+static/img/Tiles/Metal3/31.gif
+static/img/Tiles/Metal3/33.gif
+static/img/Tiles/Metal3/42.gif
+static/img/Tiles/Metal3/81.gif
+static/img/Tiles/Metal3/70.gif
+static/img/Tiles/Metal3/40.gif
+static/img/Tiles/Metal3/80.gif
+static/img/Tiles/Metal3/30.gif
+static/img/Tiles/Metal3/50.gif
+static/img/Tiles/Rooftop/53.gif
+static/img/Tiles/Rooftop/32.gif
+static/img/Tiles/Rooftop/63.gif
+static/img/Tiles/Rooftop/73.gif
+static/img/Tiles/Rooftop/41.gif
+static/img/Tiles/Rooftop/10.gif
+static/img/Tiles/Rooftop/22.gif
+static/img/Tiles/Rooftop/61.gif
+static/img/Tiles/Rooftop/72.gif
+static/img/Tiles/Rooftop/83.gif
+static/img/Tiles/Rooftop/51.gif
+static/img/Tiles/Rooftop/43.gif
+static/img/Tiles/Rooftop/23.gif
+static/img/Tiles/Rooftop/60.gif
+static/img/Tiles/Rooftop/21.gif
+static/img/Tiles/Rooftop/62.gif
+static/img/Tiles/Rooftop/82.gif
+static/img/Tiles/Rooftop/20.gif
+static/img/Tiles/Rooftop/52.gif
+static/img/Tiles/Rooftop/71.gif
+static/img/Tiles/Rooftop/31.gif
+static/img/Tiles/Rooftop/33.gif
+static/img/Tiles/Rooftop/42.gif
+static/img/Tiles/Rooftop/81.gif
+static/img/Tiles/Rooftop/70.gif
+static/img/Tiles/Rooftop/40.gif
+static/img/Tiles/Rooftop/80.gif
+static/img/Tiles/Rooftop/30.gif
+static/img/Tiles/Rooftop/50.gif
+static/img/Tiles/Wood/53.gif
+static/img/Tiles/Wood/32.gif
+static/img/Tiles/Wood/63.gif
+static/img/Tiles/Wood/73.gif
+static/img/Tiles/Wood/41.gif
+static/img/Tiles/Wood/10.gif
+static/img/Tiles/Wood/22.gif
+static/img/Tiles/Wood/61.gif
+static/img/Tiles/Wood/72.gif
+static/img/Tiles/Wood/83.gif
+static/img/Tiles/Wood/51.gif
+static/img/Tiles/Wood/43.gif
+static/img/Tiles/Wood/23.gif
+static/img/Tiles/Wood/60.gif
+static/img/Tiles/Wood/21.gif
+static/img/Tiles/Wood/62.gif
+static/img/Tiles/Wood/82.gif
+static/img/Tiles/Wood/20.gif
+static/img/Tiles/Wood/52.gif
+static/img/Tiles/Wood/71.gif
+static/img/Tiles/Wood/31.gif
+static/img/Tiles/Wood/33.gif
+static/img/Tiles/Wood/42.gif
+static/img/Tiles/Wood/81.gif
+static/img/Tiles/Wood/70.gif
+static/img/Tiles/Wood/40.gif
+static/img/Tiles/Wood/80.gif
+static/img/Tiles/Wood/30.gif
+static/img/Tiles/Wood/50.gif
+static/img/Tiles/Soil/53.gif
+static/img/Tiles/Soil/32.gif
+static/img/Tiles/Soil/63.gif
+static/img/Tiles/Soil/73.gif
+static/img/Tiles/Soil/41.gif
+static/img/Tiles/Soil/10.gif
+static/img/Tiles/Soil/22.gif
+static/img/Tiles/Soil/61.gif
+static/img/Tiles/Soil/72.gif
+static/img/Tiles/Soil/83.gif
+static/img/Tiles/Soil/51.gif
+static/img/Tiles/Soil/43.gif
+static/img/Tiles/Soil/23.gif
+static/img/Tiles/Soil/60.gif
+static/img/Tiles/Soil/21.gif
+static/img/Tiles/Soil/62.gif
+static/img/Tiles/Soil/82.gif
+static/img/Tiles/Soil/20.gif
+static/img/Tiles/Soil/52.gif
+static/img/Tiles/Soil/71.gif
+static/img/Tiles/Soil/31.gif
+static/img/Tiles/Soil/33.gif
+static/img/Tiles/Soil/42.gif
+static/img/Tiles/Soil/81.gif
+static/img/Tiles/Soil/70.gif
+static/img/Tiles/Soil/40.gif
+static/img/Tiles/Soil/80.gif
+static/img/Tiles/Soil/30.gif
+static/img/Tiles/Soil/50.gif
+static/img/Tiles/woodpattern.gif
+static/img/Tiles/Metal/53.gif
+static/img/Tiles/Metal/32.gif
+static/img/Tiles/Metal/63.gif
+static/img/Tiles/Metal/73.gif
+static/img/Tiles/Metal/41.gif
+static/img/Tiles/Metal/10.gif
+static/img/Tiles/Metal/22.gif
+static/img/Tiles/Metal/61.gif
+static/img/Tiles/Metal/72.gif
+static/img/Tiles/Metal/83.gif
+static/img/Tiles/Metal/51.gif
+static/img/Tiles/Metal/43.gif
+static/img/Tiles/Metal/23.gif
+static/img/Tiles/Metal/60.gif
+static/img/Tiles/Metal/21.gif
+static/img/Tiles/Metal/62.gif
+static/img/Tiles/Metal/82.gif
+static/img/Tiles/Metal/20.gif
+static/img/Tiles/Metal/52.gif
+static/img/Tiles/Metal/71.gif
+static/img/Tiles/Metal/31.gif
+static/img/Tiles/Metal/33.gif
+static/img/Tiles/Metal/42.gif
+static/img/Tiles/Metal/81.gif
+static/img/Tiles/Metal/70.gif
+static/img/Tiles/Metal/40.gif
+static/img/Tiles/Metal/80.gif
+static/img/Tiles/Metal/30.gif
+static/img/Tiles/Metal/50.gif
+static/img/Tiles/GrassSoil/61c.gif
+static/img/Tiles/GrassSoil/53.gif
+static/img/Tiles/GrassSoil/32.gif
+static/img/Tiles/GrassSoil/63.gif
+static/img/Tiles/GrassSoil/73.gif
+static/img/Tiles/GrassSoil/10c.gif
+static/img/Tiles/GrassSoil/41.gif
+static/img/Tiles/GrassSoil/10.gif
+static/img/Tiles/GrassSoil/22.gif
+static/img/Tiles/GrassSoil/61.gif
+static/img/Tiles/GrassSoil/43c.gif
+static/img/Tiles/GrassSoil/72.gif
+static/img/Tiles/GrassSoil/83.gif
+static/img/Tiles/GrassSoil/51.gif
+static/img/Tiles/GrassSoil/43.gif
+static/img/Tiles/GrassSoil/23.gif
+static/img/Tiles/GrassSoil/60.gif
+static/img/Tiles/GrassSoil/21.gif
+static/img/Tiles/GrassSoil/62.gif
+static/img/Tiles/GrassSoil/82.gif
+static/img/Tiles/GrassSoil/13c.gif
+static/img/Tiles/GrassSoil/20.gif
+static/img/Tiles/GrassSoil/52.gif
+static/img/Tiles/GrassSoil/71.gif
+static/img/Tiles/GrassSoil/31.gif
+static/img/Tiles/GrassSoil/33.gif
+static/img/Tiles/GrassSoil/42.gif
+static/img/Tiles/GrassSoil/81.gif
+static/img/Tiles/GrassSoil/70.gif
+static/img/Tiles/GrassSoil/40.gif
+static/img/Tiles/GrassSoil/80.gif
+static/img/Tiles/GrassSoil/30.gif
+static/img/Tiles/GrassSoil/50.gif
+static/img/Tiles/stony2pattern.gif
+static/img/Tiles/metalpattern.gif
+static/img/100.gif
\ No newline at end of file