summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAki <nthirtyone@gmail.com>2016-08-01 14:55:22 +0200
committerAki <nthirtyone@gmail.com>2016-08-01 14:55:22 +0200
commit516c4c1cac0adc4dd9efec29f4fb29c8d85f07ce (patch)
tree5533eca3b0db61ee0ef795f3b18ae2f5ec2a5c3b
parent8f0af7d599b47423b06216682bfaeb7e02b87b21 (diff)
downloadroflnauts-516c4c1cac0adc4dd9efec29f4fb29c8d85f07ce.zip
roflnauts-516c4c1cac0adc4dd9efec29f4fb29c8d85f07ce.tar.gz
roflnauts-516c4c1cac0adc4dd9efec29f4fb29c8d85f07ce.tar.bz2
Map assets files change
-rw-r--r--assets/backgrounds/aug.pngbin0 -> 12180 bytes
-rw-r--r--assets/backgrounds/ribbit.pngbin0 -> 35496 bytes
-rw-r--r--assets/backgrounds/rill.pngbin0 -> 17588 bytes
-rw-r--r--assets/platforms/Ribbit IV Platforms.pngbin0 -> 6545 bytes
-rw-r--r--assets/platforms/ribbit-bottom.pngbin0 -> 2179 bytes
-rw-r--r--assets/platforms/ribbit-left.pngbin0 -> 1679 bytes
-rw-r--r--assets/platforms/ribbit-right.pngbin0 -> 1324 bytes
-rw-r--r--assets/platforms/ribbit-top.pngbin0 -> 1429 bytes
-rw-r--r--maps/default.lua4
-rw-r--r--maps/ribbit.lua45
-rw-r--r--maps/rill.lua4
11 files changed, 49 insertions, 4 deletions
diff --git a/assets/backgrounds/aug.png b/assets/backgrounds/aug.png
new file mode 100644
index 0000000..7a213da
--- /dev/null
+++ b/assets/backgrounds/aug.png
Binary files differ
diff --git a/assets/backgrounds/ribbit.png b/assets/backgrounds/ribbit.png
new file mode 100644
index 0000000..29680c9
--- /dev/null
+++ b/assets/backgrounds/ribbit.png
Binary files differ
diff --git a/assets/backgrounds/rill.png b/assets/backgrounds/rill.png
new file mode 100644
index 0000000..d0a387c
--- /dev/null
+++ b/assets/backgrounds/rill.png
Binary files differ
diff --git a/assets/platforms/Ribbit IV Platforms.png b/assets/platforms/Ribbit IV Platforms.png
new file mode 100644
index 0000000..8cbf27d
--- /dev/null
+++ b/assets/platforms/Ribbit IV Platforms.png
Binary files differ
diff --git a/assets/platforms/ribbit-bottom.png b/assets/platforms/ribbit-bottom.png
new file mode 100644
index 0000000..cb05646
--- /dev/null
+++ b/assets/platforms/ribbit-bottom.png
Binary files differ
diff --git a/assets/platforms/ribbit-left.png b/assets/platforms/ribbit-left.png
new file mode 100644
index 0000000..0ad3d08
--- /dev/null
+++ b/assets/platforms/ribbit-left.png
Binary files differ
diff --git a/assets/platforms/ribbit-right.png b/assets/platforms/ribbit-right.png
new file mode 100644
index 0000000..5b1d066
--- /dev/null
+++ b/assets/platforms/ribbit-right.png
Binary files differ
diff --git a/assets/platforms/ribbit-top.png b/assets/platforms/ribbit-top.png
new file mode 100644
index 0000000..66f5831
--- /dev/null
+++ b/assets/platforms/ribbit-top.png
Binary files differ
diff --git a/maps/default.lua b/maps/default.lua
index ee64830..4dcc1b5 100644
--- a/maps/default.lua
+++ b/maps/default.lua
@@ -15,7 +15,7 @@ return {
},
-- GRAPHICS
clouds = true,
- background = "assets/background-default.png",
+ background = "assets/backgrounds/default.png",
platforms = {
{
x = -91,
@@ -43,4 +43,4 @@ return {
}
},
decorations = {}
-} \ No newline at end of file
+}
diff --git a/maps/ribbit.lua b/maps/ribbit.lua
new file mode 100644
index 0000000..3480845
--- /dev/null
+++ b/maps/ribbit.lua
@@ -0,0 +1,45 @@
+return {
+ -- GENERAL
+ name = "ribbit",
+ center_x = 0,
+ center_y = 50,
+ width = 360,
+ height = 240,
+ -- RESPAWN POINTS
+ respawns = {
+ {x = -15, y = -80},
+ {x = -5, y = -80},
+ {x = 5, y = -80},
+ {x = 15, y = -80}
+ },
+ -- GRAPHICS
+ clouds = true,
+ background = "assets/backgrounds/ribbit.png",
+ platforms = {
+ {
+ x = -154,
+ y = 10,
+ shape = {1,13, 48,13, 48,32, 1,32},
+ sprite = "assets/platforms/ribbit-left.png"
+ },
+ {
+ x = 67,
+ y = 7,
+ shape = {36,14, 83,14, 83,29, 36,29},
+ sprite = "assets/platforms/ribbit-right.png"
+ },
+ {
+ x = -70,
+ y = -5,
+ shape = {0,3, 140,3, 132,26, 8,26},
+ sprite = "assets/platforms/ribbit-top.png"
+ },
+ {
+ x = -54,
+ y = 63,
+ shape = {0,4, 108,4, 84,41, 24,41},
+ sprite = "assets/platforms/ribbit-bottom.png"
+ }
+ },
+ decorations = {}
+} \ No newline at end of file
diff --git a/maps/rill.lua b/maps/rill.lua
index bf915d3..9e87af9 100644
--- a/maps/rill.lua
+++ b/maps/rill.lua
@@ -14,7 +14,7 @@ return {
},
-- GRAPHICS
clouds = false,
- background = "assets/background-rill.png",
+ background = "assets/backgrounds/rill.png",
platforms = {
{
x = -120,
@@ -48,4 +48,4 @@ return {
}
},
decorations = {}
-} \ No newline at end of file
+}