diff --git a/sonic-radiance.love/datas/gamedata/maps/battle/crouge/back1.png b/sonic-radiance.love/datas/gamedata/maps/battle/crouge/back1.png new file mode 100644 index 0000000..044bd91 Binary files /dev/null and b/sonic-radiance.love/datas/gamedata/maps/battle/crouge/back1.png differ diff --git a/sonic-radiance.love/datas/gamedata/maps/battle/crouge/back2.png b/sonic-radiance.love/datas/gamedata/maps/battle/crouge/back2.png new file mode 100644 index 0000000..de4c6c0 Binary files /dev/null and b/sonic-radiance.love/datas/gamedata/maps/battle/crouge/back2.png differ diff --git a/sonic-radiance.love/datas/gamedata/maps/battle/crouge/back3.png b/sonic-radiance.love/datas/gamedata/maps/battle/crouge/back3.png new file mode 100644 index 0000000..9b141af Binary files /dev/null and b/sonic-radiance.love/datas/gamedata/maps/battle/crouge/back3.png differ diff --git a/sonic-radiance.love/datas/gamedata/maps/battle/crouge/background.png b/sonic-radiance.love/datas/gamedata/maps/battle/crouge/background.png new file mode 100644 index 0000000..f6df49f Binary files /dev/null and b/sonic-radiance.love/datas/gamedata/maps/battle/crouge/background.png differ diff --git a/sonic-radiance.love/datas/gamedata/maps/battle/crouge/init.lua b/sonic-radiance.love/datas/gamedata/maps/battle/crouge/init.lua new file mode 100644 index 0000000..f485ed8 --- /dev/null +++ b/sonic-radiance.love/datas/gamedata/maps/battle/crouge/init.lua @@ -0,0 +1,14 @@ +return { + name = "Chao Ruins", + blocks = { + { 56, 128, 16, 96, "top1", "side1"}, + {248, 128, 16, 96, "top1", "side1"}, + {112, 72-16, 96, 16, "top2", "side2"}, + {112, 264-16, 96, 16, "top2", "side2"}, + }, + parallax = { + {0, 0, .4, 0, true, false, "back1"}, + {0, 79, 1, 1, true, false, "back2"}, + {0, -28, 1, 1, true, false, "back3"}, + } +} diff --git a/sonic-radiance.love/datas/gamedata/maps/battle/crouge/side1.png b/sonic-radiance.love/datas/gamedata/maps/battle/crouge/side1.png new file mode 100644 index 0000000..ad0aac3 Binary files /dev/null and b/sonic-radiance.love/datas/gamedata/maps/battle/crouge/side1.png differ diff --git a/sonic-radiance.love/datas/gamedata/maps/battle/crouge/side2.png b/sonic-radiance.love/datas/gamedata/maps/battle/crouge/side2.png new file mode 100644 index 0000000..5bb5651 Binary files /dev/null and b/sonic-radiance.love/datas/gamedata/maps/battle/crouge/side2.png differ diff --git a/sonic-radiance.love/datas/gamedata/maps/battle/crouge/top1.png b/sonic-radiance.love/datas/gamedata/maps/battle/crouge/top1.png new file mode 100644 index 0000000..b6dc8ce Binary files /dev/null and b/sonic-radiance.love/datas/gamedata/maps/battle/crouge/top1.png differ diff --git a/sonic-radiance.love/datas/gamedata/maps/battle/crouge/top2.png b/sonic-radiance.love/datas/gamedata/maps/battle/crouge/top2.png new file mode 100644 index 0000000..ca1ad6d Binary files /dev/null and b/sonic-radiance.love/datas/gamedata/maps/battle/crouge/top2.png differ diff --git a/sonic-radiance.love/scenes/test_scene/init.lua b/sonic-radiance.love/scenes/test_scene/init.lua index 28de4be..a954d8d 100644 --- a/sonic-radiance.love/scenes/test_scene/init.lua +++ b/sonic-radiance.love/scenes/test_scene/init.lua @@ -33,7 +33,7 @@ function MovePlayer:new(playerNumber, cameraMode) MovePlayer.super.new(self) self.assets:batchImport("scenes.test_scene.assets") - World(self, "battle", "cruins") + World(self, "battle", "crouge") self.world:setPlayerNumber(playerNumber) self.world.cameras:setMode(cameraMode)