-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c9ab05f
commit 6e80a0c
Showing
13 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
id: DESERT_WELLS | ||
type: FEATURE | ||
|
||
distributor: | ||
type: PADDED_GRID | ||
width: 100 | ||
padding: 45 | ||
salt: 7863 | ||
|
||
locator: | ||
type: TOP | ||
range: &range | ||
min: ${meta.yml:ocean-level} + 3 | ||
max: $meta.yml:top-y | ||
|
||
structures: | ||
distribution: | ||
type: CONSTANT | ||
structures: red_desert_well |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
if (check(3, -1, 3) != "LAND" || | ||
check(-3, -1, 3) != "LAND" || | ||
check(3, -1, -3) != "LAND" || | ||
check(-3, -1, -3) != "LAND" | ||
) fail; | ||
|
||
num depth = 3 + randomInt(3); | ||
num yTranslate = 1; | ||
structure(0,yTranslate+1,0, "red_desert_well_top", "NONE"); | ||
structure(0,yTranslate,0, "red_desert_well_bottom", "NONE"); | ||
|
||
for (num y = yTranslate; y > -depth; y = y - 1) { | ||
block(0,y,0, "minecraft:water", true, true); | ||
} |
Binary file added
BIN
+523 Bytes
structures/misc/red_desert_well/schematics/bottom/red_desert_well_bottom_1.schem
Binary file not shown.
Binary file added
BIN
+440 Bytes
structures/misc/red_desert_well/schematics/bottom/red_desert_well_bottom_2.schem
Binary file not shown.
Binary file added
BIN
+435 Bytes
structures/misc/red_desert_well/schematics/bottom/red_desert_well_bottom_3.schem
Binary file not shown.
Binary file added
BIN
+440 Bytes
structures/misc/red_desert_well/schematics/bottom/red_desert_well_bottom_4.schem
Binary file not shown.
6 changes: 6 additions & 0 deletions
6
structures/misc/red_desert_well/schematics/red_desert_well_bottom.tesf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
num random = randomInt(4); | ||
|
||
if (random == 0) structure(0,0,0, "red_desert_well_bottom_1", "NONE"); | ||
if (random == 1) structure(0,0,0, "red_desert_well_bottom_2", "NONE"); | ||
if (random == 2) structure(0,0,0, "red_desert_well_bottom_3", "NONE"); | ||
if (random == 3) structure(0,0,0, "red_desert_well_bottom_4", "NONE"); |
6 changes: 6 additions & 0 deletions
6
structures/misc/red_desert_well/schematics/red_desert_well_top.tesf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
num random = randomInt(4); | ||
|
||
if (random == 0) structure(0,0,0, "red_desert_well_top_1", "NONE", "CW_90", "CCW_90", "CW_180"); | ||
if (random == 1) structure(0,0,0, "red_desert_well_top_2", "NONE", "CW_90", "CCW_90", "CW_180"); | ||
if (random == 2) structure(0,0,0, "red_desert_well_top_3", "NONE", "CW_90", "CCW_90", "CW_180"); | ||
if (random == 3) structure(0,0,0, "red_desert_well_top_4", "NONE", "CW_90", "CCW_90", "CW_180"); |
Binary file added
BIN
+428 Bytes
structures/misc/red_desert_well/schematics/top/red_desert_well_top_1.schem
Binary file not shown.
Binary file added
BIN
+382 Bytes
structures/misc/red_desert_well/schematics/top/red_desert_well_top_2.schem
Binary file not shown.
Binary file added
BIN
+429 Bytes
structures/misc/red_desert_well/schematics/top/red_desert_well_top_3.schem
Binary file not shown.
Binary file added
BIN
+427 Bytes
structures/misc/red_desert_well/schematics/top/red_desert_well_top_4.schem
Binary file not shown.