diff --git a/Surprise Dungeon.yyp b/Surprise Dungeon.yyp index 6593aec..ccc903b 100644 --- a/Surprise Dungeon.yyp +++ b/Surprise Dungeon.yyp @@ -11,12 +11,13 @@ {"id":{"name":"r1","path":"rooms/r1/r1.yy",},"order":11,}, {"id":{"name":"r6","path":"rooms/r6/r6.yy",},"order":16,}, {"id":{"name":"rType","path":"rooms/rType/rType.yy",},"order":0,}, - {"id":{"name":"sPlayerRun","path":"sprites/sPlayerRun/sPlayerRun.yy",},"order":4,}, + {"id":{"name":"sPlayerRun","path":"sprites/sPlayerRun/sPlayerRun.yy",},"order":1,}, {"id":{"name":"oMonsterMelee","path":"objects/oMonsterMelee/oMonsterMelee.yy",},"order":2,}, {"id":{"name":"rTestVal","path":"rooms/rTestVal/rTestVal.yy",},"order":2,}, {"id":{"name":"r8","path":"rooms/r8/r8.yy",},"order":18,}, {"id":{"name":"sStone","path":"sprites/sStone/sStone.yy",},"order":5,}, {"id":{"name":"oMaudit","path":"objects/oMaudit/oMaudit.yy",},"order":2,}, + {"id":{"name":"r0","path":"rooms/r0/r0.yy",},"order":21,}, {"id":{"name":"r9","path":"rooms/r9/r9.yy",},"order":19,}, {"id":{"name":"oMonster","path":"objects/oMonster/oMonster.yy",},"order":1,}, {"id":{"name":"oWall","path":"objects/oWall/oWall.yy",},"order":3,}, @@ -24,6 +25,7 @@ {"id":{"name":"r3","path":"rooms/r3/r3.yy",},"order":13,}, {"id":{"name":"rTestRick","path":"rooms/rTestRick/rTestRick.yy",},"order":1,}, {"id":{"name":"sSwordh","path":"sprites/sSwordh/sSwordh.yy",},"order":2,}, + {"id":{"name":"sPlayerAttackSlash","path":"sprites/sPlayerAttackSlash/sPlayerAttackSlash.yy",},"order":2,}, {"id":{"name":"sPlayer","path":"sprites/sPlayer/sPlayer.yy",},"order":0,}, {"id":{"name":"r7","path":"rooms/r7/r7.yy",},"order":17,}, {"id":{"name":"sCoffre","path":"sprites/sCoffre/sCoffre.yy",},"order":9,}, @@ -66,6 +68,7 @@ {"roomId":{"name":"r8","path":"rooms/r8/r8.yy",},}, {"roomId":{"name":"r9","path":"rooms/r9/r9.yy",},}, {"roomId":{"name":"r10","path":"rooms/r10/r10.yy",},}, + {"roomId":{"name":"r0","path":"rooms/r0/r0.yy",},}, ], "Folders": [ {"folderPath":"folders/Sprites.yy","order":0,"resourceVersion":"1.0","name":"Sprites","tags":[],"resourceType":"GMFolder",}, @@ -85,6 +88,7 @@ {"folderPath":"folders/Sprites/Monsters.yy","order":1,"resourceVersion":"1.0","name":"Monsters","tags":[],"resourceType":"GMFolder",}, {"folderPath":"folders/Objects/Entity.yy","order":1,"resourceVersion":"1.0","name":"Entity","tags":[],"resourceType":"GMFolder",}, {"folderPath":"folders/Rooms/rooms.yy","order":4,"resourceVersion":"1.0","name":"rooms","tags":[],"resourceType":"GMFolder",}, + {"folderPath":"folders/Sprites/Player.yy","order":15,"resourceVersion":"1.0","name":"Player","tags":[],"resourceType":"GMFolder",}, ], "AudioGroups": [ {"targets":461609314234257646,"resourceVersion":"1.0","name":"audiogroup_default","resourceType":"GMAudioGroup",}, diff --git a/objects/oGame/Create_0.gml b/objects/oGame/Create_0.gml index c358ff9..1bf1031 100644 --- a/objects/oGame/Create_0.gml +++ b/objects/oGame/Create_0.gml @@ -1,10 +1,19 @@ /// @description Insérez la description ici // Vous pouvez écrire votre code dans cet éditeur -// Tentative de tableau +for (i = 0; i < 4; i++) +{ + for(j = 0; j < 4; j++) + { + tableau[i, j] = irandom(10); + } +} +global.difficulty = 1; +global.minutes = 1; +global.secondes = 20; +perdu = false; - - -// Tableau 3*3 ou 4*4 \ No newline at end of file +posX = irandom(3); +posY = irandom(3); \ No newline at end of file diff --git a/objects/oGame/Draw_64.gml b/objects/oGame/Draw_64.gml index a1d2ac2..871be7b 100644 --- a/objects/oGame/Draw_64.gml +++ b/objects/oGame/Draw_64.gml @@ -1,11 +1,13 @@ // draw_text(16,16,oPlayer.pv); -for (i = 0; i < 64; i+= 16) +for (i = 0; i < 4; i++) { - for(j = 0; j < 64; j+= 16) + for(j = 0; j < 4; j++) { - tableau[i, j] = 1; - draw_text(i,j,tableau[i, j]); + draw_text(i*16,j*16,tableau[i, j]); } } + +if (!perdu) draw_text(160,16, string(global.minutes) + " : " + string(global.secondes)); +else draw_text(160,16, "PERDU"); \ No newline at end of file diff --git a/objects/oGame/KeyPress_69.gml b/objects/oGame/KeyPress_69.gml new file mode 100644 index 0000000..8478ef8 --- /dev/null +++ b/objects/oGame/KeyPress_69.gml @@ -0,0 +1,8 @@ +for (i = 0; i < 4; i++) +{ + for(j = 0; j < 4; j++) + { + tableau[i, j] = irandom(10); + + } +} \ No newline at end of file diff --git a/objects/oGame/Step_0.gml b/objects/oGame/Step_0.gml new file mode 100644 index 0000000..ace9267 --- /dev/null +++ b/objects/oGame/Step_0.gml @@ -0,0 +1,13 @@ +// chrono +if (!perdu) { + global.secondes -= 1/room_speed; + + if (global.secondes <= 0) { + global.minutes --; + global.secondes = 20; + } + + if (global.minutes <= 0) { + perdu = true; + } +} \ No newline at end of file diff --git a/objects/oGame/oGame.yy b/objects/oGame/oGame.yy index a63cfc5..b4022f9 100644 --- a/objects/oGame/oGame.yy +++ b/objects/oGame/oGame.yy @@ -20,6 +20,8 @@ "eventList": [ {"isDnD":false,"eventNum":64,"eventType":8,"collisionObjectId":null,"parent":{"name":"oGame","path":"objects/oGame/oGame.yy",},"resourceVersion":"1.0","name":"","tags":[],"resourceType":"GMEvent",}, {"isDnD":false,"eventNum":0,"eventType":0,"collisionObjectId":null,"parent":{"name":"oGame","path":"objects/oGame/oGame.yy",},"resourceVersion":"1.0","name":"","tags":[],"resourceType":"GMEvent",}, + {"isDnD":false,"eventNum":69,"eventType":9,"collisionObjectId":null,"parent":{"name":"oGame","path":"objects/oGame/oGame.yy",},"resourceVersion":"1.0","name":"","tags":[],"resourceType":"GMEvent",}, + {"isDnD":false,"eventNum":0,"eventType":3,"collisionObjectId":null,"parent":{"name":"oGame","path":"objects/oGame/oGame.yy",},"resourceVersion":"1.0","name":"","tags":[],"resourceType":"GMEvent",}, ], "properties": [], "overriddenProperties": [], diff --git a/rooms/r0/r0.yy b/rooms/r0/r0.yy new file mode 100644 index 0000000..7577b9d --- /dev/null +++ b/rooms/r0/r0.yy @@ -0,0 +1,211 @@ +{ + "isDnd": false, + "volume": 1.0, + "parentRoom": { + "name": "rType", + "path": "rooms/rType/rType.yy", + }, + "views": [ + {"inherit":true,"visible":true,"xview":0,"yview":0,"wview":432,"hview":240,"xport":0,"yport":0,"wport":1366,"hport":768,"hborder":32,"vborder":32,"hspeed":-1,"vspeed":-1,"objectId":null,}, + {"inherit":true,"visible":false,"xview":0,"yview":0,"wview":1366,"hview":768,"xport":0,"yport":0,"wport":1366,"hport":768,"hborder":32,"vborder":32,"hspeed":-1,"vspeed":-1,"objectId":null,}, + {"inherit":true,"visible":false,"xview":0,"yview":0,"wview":1366,"hview":768,"xport":0,"yport":0,"wport":1366,"hport":768,"hborder":32,"vborder":32,"hspeed":-1,"vspeed":-1,"objectId":null,}, + {"inherit":true,"visible":false,"xview":0,"yview":0,"wview":1366,"hview":768,"xport":0,"yport":0,"wport":1366,"hport":768,"hborder":32,"vborder":32,"hspeed":-1,"vspeed":-1,"objectId":null,}, + {"inherit":true,"visible":false,"xview":0,"yview":0,"wview":1366,"hview":768,"xport":0,"yport":0,"wport":1366,"hport":768,"hborder":32,"vborder":32,"hspeed":-1,"vspeed":-1,"objectId":null,}, + {"inherit":true,"visible":false,"xview":0,"yview":0,"wview":1366,"hview":768,"xport":0,"yport":0,"wport":1366,"hport":768,"hborder":32,"vborder":32,"hspeed":-1,"vspeed":-1,"objectId":null,}, + {"inherit":true,"visible":false,"xview":0,"yview":0,"wview":1366,"hview":768,"xport":0,"yport":0,"wport":1366,"hport":768,"hborder":32,"vborder":32,"hspeed":-1,"vspeed":-1,"objectId":null,}, + {"inherit":true,"visible":false,"xview":0,"yview":0,"wview":1366,"hview":768,"xport":0,"yport":0,"wport":1366,"hport":768,"hborder":32,"vborder":32,"hspeed":-1,"vspeed":-1,"objectId":null,}, + ], + "layers": [ + {"instances":[ + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_128E96C1","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":400.0,"y":48.0,"resourceVersion":"1.0","name":"inst_128E96C1","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_74EB8BED","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":400.0,"y":64.0,"resourceVersion":"1.0","name":"inst_74EB8BED","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_85FBF64","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":400.0,"y":80.0,"resourceVersion":"1.0","name":"inst_85FBF64","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_44AE8BA7","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":400.0,"y":96.0,"resourceVersion":"1.0","name":"inst_44AE8BA7","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_AF0767C","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":400.0,"y":128.0,"resourceVersion":"1.0","name":"inst_AF0767C","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_1D674547","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":400.0,"y":144.0,"resourceVersion":"1.0","name":"inst_1D674547","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_1B7C529A","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":400.0,"y":160.0,"resourceVersion":"1.0","name":"inst_1B7C529A","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_37C5028D","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":400.0,"y":176.0,"resourceVersion":"1.0","name":"inst_37C5028D","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_68A84C87","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":400.0,"y":192.0,"resourceVersion":"1.0","name":"inst_68A84C87","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_581589F0","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":400.0,"y":208.0,"resourceVersion":"1.0","name":"inst_581589F0","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_2468B1B4","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":384.0,"y":208.0,"resourceVersion":"1.0","name":"inst_2468B1B4","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_2034F009","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":368.0,"y":208.0,"resourceVersion":"1.0","name":"inst_2034F009","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_5A0FEC39","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":352.0,"y":208.0,"resourceVersion":"1.0","name":"inst_5A0FEC39","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_1DEF9F92","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":336.0,"y":208.0,"resourceVersion":"1.0","name":"inst_1DEF9F92","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_4B4C598","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":320.0,"y":208.0,"resourceVersion":"1.0","name":"inst_4B4C598","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_63578413","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":304.0,"y":208.0,"resourceVersion":"1.0","name":"inst_63578413","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_1AC85B5A","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":288.0,"y":208.0,"resourceVersion":"1.0","name":"inst_1AC85B5A","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_10B6C937","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":272.0,"y":208.0,"resourceVersion":"1.0","name":"inst_10B6C937","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_3701602","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":256.0,"y":208.0,"resourceVersion":"1.0","name":"inst_3701602","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_7203392F","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":240.0,"y":208.0,"resourceVersion":"1.0","name":"inst_7203392F","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_62484442","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":224.0,"y":208.0,"resourceVersion":"1.0","name":"inst_62484442","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_29C802CA","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":192.0,"y":208.0,"resourceVersion":"1.0","name":"inst_29C802CA","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_348C7476","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":176.0,"y":208.0,"resourceVersion":"1.0","name":"inst_348C7476","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_3D65E55","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":160.0,"y":208.0,"resourceVersion":"1.0","name":"inst_3D65E55","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_6E9A8031","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":144.0,"y":208.0,"resourceVersion":"1.0","name":"inst_6E9A8031","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_609749E6","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":128.0,"y":208.0,"resourceVersion":"1.0","name":"inst_609749E6","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_10AE8ED7","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":112.0,"y":208.0,"resourceVersion":"1.0","name":"inst_10AE8ED7","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_7FD14974","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":96.0,"y":208.0,"resourceVersion":"1.0","name":"inst_7FD14974","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_3FF3EB71","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":80.0,"y":208.0,"resourceVersion":"1.0","name":"inst_3FF3EB71","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_62EB7139","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":64.0,"y":208.0,"resourceVersion":"1.0","name":"inst_62EB7139","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_74C79D84","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":48.0,"y":208.0,"resourceVersion":"1.0","name":"inst_74C79D84","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_60ACE1AC","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":16.0,"y":192.0,"resourceVersion":"1.0","name":"inst_60ACE1AC","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_5BBC4419","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":16.0,"y":176.0,"resourceVersion":"1.0","name":"inst_5BBC4419","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_5E2F3B6B","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":16.0,"y":160.0,"resourceVersion":"1.0","name":"inst_5E2F3B6B","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_6356EA39","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":16.0,"y":144.0,"resourceVersion":"1.0","name":"inst_6356EA39","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_44DD966B","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":16.0,"y":128.0,"resourceVersion":"1.0","name":"inst_44DD966B","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_762B641","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":16.0,"y":96.0,"resourceVersion":"1.0","name":"inst_762B641","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_173831EE","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":16.0,"y":80.0,"resourceVersion":"1.0","name":"inst_173831EE","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_355E9046","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":16.0,"y":64.0,"resourceVersion":"1.0","name":"inst_355E9046","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_230AC10D","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":16.0,"y":48.0,"resourceVersion":"1.0","name":"inst_230AC10D","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_3DB3C7A1","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":16.0,"y":32.0,"resourceVersion":"1.0","name":"inst_3DB3C7A1","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_2FB92A14","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":16.0,"y":16.0,"resourceVersion":"1.0","name":"inst_2FB92A14","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_2DF234AE","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":32.0,"y":16.0,"resourceVersion":"1.0","name":"inst_2DF234AE","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_145B3429","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":48.0,"y":16.0,"resourceVersion":"1.0","name":"inst_145B3429","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_5FFF80E7","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":64.0,"y":16.0,"resourceVersion":"1.0","name":"inst_5FFF80E7","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_3046527E","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":80.0,"y":16.0,"resourceVersion":"1.0","name":"inst_3046527E","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_318A7C8F","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":96.0,"y":16.0,"resourceVersion":"1.0","name":"inst_318A7C8F","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_5E97BC99","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":112.0,"y":16.0,"resourceVersion":"1.0","name":"inst_5E97BC99","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_57814CF2","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":128.0,"y":16.0,"resourceVersion":"1.0","name":"inst_57814CF2","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_7AA3072F","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":144.0,"y":16.0,"resourceVersion":"1.0","name":"inst_7AA3072F","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_588CA1FA","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":160.0,"y":16.0,"resourceVersion":"1.0","name":"inst_588CA1FA","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_531BF997","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":176.0,"y":16.0,"resourceVersion":"1.0","name":"inst_531BF997","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_70B90038","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":192.0,"y":16.0,"resourceVersion":"1.0","name":"inst_70B90038","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_512D0FAF","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":224.0,"y":16.0,"resourceVersion":"1.0","name":"inst_512D0FAF","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_2389157A","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":240.0,"y":16.0,"resourceVersion":"1.0","name":"inst_2389157A","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_2092535F","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":256.0,"y":16.0,"resourceVersion":"1.0","name":"inst_2092535F","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_319A6FD7","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":272.0,"y":16.0,"resourceVersion":"1.0","name":"inst_319A6FD7","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_7978A252","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":288.0,"y":16.0,"resourceVersion":"1.0","name":"inst_7978A252","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_D4110BB","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":304.0,"y":16.0,"resourceVersion":"1.0","name":"inst_D4110BB","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_4E37C23","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":320.0,"y":16.0,"resourceVersion":"1.0","name":"inst_4E37C23","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_236398A2","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":336.0,"y":16.0,"resourceVersion":"1.0","name":"inst_236398A2","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_37DCEA20","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":352.0,"y":16.0,"resourceVersion":"1.0","name":"inst_37DCEA20","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_1BEF2BB2","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":368.0,"y":16.0,"resourceVersion":"1.0","name":"inst_1BEF2BB2","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_22C33455","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":384.0,"y":16.0,"resourceVersion":"1.0","name":"inst_22C33455","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_4E720ED7","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":32.0,"y":208.0,"resourceVersion":"1.0","name":"inst_4E720ED7","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_56CAC8A8","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":16.0,"y":208.0,"resourceVersion":"1.0","name":"inst_56CAC8A8","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_54D90856","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":400.0,"y":32.0,"resourceVersion":"1.0","name":"inst_54D90856","tags":[],"resourceType":"GMRInstance",}, + {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_35D0D","path":"rooms/rType/rType.yy",},"frozen":false,"ignore":false,"inheritItemSettings":true,"x":400.0,"y":16.0,"resourceVersion":"1.0","name":"inst_35D0D","tags":[],"resourceType":"GMRInstance",}, + ],"visible":true,"depth":0,"userdefinedDepth":false,"inheritLayerDepth":true,"inheritLayerSettings":true,"gridX":16,"gridY":16,"layers":[],"hierarchyFrozen":false,"resourceVersion":"1.0","name":"Instances","tags":[],"resourceType":"GMRInstanceLayer",}, + {"assets":[],"visible":true,"depth":100,"userdefinedDepth":false,"inheritLayerDepth":true,"inheritLayerSettings":true,"gridX":16,"gridY":16,"layers":[],"hierarchyFrozen":false,"resourceVersion":"1.0","name":"Assets_1","tags":[],"resourceType":"GMRAssetLayer",}, + {"tilesetId":{"name":"TileSet1","path":"tilesets/TileSet1/TileSet1.yy",},"x":0,"y":0,"tiles":{"SerialiseWidth":27,"SerialiseHeight":15,"TileSerialiseData":[ +34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, +34,1,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,34, +34,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,18,34, +34,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,18,34, +34,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,18,34, +34,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,18,34, +34,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,18,34, +34,7,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,6,34, +34,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,18,34, +34,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,18,34, +34,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,18,34, +34,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,18,34, +34,16,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,18,34, +34,31,32,32,32,32,32,32,32,32,32,32,32,5,32,32,32,32,32,32,32,32,32,32,32,33,34, +34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, +],},"visible":true,"depth":200,"userdefinedDepth":false,"inheritLayerDepth":true,"inheritLayerSettings":true,"gridX":32,"gridY":32,"layers":[],"hierarchyFrozen":false,"resourceVersion":"1.0","name":"Tiles_1","tags":[],"resourceType":"GMRTileLayer",}, + {"spriteId":null,"colour":4289967027,"x":0,"y":0,"htiled":false,"vtiled":false,"hspeed":0.0,"vspeed":0.0,"stretch":false,"animationFPS":15.0,"animationSpeedType":0,"userdefinedAnimFPS":false,"visible":true,"depth":300,"userdefinedDepth":false,"inheritLayerDepth":true,"inheritLayerSettings":true,"gridX":32,"gridY":32,"layers":[],"hierarchyFrozen":false,"resourceVersion":"1.0","name":"Background","tags":[],"resourceType":"GMRBackgroundLayer",}, + ], + "inheritLayers": true, + "creationCodeFile": "", + "inheritCode": true, + "instanceCreationOrder": [ + {"name":"inst_128E96C1","path":"rooms/r0/r0.yy",}, + {"name":"inst_74EB8BED","path":"rooms/r0/r0.yy",}, + {"name":"inst_85FBF64","path":"rooms/r0/r0.yy",}, + {"name":"inst_44AE8BA7","path":"rooms/r0/r0.yy",}, + {"name":"inst_AF0767C","path":"rooms/r0/r0.yy",}, + {"name":"inst_1D674547","path":"rooms/r0/r0.yy",}, + {"name":"inst_1B7C529A","path":"rooms/r0/r0.yy",}, + {"name":"inst_37C5028D","path":"rooms/r0/r0.yy",}, + {"name":"inst_68A84C87","path":"rooms/r0/r0.yy",}, + {"name":"inst_581589F0","path":"rooms/r0/r0.yy",}, + {"name":"inst_2468B1B4","path":"rooms/r0/r0.yy",}, + {"name":"inst_2034F009","path":"rooms/r0/r0.yy",}, + {"name":"inst_5A0FEC39","path":"rooms/r0/r0.yy",}, + {"name":"inst_1DEF9F92","path":"rooms/r0/r0.yy",}, + {"name":"inst_4B4C598","path":"rooms/r0/r0.yy",}, + {"name":"inst_63578413","path":"rooms/r0/r0.yy",}, + {"name":"inst_1AC85B5A","path":"rooms/r0/r0.yy",}, + {"name":"inst_10B6C937","path":"rooms/r0/r0.yy",}, + {"name":"inst_3701602","path":"rooms/r0/r0.yy",}, + {"name":"inst_7203392F","path":"rooms/r0/r0.yy",}, + {"name":"inst_62484442","path":"rooms/r0/r0.yy",}, + {"name":"inst_29C802CA","path":"rooms/r0/r0.yy",}, + {"name":"inst_348C7476","path":"rooms/r0/r0.yy",}, + {"name":"inst_3D65E55","path":"rooms/r0/r0.yy",}, + {"name":"inst_6E9A8031","path":"rooms/r0/r0.yy",}, + {"name":"inst_609749E6","path":"rooms/r0/r0.yy",}, + {"name":"inst_10AE8ED7","path":"rooms/r0/r0.yy",}, + {"name":"inst_7FD14974","path":"rooms/r0/r0.yy",}, + {"name":"inst_3FF3EB71","path":"rooms/r0/r0.yy",}, + {"name":"inst_62EB7139","path":"rooms/r0/r0.yy",}, + {"name":"inst_74C79D84","path":"rooms/r0/r0.yy",}, + {"name":"inst_60ACE1AC","path":"rooms/r0/r0.yy",}, + {"name":"inst_5BBC4419","path":"rooms/r0/r0.yy",}, + {"name":"inst_5E2F3B6B","path":"rooms/r0/r0.yy",}, + {"name":"inst_6356EA39","path":"rooms/r0/r0.yy",}, + {"name":"inst_44DD966B","path":"rooms/r0/r0.yy",}, + {"name":"inst_762B641","path":"rooms/r0/r0.yy",}, + {"name":"inst_173831EE","path":"rooms/r0/r0.yy",}, + {"name":"inst_355E9046","path":"rooms/r0/r0.yy",}, + {"name":"inst_230AC10D","path":"rooms/r0/r0.yy",}, + {"name":"inst_3DB3C7A1","path":"rooms/r0/r0.yy",}, + {"name":"inst_2FB92A14","path":"rooms/r0/r0.yy",}, + {"name":"inst_2DF234AE","path":"rooms/r0/r0.yy",}, + {"name":"inst_145B3429","path":"rooms/r0/r0.yy",}, + {"name":"inst_5FFF80E7","path":"rooms/r0/r0.yy",}, + {"name":"inst_3046527E","path":"rooms/r0/r0.yy",}, + {"name":"inst_318A7C8F","path":"rooms/r0/r0.yy",}, + {"name":"inst_5E97BC99","path":"rooms/r0/r0.yy",}, + {"name":"inst_57814CF2","path":"rooms/r0/r0.yy",}, + {"name":"inst_7AA3072F","path":"rooms/r0/r0.yy",}, + {"name":"inst_588CA1FA","path":"rooms/r0/r0.yy",}, + {"name":"inst_531BF997","path":"rooms/r0/r0.yy",}, + {"name":"inst_70B90038","path":"rooms/r0/r0.yy",}, + {"name":"inst_512D0FAF","path":"rooms/r0/r0.yy",}, + {"name":"inst_2389157A","path":"rooms/r0/r0.yy",}, + {"name":"inst_2092535F","path":"rooms/r0/r0.yy",}, + {"name":"inst_319A6FD7","path":"rooms/r0/r0.yy",}, + {"name":"inst_7978A252","path":"rooms/r0/r0.yy",}, + {"name":"inst_D4110BB","path":"rooms/r0/r0.yy",}, + {"name":"inst_4E37C23","path":"rooms/r0/r0.yy",}, + {"name":"inst_236398A2","path":"rooms/r0/r0.yy",}, + {"name":"inst_37DCEA20","path":"rooms/r0/r0.yy",}, + {"name":"inst_1BEF2BB2","path":"rooms/r0/r0.yy",}, + {"name":"inst_22C33455","path":"rooms/r0/r0.yy",}, + {"name":"inst_4E720ED7","path":"rooms/r0/r0.yy",}, + {"name":"inst_56CAC8A8","path":"rooms/r0/r0.yy",}, + {"name":"inst_54D90856","path":"rooms/r0/r0.yy",}, + {"name":"inst_35D0D","path":"rooms/r0/r0.yy",}, + ], + "inheritCreationOrder": true, + "sequenceId": null, + "roomSettings": { + "inheritRoomSettings": true, + "Width": 432, + "Height": 240, + "persistent": false, + }, + "viewSettings": { + "inheritViewSettings": true, + "enableViews": true, + "clearViewBackground": false, + "clearDisplayBuffer": true, + }, + "physicsSettings": { + "inheritPhysicsSettings": true, + "PhysicsWorld": false, + "PhysicsWorldGravityX": 0.0, + "PhysicsWorldGravityY": 10.0, + "PhysicsWorldPixToMetres": 0.1, + }, + "parent": { + "name": "rooms", + "path": "folders/Rooms/rooms.yy", + }, + "resourceVersion": "1.0", + "name": "r0", + "tags": [], + "resourceType": "GMRoom", +} \ No newline at end of file diff --git a/rooms/r10/r10.yy b/rooms/r10/r10.yy index 4771f96..c1d9396 100644 --- a/rooms/r10/r10.yy +++ b/rooms/r10/r10.yy @@ -87,13 +87,13 @@ {"properties":[],"isDnd":false,"objectId":{"name":"oWall","path":"objects/oWall/oWall.yy",},"inheritCode":true,"hasCreationCode":false,"colour":4294967295,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"imageIndex":0,"imageSpeed":1.0,"inheritedItemId":{"name":"inst_35D0D","path":"rooms/rType/rType.yy",},"frozen":true,"ignore":false,"inheritItemSettings":true,"x":400.0,"y":16.0,"resourceVersion":"1.0","name":"inst_35D0D","tags":[],"resourceType":"GMRInstance",}, ],"visible":true,"depth":0,"userdefinedDepth":false,"inheritLayerDepth":true,"inheritLayerSettings":true,"gridX":16,"gridY":16,"layers":[],"hierarchyFrozen":true,"resourceVersion":"1.0","name":"Instances","tags":[],"resourceType":"GMRInstanceLayer",}, {"assets":[ - {"ignore":false,"spriteId":{"name":"sBox","path":"sprites/sBox/sBox.yy",},"headPosition":0.0,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"animationSpeed":1.0,"colour":4294967295,"inheritedItemId":null,"frozen":false,"inheritItemSettings":false,"x":496.0,"y":160.0,"resourceVersion":"1.0","name":"graphic_4011F901","tags":[],"resourceType":"GMRSpriteGraphic",}, - {"ignore":false,"spriteId":{"name":"sStone","path":"sprites/sStone/sStone.yy",},"headPosition":0.0,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"animationSpeed":1.0,"colour":4294967295,"inheritedItemId":null,"frozen":false,"inheritItemSettings":false,"x":480.0,"y":256.0,"resourceVersion":"1.0","name":"graphic_F2E4D0A","tags":[],"resourceType":"GMRSpriteGraphic",}, - {"ignore":false,"spriteId":{"name":"sTrou","path":"sprites/sTrou/sTrou.yy",},"headPosition":0.0,"rotation":-89.7793,"scaleX":5.0,"scaleY":6.0,"animationSpeed":1.0,"colour":4294967295,"inheritedItemId":null,"frozen":false,"inheritItemSettings":false,"x":272.0,"y":64.0,"resourceVersion":"1.0","name":"graphic_6DC4DE6","tags":[],"resourceType":"GMRSpriteGraphic",}, - {"ignore":false,"spriteId":{"name":"sBox","path":"sprites/sBox/sBox.yy",},"headPosition":0.0,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"animationSpeed":1.0,"colour":4294967295,"inheritedItemId":null,"frozen":false,"inheritItemSettings":false,"x":384.0,"y":32.0,"resourceVersion":"1.0","name":"graphic_546E8ACD","tags":[],"resourceType":"GMRSpriteGraphic",}, - {"ignore":false,"spriteId":{"name":"sFire","path":"sprites/sFire/sFire.yy",},"headPosition":0.0,"rotation":0.0,"scaleX":5.0,"scaleY":5.0,"animationSpeed":1.0,"colour":4294967295,"inheritedItemId":null,"frozen":false,"inheritItemSettings":false,"x":288.0,"y":64.0,"resourceVersion":"1.0","name":"graphic_1041DA39","tags":[],"resourceType":"GMRSpriteGraphic",}, - {"ignore":false,"spriteId":{"name":"sBox","path":"sprites/sBox/sBox.yy",},"headPosition":0.0,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"animationSpeed":1.0,"colour":4294967295,"inheritedItemId":null,"frozen":false,"inheritItemSettings":false,"x":240.0,"y":32.0,"resourceVersion":"1.0","name":"graphic_14BBE4A2","tags":[],"resourceType":"GMRSpriteGraphic",}, - {"ignore":false,"spriteId":{"name":"sBox","path":"sprites/sBox/sBox.yy",},"headPosition":0.0,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"animationSpeed":1.0,"colour":4294967295,"inheritedItemId":null,"frozen":false,"inheritItemSettings":false,"x":384.0,"y":160.0,"resourceVersion":"1.0","name":"graphic_67A548E","tags":[],"resourceType":"GMRSpriteGraphic",}, + {"spriteId":{"name":"sBox","path":"sprites/sBox/sBox.yy",},"headPosition":0.0,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"animationSpeed":1.0,"colour":4294967295,"inheritedItemId":null,"frozen":false,"ignore":false,"inheritItemSettings":false,"x":496.0,"y":160.0,"resourceVersion":"1.0","name":"graphic_4011F901","tags":[],"resourceType":"GMRSpriteGraphic",}, + {"spriteId":{"name":"sStone","path":"sprites/sStone/sStone.yy",},"headPosition":0.0,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"animationSpeed":1.0,"colour":4294967295,"inheritedItemId":null,"frozen":false,"ignore":false,"inheritItemSettings":false,"x":480.0,"y":256.0,"resourceVersion":"1.0","name":"graphic_F2E4D0A","tags":[],"resourceType":"GMRSpriteGraphic",}, + {"spriteId":{"name":"sTrou","path":"sprites/sTrou/sTrou.yy",},"headPosition":0.0,"rotation":-89.7793,"scaleX":5.0,"scaleY":6.0,"animationSpeed":1.0,"colour":4294967295,"inheritedItemId":null,"frozen":false,"ignore":false,"inheritItemSettings":false,"x":272.0,"y":64.0,"resourceVersion":"1.0","name":"graphic_6DC4DE6","tags":[],"resourceType":"GMRSpriteGraphic",}, + {"spriteId":{"name":"sBox","path":"sprites/sBox/sBox.yy",},"headPosition":0.0,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"animationSpeed":1.0,"colour":4294967295,"inheritedItemId":null,"frozen":false,"ignore":false,"inheritItemSettings":false,"x":384.0,"y":32.0,"resourceVersion":"1.0","name":"graphic_546E8ACD","tags":[],"resourceType":"GMRSpriteGraphic",}, + {"spriteId":{"name":"sFire","path":"sprites/sFire/sFire.yy",},"headPosition":0.0,"rotation":0.0,"scaleX":5.0,"scaleY":5.0,"animationSpeed":1.0,"colour":4294967295,"inheritedItemId":null,"frozen":false,"ignore":false,"inheritItemSettings":false,"x":288.0,"y":64.0,"resourceVersion":"1.0","name":"graphic_1041DA39","tags":[],"resourceType":"GMRSpriteGraphic",}, + {"spriteId":{"name":"sBox","path":"sprites/sBox/sBox.yy",},"headPosition":0.0,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"animationSpeed":1.0,"colour":4294967295,"inheritedItemId":null,"frozen":false,"ignore":false,"inheritItemSettings":false,"x":240.0,"y":32.0,"resourceVersion":"1.0","name":"graphic_14BBE4A2","tags":[],"resourceType":"GMRSpriteGraphic",}, + {"spriteId":{"name":"sBox","path":"sprites/sBox/sBox.yy",},"headPosition":0.0,"rotation":0.0,"scaleX":1.0,"scaleY":1.0,"animationSpeed":1.0,"colour":4294967295,"inheritedItemId":null,"frozen":false,"ignore":false,"inheritItemSettings":false,"x":384.0,"y":160.0,"resourceVersion":"1.0","name":"graphic_67A548E","tags":[],"resourceType":"GMRSpriteGraphic",}, ],"visible":true,"depth":100,"userdefinedDepth":false,"inheritLayerDepth":true,"inheritLayerSettings":true,"gridX":16,"gridY":16,"layers":[],"hierarchyFrozen":false,"resourceVersion":"1.0","name":"Assets_1","tags":[],"resourceType":"GMRAssetLayer",}, {"tilesetId":{"name":"TileSet1","path":"tilesets/TileSet1/TileSet1.yy",},"x":0,"y":0,"tiles":{"SerialiseWidth":27,"SerialiseHeight":15,"TileSerialiseData":[ 34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34, diff --git a/sprites/sBox/sBox.yy b/sprites/sBox/sBox.yy index aef56a1..248dcf8 100644 --- a/sprites/sBox/sBox.yy +++ b/sprites/sBox/sBox.yy @@ -8,9 +8,9 @@ "collisionTolerance": 0, "swfPrecision": 2.525, "bbox_left": 0, - "bbox_right": 15, + "bbox_right": 0, "bbox_top": 0, - "bbox_bottom": 15, + "bbox_bottom": 0, "HTile": false, "VTile": false, "For3D": false, diff --git a/sprites/sPlayerAttackSlash/ccaea034-d086-4581-acee-7bebeb4538f7.png b/sprites/sPlayerAttackSlash/ccaea034-d086-4581-acee-7bebeb4538f7.png index 9ba4ac0..91f30b0 100644 Binary files a/sprites/sPlayerAttackSlash/ccaea034-d086-4581-acee-7bebeb4538f7.png and b/sprites/sPlayerAttackSlash/ccaea034-d086-4581-acee-7bebeb4538f7.png differ diff --git a/sprites/sPlayerAttackSlash/layers/ccaea034-d086-4581-acee-7bebeb4538f7/2e505114-44ce-42e6-a96b-b49244d2db3a.png b/sprites/sPlayerAttackSlash/layers/ccaea034-d086-4581-acee-7bebeb4538f7/2e505114-44ce-42e6-a96b-b49244d2db3a.png index 5293d66..8e1177c 100644 Binary files a/sprites/sPlayerAttackSlash/layers/ccaea034-d086-4581-acee-7bebeb4538f7/2e505114-44ce-42e6-a96b-b49244d2db3a.png and b/sprites/sPlayerAttackSlash/layers/ccaea034-d086-4581-acee-7bebeb4538f7/2e505114-44ce-42e6-a96b-b49244d2db3a.png differ diff --git a/sprites/sPlayerAttackSlash/sPlayerAttackSlash.yy b/sprites/sPlayerAttackSlash/sPlayerAttackSlash.yy index 169896e..851a40c 100644 --- a/sprites/sPlayerAttackSlash/sPlayerAttackSlash.yy +++ b/sprites/sPlayerAttackSlash/sPlayerAttackSlash.yy @@ -17,8 +17,8 @@ "width": 60, "height": 30, "textureGroupId": { - "name": "Default", - "path": "texturegroups/Default", + "name": "", + "path": "", }, "swatchColours": null, "gridX": 0, @@ -130,8 +130,8 @@ "backdropHeight": 1080, "backdropXOffset": 0.0, "backdropYOffset": 0.0, - "xorigin": 39, - "yorigin": 12, + "xorigin": 38, + "yorigin": 23, "eventToFunction": {}, "eventStubScript": null, "parent": {"name":"sPlayerAttackSlash","path":"sprites/sPlayerAttackSlash/sPlayerAttackSlash.yy",}, diff --git a/sprites/sPlayerRun/0b00bf7f-9aa6-421b-af3a-f589753674ae.png b/sprites/sPlayerRun/0b00bf7f-9aa6-421b-af3a-f589753674ae.png index e1f9675..6b870c6 100644 Binary files a/sprites/sPlayerRun/0b00bf7f-9aa6-421b-af3a-f589753674ae.png and b/sprites/sPlayerRun/0b00bf7f-9aa6-421b-af3a-f589753674ae.png differ diff --git a/sprites/sPlayerRun/13700370-5191-4e15-93a6-53008d2147e8.png b/sprites/sPlayerRun/13700370-5191-4e15-93a6-53008d2147e8.png index 837c8ab..59f8628 100644 Binary files a/sprites/sPlayerRun/13700370-5191-4e15-93a6-53008d2147e8.png and b/sprites/sPlayerRun/13700370-5191-4e15-93a6-53008d2147e8.png differ diff --git a/sprites/sPlayerRun/4ca98352-44b6-42ed-a674-e01f973f15e6.png b/sprites/sPlayerRun/4ca98352-44b6-42ed-a674-e01f973f15e6.png index 85aa9ba..6c35469 100644 Binary files a/sprites/sPlayerRun/4ca98352-44b6-42ed-a674-e01f973f15e6.png and b/sprites/sPlayerRun/4ca98352-44b6-42ed-a674-e01f973f15e6.png differ diff --git a/sprites/sPlayerRun/be417a15-b250-4909-9eea-a7a106fd35a6.png b/sprites/sPlayerRun/be417a15-b250-4909-9eea-a7a106fd35a6.png index 85aa9ba..6c35469 100644 Binary files a/sprites/sPlayerRun/be417a15-b250-4909-9eea-a7a106fd35a6.png and b/sprites/sPlayerRun/be417a15-b250-4909-9eea-a7a106fd35a6.png differ diff --git a/sprites/sPlayerRun/e6421b0a-9849-476a-91f1-166a9628bf54.png b/sprites/sPlayerRun/e6421b0a-9849-476a-91f1-166a9628bf54.png index 837c8ab..59f8628 100644 Binary files a/sprites/sPlayerRun/e6421b0a-9849-476a-91f1-166a9628bf54.png and b/sprites/sPlayerRun/e6421b0a-9849-476a-91f1-166a9628bf54.png differ diff --git a/sprites/sPlayerRun/f3037865-e26e-4d0c-a23c-897b057fa817.png b/sprites/sPlayerRun/f3037865-e26e-4d0c-a23c-897b057fa817.png index 2d17379..64b929b 100644 Binary files a/sprites/sPlayerRun/f3037865-e26e-4d0c-a23c-897b057fa817.png and b/sprites/sPlayerRun/f3037865-e26e-4d0c-a23c-897b057fa817.png differ diff --git a/sprites/sPlayerRun/layers/0b00bf7f-9aa6-421b-af3a-f589753674ae/387193d8-b1ff-4efd-9bcf-494281aae83a.png b/sprites/sPlayerRun/layers/0b00bf7f-9aa6-421b-af3a-f589753674ae/387193d8-b1ff-4efd-9bcf-494281aae83a.png index e1f9675..6b870c6 100644 Binary files a/sprites/sPlayerRun/layers/0b00bf7f-9aa6-421b-af3a-f589753674ae/387193d8-b1ff-4efd-9bcf-494281aae83a.png and b/sprites/sPlayerRun/layers/0b00bf7f-9aa6-421b-af3a-f589753674ae/387193d8-b1ff-4efd-9bcf-494281aae83a.png differ diff --git a/sprites/sPlayerRun/layers/13700370-5191-4e15-93a6-53008d2147e8/387193d8-b1ff-4efd-9bcf-494281aae83a.png b/sprites/sPlayerRun/layers/13700370-5191-4e15-93a6-53008d2147e8/387193d8-b1ff-4efd-9bcf-494281aae83a.png index 837c8ab..59f8628 100644 Binary files a/sprites/sPlayerRun/layers/13700370-5191-4e15-93a6-53008d2147e8/387193d8-b1ff-4efd-9bcf-494281aae83a.png and b/sprites/sPlayerRun/layers/13700370-5191-4e15-93a6-53008d2147e8/387193d8-b1ff-4efd-9bcf-494281aae83a.png differ diff --git a/sprites/sPlayerRun/layers/4ca98352-44b6-42ed-a674-e01f973f15e6/387193d8-b1ff-4efd-9bcf-494281aae83a.png b/sprites/sPlayerRun/layers/4ca98352-44b6-42ed-a674-e01f973f15e6/387193d8-b1ff-4efd-9bcf-494281aae83a.png index 85aa9ba..6c35469 100644 Binary files a/sprites/sPlayerRun/layers/4ca98352-44b6-42ed-a674-e01f973f15e6/387193d8-b1ff-4efd-9bcf-494281aae83a.png and b/sprites/sPlayerRun/layers/4ca98352-44b6-42ed-a674-e01f973f15e6/387193d8-b1ff-4efd-9bcf-494281aae83a.png differ diff --git a/sprites/sPlayerRun/layers/be417a15-b250-4909-9eea-a7a106fd35a6/387193d8-b1ff-4efd-9bcf-494281aae83a.png b/sprites/sPlayerRun/layers/be417a15-b250-4909-9eea-a7a106fd35a6/387193d8-b1ff-4efd-9bcf-494281aae83a.png index 85aa9ba..6c35469 100644 Binary files a/sprites/sPlayerRun/layers/be417a15-b250-4909-9eea-a7a106fd35a6/387193d8-b1ff-4efd-9bcf-494281aae83a.png and b/sprites/sPlayerRun/layers/be417a15-b250-4909-9eea-a7a106fd35a6/387193d8-b1ff-4efd-9bcf-494281aae83a.png differ diff --git a/sprites/sPlayerRun/layers/e6421b0a-9849-476a-91f1-166a9628bf54/387193d8-b1ff-4efd-9bcf-494281aae83a.png b/sprites/sPlayerRun/layers/e6421b0a-9849-476a-91f1-166a9628bf54/387193d8-b1ff-4efd-9bcf-494281aae83a.png index 837c8ab..59f8628 100644 Binary files a/sprites/sPlayerRun/layers/e6421b0a-9849-476a-91f1-166a9628bf54/387193d8-b1ff-4efd-9bcf-494281aae83a.png and b/sprites/sPlayerRun/layers/e6421b0a-9849-476a-91f1-166a9628bf54/387193d8-b1ff-4efd-9bcf-494281aae83a.png differ diff --git a/sprites/sPlayerRun/layers/f3037865-e26e-4d0c-a23c-897b057fa817/387193d8-b1ff-4efd-9bcf-494281aae83a.png b/sprites/sPlayerRun/layers/f3037865-e26e-4d0c-a23c-897b057fa817/387193d8-b1ff-4efd-9bcf-494281aae83a.png index 2d17379..64b929b 100644 Binary files a/sprites/sPlayerRun/layers/f3037865-e26e-4d0c-a23c-897b057fa817/387193d8-b1ff-4efd-9bcf-494281aae83a.png and b/sprites/sPlayerRun/layers/f3037865-e26e-4d0c-a23c-897b057fa817/387193d8-b1ff-4efd-9bcf-494281aae83a.png differ