diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-10-22 16:45:57 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-10-22 16:45:57 -0400 |
commit | f785f17cdb286449e8d98be747213740172629c5 (patch) | |
tree | 836d9601046f20737d2c27c35c673318adfc2f88 /xml/bobshouse.xml | |
parent | b64aa31b4dc0c5e050c4978bae7bd43a040a368b (diff) |
removed random gen, indoor changes
Diffstat (limited to 'xml/bobshouse.xml')
-rw-r--r-- | xml/bobshouse.xml | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/xml/bobshouse.xml b/xml/bobshouse.xml index d7c8172..9160ef0 100644 --- a/xml/bobshouse.xml +++ b/xml/bobshouse.xml @@ -2,7 +2,7 @@ <include file="entities.xml"/> <IndoorWorld> - <style bgm="assets/music/theme_jazz.wav" folder="assets/style/classic/"> + <style bgm="assets/music/theme_jazz.wav" folder="assets/style/indoors/"> <layer path="bg/bg.png"/> <layer path="bg/bgFarMountain.png"/> <layer path="bg/forestTileFar.png"/> @@ -10,10 +10,26 @@ <layer path="bg/forestTileMid.png"/> <layer path="bg/forestTileFront.png"/> <layer path="bg/dirt.png"/> - <layer path="bg/grass.png"/> + <layer path="bg/carpet.png"/> </style> <house width="800" texture="assets/style/classic/bg/insideWoodHouse.png"/> - <generation width="320"/> + <generation> + x = 0 + + ground = function() + if (x == 320) then + height = -1 + else + height = 60 + end + + x = x + 1 + end + + grass = function() + height = 2 + end + </generation> <time>6000</time> <!--<link outside="town.xml"/>--> <npc name="Bob" hasDialog="true" spawnx="30"/> |