@@ -12,17 +12,17 @@ SkyTerracotta := SurfaceRule {
1212 If (AboveSurface) Block stone
1313}
1414
15- NonHoleOrangeTerracotta := SurfaceRule { If (! Hole) Block orange_terracotta }
15+ NonHoleOrangeTerracotta := SurfaceRule { If (Not( Hole) ) Block orange_terracotta }
1616
1717TerracottaBands := SurfaceRule {
18- If (StoneDepth Floor 0 sub 0)
18+ If (StoneDepth Floor 0 Sub 0)
1919 Sequence [
20- If (YAbove Absolute(74) 1 add )
20+ If (YAbove 74 1 Add )
2121 Sequence [
22- If (or (
23- Noise minecraft:surface [-0.909, -0.5454]
24- Noise minecraft:surface [-0.1818, 0.1818]
25- Noise minecraft:surface [0.5454, 0.909]
22+ If (Or (
23+ Noise minecraft:surface [-0.909 -0.5454]
24+ Noise minecraft:surface [-0.1818 0.1818]
25+ Noise minecraft:surface [0.5454 0.909]
2626 ))
2727 Block minecraft:terracotta
2828
@@ -31,43 +31,43 @@ TerracottaBands := SurfaceRule {
3131 ]
3232}
3333
34- WhiteTerracotta := SurfaceRule { If (AboveWater -6 -1 add ) Block white_terracotta }
35- OrangeTerracotta := SurfaceRule { If (YAbove Absolute(63) 0 sub ) Block orange_terracotta }
34+ WhiteTerracotta := SurfaceRule { If (AboveWater -6 -1 Add ) Block white_terracotta }
35+ OrangeTerracotta := SurfaceRule { If (YAbove 63 0 Sub ) Block orange_terracotta }
3636StoneAndGravel := SurfaceRule {
3737 Sequence [
38- If (StoneDepth Ceiling 0 sub 0) Block stone
38+ If (StoneDepth Ceiling 0 Sub 0) Block stone
3939 Block Gravel
4040 ]
4141}
4242
4343SurfaceSands := SurfaceRule {
44- If (AboveWater -1 0 sub ) Sequence [
45- If (StoneDepth Ceiling 0 sub 0) Block minecraft:red_sandstone
44+ If (AboveWater -1 0 Sub ) Sequence [
45+ If (StoneDepth Ceiling 0 Sub 0) Block minecraft:red_sandstone
4646 Block minecraft:red_sand
4747 ]
4848}
4949
5050OrangeTerracottaEdge := SurfaceRule {
51- If ( and (
52- YAbove Absolute(63) 0 sub
53- ! YAbove Absolute(74) 1 add
51+ If ( And (
52+ YAbove 63 0 Sub
53+ Not( YAbove 74 1 Add)
5454 ) ) Block minecraft:orange_terracotta
5555}
5656
5757Badlands := SurfaceRule {
5858 If (InBadlands) Sequence [
59- If (YAbove Absolute(63) 0 sub ) Sequence [
59+ If (YAbove 63 0 Sub ) Sequence [
6060 SkyTerracotta
6161 TerracottaBands
6262 SurfaceSands
6363 NonHoleOrangeTerracotta
6464 WhiteTerracotta
6565 StoneAndGravel
6666 ]
67- If (YAbove Absolute(63) -1 add ) Sequence [
67+ If (YAbove 63 -1 Add ) Sequence [
6868 OrangeTerracottaEdge
6969 Bandlands
7070 ]
71- If (StoneDepth Floor 0 add 0) WhiteTerracotta
71+ If (StoneDepth Floor 0 Add 0) WhiteTerracotta
7272 ]
7373}
0 commit comments