mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-04 17:19:47 -04:00
Merge pull request #2812 from nemoyatpeace/patch-6
Added Ice Level to terrain generator
This commit is contained in:
commit
4329861bc4
1 changed files with 27 additions and 0 deletions
|
@ -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]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue