aboutsummaryrefslogtreecommitdiffstats
path: root/xml/!town.xml
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-10-21 19:56:48 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-10-21 19:56:48 -0400
commitb64aa31b4dc0c5e050c4978bae7bd43a040a368b (patch)
tree4c16f9d1eb3bac11f74508c241e76cfddabc7a19 /xml/!town.xml
parent7644b740e87053838f3c7a80e88ad192fcf1a5e2 (diff)
lua scriptable world gen
Diffstat (limited to 'xml/!town.xml')
-rw-r--r--xml/!town.xml25
1 files changed, 24 insertions, 1 deletions
diff --git a/xml/!town.xml b/xml/!town.xml
index 29673b0..26a62a1 100644
--- a/xml/!town.xml
+++ b/xml/!town.xml
@@ -12,7 +12,30 @@
<layer path="bg/dirt.png"/>
<layer path="bg/grass.png"/>
</style>
- <generation width="320"/>
+ <generation>
+ x = 0
+
+ ground = function()
+ if (x == 330) then
+ height = -1
+ else
+ if (x &lt; 10) then
+ height = 800
+ else
+ if (x &lt; 30) then
+ height = -100 * math.tan(0.08 * (x - 10) + 1.77) + 75
+ else
+ height = 60
+ end
+ end
+ end
+ x = x + 1
+ end
+
+ grass = function()
+ height = math.random(2, 7)
+ end
+ </generation>
<weather>Sunny</weather>
<link right="!town2.xml"/>
<spawnx>-300</spawnx>