Merge pull request from nemoyatpeace/patch-6

Added Ice Level to terrain generator
This commit is contained in:
Nick Winter 2015-06-09 11:13:48 -07:00
commit 4329861bc4

View file

@ -107,6 +107,14 @@ clusters = {
'thangs': ['Mountain 1','Mountain 3']
'margin': 6
}
'ice_floor': {
'thangs': ['Firn 1', 'Firn 2', 'Firn 3', 'Firn 4', 'Firn 5', 'Firn 6']
'margin': -1
}
'ice_walls': {
'thangs': ['Ice Wall']
'margin': 6
}
}
presets = {
@ -274,6 +282,25 @@ presets = {
}
}
}
},
'ice': {
'terrainName': 'Ice'
'type': 'ice'
'floors': 'ice_floor'
'borders': 'ice_walls'
'borderNoise': 1
'borderSize': 1
'borderThickness': 1
'decorations': {
'hero': {
'num': [1, 1]
'width': 2
'height': 2
'clusters': {
'hero': [1, 1]
}
}
}
}
}