Spaces:
Running
on
Zero
Running
on
Zero
File size: 1,124 Bytes
5e17843 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
surface.registry.ground_collection = [
('mud', 2),
('sand', 1),
('cobble_stone', 1),
('cracked_ground', 1),
('dirt', 1),
('stone', 1),
('soil', 1),
('chunkyrock', 0),
]
surface.registry.beach = [
('sand', 10),
('cracked_ground', 1),
('dirt', 1),
('stone', 1),
('soil', 1),
]
surface.registry.eroded = [
('sand', 1),
('cracked_ground', 1),
('dirt', 1),
('stone', 1),
('soil', 1),
]
surface.registry.mountain_collection = [
('mountain', 10),
("sandstone", 2),
]
surface.registry.rock_collection = [
# ('aluminumdisp2tut', 0.5),
('stone', 1),
('mountain', 5),
# ('ice', 1),
]
surface.registry.liquid_collection = [
('water', 0.95),
# ('lava', 0.05),
]
surface.registry.lava = [
('lava', 1),
]
surface.registry.snow = [
('snow', 1),
]
surface.registry.atmosphere = [
('atmosphere_light_haze', 1),
]
surface.registry.bark = [
('bark_birch', 0.1),
('bark_random', 0.9),
#('wood', 0.01),
]
surface.registry.greenery = [
('simple_greenery', 1),
]
surface.registry.smooth_categories = 0
|