9
0
mirror of https://github.com/IrisDimensions/overworld.git synced 2025-12-29 03:39:15 +00:00
This commit is contained in:
Daniel Mills
2020-05-16 01:59:32 -04:00
parent 706f560049
commit cae90b6135
824 changed files with 132 additions and 1953 deletions

View File

@@ -1,62 +0,0 @@
OCEAN,
PLAINS,
DESERT,
EXTREME_HILLS,
FOREST,
TAIGA,
SWAMPLAND,
RIVER,
HELL,
SKY,
FROZEN_OCEAN,
FROZEN_RIVER,
ICE_FLATS,
ICE_MOUNTAINS,
MUSHROOM_ISLAND,
MUSHROOM_ISLAND_SHORE,
BEACHES,
DESERT_HILLS,
FOREST_HILLS,
TAIGA_HILLS,
SMALLER_EXTREME_HILLS,
JUNGLE,
JUNGLE_HILLS,
JUNGLE_EDGE,
DEEP_OCEAN,
STONE_BEACH,
COLD_BEACH,
BIRCH_FOREST,
BIRCH_FOREST_HILLS,
ROOFED_FOREST,
TAIGA_COLD,
TAIGA_COLD_HILLS,
REDWOOD_TAIGA,
REDWOOD_TAIGA_HILLS,
EXTREME_HILLS_WITH_TREES,
SAVANNA,
SAVANNA_ROCK,
MESA,
MESA_ROCK,
MESA_CLEAR_ROCK,
VOID,
MUTATED_PLAINS,
MUTATED_DESERT,
MUTATED_EXTREME_HILLS,
MUTATED_FOREST,
MUTATED_TAIGA,
MUTATED_SWAMPLAND,
MUTATED_ICE_FLATS,
MUTATED_JUNGLE,
MUTATED_JUNGLE_EDGE,
MUTATED_BIRCH_FOREST,
MUTATED_BIRCH_FOREST_HILLS,
MUTATED_ROOFED_FOREST,
MUTATED_TAIGA_COLD,
MUTATED_REDWOOD_TAIGA,
MUTATED_REDWOOD_TAIGA_HILLS,
MUTATED_EXTREME_HILLS_WITH_TREES,
MUTATED_SAVANNA,
MUTATED_SAVANNA_ROCK,
MUTATED_MESA,
MUTATED_MESA_ROCK,
MUTATED_MESA_CLEAR_ROCK

View File

@@ -1,80 +0,0 @@
# IrisPack
The pack for iris
# Flags
Flags are for .ifl files
## `raise <int>`
Raises the schematic by X blocks upon placement such as `raise 3`
## `sink <int>`
Lowers the schematic by X blocks upon placement such as `sink 5`
## `replace <find> <replace>,<replace>,<replace>...`
Replaces one block type with one or multiple other block types
```dockerfile
# Replace ALL types of stone with STONE:3
replace STONE STONE:3
# Replace ONLY Stone (normal) with STONE:3
replace STONE:0 STONE:3
# Replace GRASS with random blocks
replace GRASS DIRT,DIRT:1,DIRT:2
```
## `no snow`
Do Not apply snow filter if this object will be placed in a snowy biome (if it already has snow)
## `no lush`
Do Not apply lush filter (vines) if this object will be placed in a lush biome (if it's already lush af)
## `no rotation`
Do Not create rotation variants of this object (always place in the direction it was saved)
## `world chance <double>`
Add additional rarity with world chance. 50% is `world chance 0.5` Use this with world radius
## `world radius <int blocks>`
Set a rarity window (radius) for this schematic. Checks rarity once per radius and either allows or denies placement depending on the check
```dockerfile
# This object will place inside of 256x256 regions 50% of the time
world rarity 0.5
world radius 128
```
## `gravity`
Apply gravity to the base block of every column and pull the higher blocks down to the terrain height. Useful for land patches or walls. **NOT SUITABLE FOR OVERHANGS SUCH AS TREES**
> Moderate Performance Impact
## `baseslope <int>`
Helps Objects identify their internal base slope. This specifies the thickness of your object base. If a tree's base is flat, baseslope should be `baseslope 0`. However if your roots extend 3 blocks down, set `baseslope 3`
## `maxslope <int>`
Computes the base of the schematic (ignores overhangs) and tries to apply on the base (say the roots of a tree) If the base requires shifting higher than the slope value, placement fails. **This does not affect how the object looks, it's just a fail condition**
Combine this with baseslope such that
```dockerfile
# Place a tree with roots on perfectly flat areas only
# This tree is perfectly flat on the bottom
baseslope 0
# Fail if the slope changes when placing the "bottom" onto the terrain
maxslope 0
```
> **High** Performance Impact
## `hydrophilic`
Completley ignores the touching fluid check. This allows objects to be placed on top of water
## `submerged`
Treats water as air instead of the height of the terrain. Allows placement UNDER water on the sea-bed surface

View File

@@ -1,19 +0,0 @@
{
"name": "Beach",
"derivative": "BEACHES",
"type": "FRONT",
"genHeight": 0,
"surface": [
"SAND"
],
"subSurface": [
"SAND",
"SAND",
"SAND",
"CLAY",
"GRAVEL"
],
"scatter":[
"STONE_BUTTON:5=0.16"
]
}

View File

@@ -1,28 +0,0 @@
{
"name": "Tropical Beach",
"derivative": "JUNGLE",
"type": "FRONT",
"genHeight": 0,
"surface": [
"CONCRETE_POWDER:4",
"CONCRETE_POWDER:0",
"SAND",
"CONCRETE_POWDER:15"
],
"surfaceScale": 0.1,
"surfaceType": "simplex",
"subSurface": [
"SAND",
"SAND",
"SAND",
"CLAY",
"GRAVEL"
],
"scatter":[
"WOOD_BUTTON:5=0.16"
],
"objects": [
"tree/palm/medium=1.74",
"tree/palm/small=4.27"
]
}

View File

@@ -1,26 +0,0 @@
{
"name": "Channel",
"derivative": "OCEAN",
"type": "FLUID",
"genHeight": -0.25,
"genAmp": 0,
"surface": [
"SAND",
"SAND",
"CLAY",
"GRAVEL"
],
"surfaceScale": 0.7,
"surfaceType": "simplex",
"subSurface": [
"SAND",
"SAND",
"SAND",
"CLAY",
"GRAVEL"
],
"subSurfaceType": "simplex",
"rock": [
"SANDSTONE"
]
}

View File

@@ -1,27 +0,0 @@
{
"name": "Deep Ocean",
"derivative": "DEEP_OCEAN",
"type": "FLUID",
"genHeight": -0.42,
"genAmp": 0.3,
"surface": [
"SAND",
"SAND",
"SAND",
"SAND",
"CLAY",
"GRAVEL"
],
"surfaceType": "simplex",
"subSurface": [
"SAND",
"SAND",
"SAND",
"CLAY",
"GRAVEL"
],
"subSurfaceType": "simplex",
"rock": [
"SANDSTONE"
]
}

View File

@@ -1,26 +0,0 @@
{
"name": "Desert",
"derivative": "DESERT",
"type": "LAND",
"region": "hot",
"genHeight": 0,
"surface": [
"SAND"
],
"subSurface": [
"SANDSTONE"
],
"rock": [
"SANDSTONE"
],
"scatter":[
"DEAD_BUSH=0.16",
"STONE_BUTTON:5=0.16"
],
"objects": [
"tree/colossal/dead/massive=0.001",
"tree/colossal/dead/superlarge=0.001",
"cactus/small/white=0.1",
"house/pyramid=0.0001"
]
}

View File

@@ -1,32 +0,0 @@
{
"name": "Desert Hills",
"derivative": "DESERT_HILLS",
"type": "LAND",
"parent": "Desert",
"region": "hot",
"genHeight": 0,
"rarity": 1.1,
"genAmplifier": 0.5,
"genScale": 1.05,
"genSwirl": 4,
"genSwirlScale": 10,
"surface": [
"SAND"
],
"subSurface": [
"SANDSTONE"
],
"rock": [
"SANDSTONE"
],
"scatter":[
"DEAD_BUSH=0.18",
"STONE_BUTTON:5=0.16"
],
"objects": [
"tree/colossal/dead/massive=0.001",
"tree/colossal/dead/superlarge=0.001",
"cactus/small/white=0.1"
]
}

View File

@@ -1,38 +0,0 @@
{
"name": "Midnight Desert",
"derivative": "MUTATED_DESERT",
"type": "LAND",
"parent": "Desert Red",
"region": "hot",
"genHeight": 0,
"rarity": 175,
"surfaceType": "simplex",
"subSurfaceType": "simplex",
"rockType": "simplex",
"surfaceScale": 0.45,
"surface": [
"CONCRETE_POWDER:10",
"CONCRETE_POWDER:11",
"CONCRETE_POWDER:15",
"CONCRETE_POWDER:15"
],
"subSurface": [
"CONCRETE:10",
"CONCRETE:11",
"CONCRETE:15"
],
"rock": [
"CONCRETE:10",
"CONCRETE:11",
"CONCRETE:15"
],
"scatter":[
"DEAD_BUSH=0.008",
"STONE_BUTTON:5=0.16"
],
"objects": [
"tree/colossal/dead/massive=0.001",
"tree/colossal/dead/superlarge=0.001",
"hands/bone/large=0.002"
]
}

View File

@@ -1,27 +0,0 @@
{
"name": "Desert Red",
"derivative": "MUTATED_DESERT",
"type": "LAND",
"parent": "Desert",
"region": "hot",
"genHeight": 0,
"rarity": 1.5,
"surface": [
"SAND:1"
],
"subSurface": [
"RED_SANDSTONE"
],
"rock": [
"RED_SANDSTONE"
],
"scatter":[
"DEAD_BUSH=0.18",
"STONE_BUTTON:5=0.16"
],
"objects": [
"tree/colossal/dead/massive=0.001",
"tree/colossal/dead/superlarge=0.001",
"cactus/small/red=0.1"
]
}

View File

@@ -1,23 +0,0 @@
{
"name": "Forest",
"derivative": "FOREST",
"type": "LAND",
"region": "temperate",
"genHeight": 0,
"lush": 0.33,
"scatter":[
"LONG_GRASS:1=0.23",
"LONG_GRASS:2=0.13",
"RED_ROSE:2=0.05",
"RED_ROSE:1=0.07",
"RED_ROSE=0.06",
"YELLOW_FLOWER=0.12",
"RED_ROSE:4=0.07",
"RED_ROSE:5=0.07",
"DOUBLE_PLANT:2=0.25"
],
"objects": [
"tree/oak/medium=1.5",
"tree/oak/small=1.2"
]
}

View File

@@ -1,32 +0,0 @@
{
"name": "Birch Forest",
"derivative": "BIRCH_FOREST",
"parent": "Forest",
"type": "LAND",
"region": "temperate",
"genHeight": 0,
"scatter":[
"LONG_GRASS:1=0.23",
"LONG_GRASS:2=0.13",
"YELLOW_FLOWER=0.2",
"RED_ROSE=0.25",
"RED_ROSE:1=0.25",
"RED_ROSE:2=0.25",
"RED_ROSE:3=0.25",
"RED_ROSE:4=0.25",
"RED_ROSE:5=0.25",
"RED_ROSE:6=0.25",
"RED_ROSE:7=0.25",
"RED_ROSE:8=0.25",
"DOUBLE_PLANT:0=0.2",
"DOUBLE_PLANT:1=0.2",
"DOUBLE_PLANT:4=0.2",
"DOUBLE_PLANT:5=0.2"
],
"objects": [
"tree/birch/large=0.2",
"tree/birch/medium=0.3",
"tree/birch/small=0.7",
"house/rustic/medium=0.005"
]
}

View File

@@ -1,38 +0,0 @@
{
"name": "Birch Forest Hills",
"derivative": "BIRCH_FOREST_HILLS",
"type": "LAND",
"region": "temperate",
"parent": "Birch Forest",
"genHeight": 0,
"rarity": 1.1,
"genAmplifier": 0.5,
"genScale": 1.05,
"genSwirl": 4,
"genSwirlScale": 10,
"scatter":[
"LONG_GRASS:1=0.23",
"LONG_GRASS:2=0.13",
"YELLOW_FLOWER=0.2",
"RED_ROSE=0.25",
"RED_ROSE:1=0.25",
"RED_ROSE:2=0.25",
"RED_ROSE:3=0.25",
"RED_ROSE:4=0.25",
"RED_ROSE:5=0.25",
"RED_ROSE:6=0.25",
"RED_ROSE:7=0.25",
"RED_ROSE:8=0.25",
"DOUBLE_PLANT:0=0.2",
"DOUBLE_PLANT:1=0.2",
"DOUBLE_PLANT:4=0.2",
"DOUBLE_PLANT:5=0.2"
],
"objects": [
"tree/birch/large=0.2",
"tree/birch/medium=0.3",
"tree/birch/small=0.7",
"house/rustic/medium=0.005"
]
}

View File

@@ -1,24 +0,0 @@
{
"name": "Dark Forest",
"derivative": "ROOFED_FOREST",
"type": "LAND",
"parent": "Forest",
"region": "temperate",
"genHeight": 0,
"lush": 0.75,
"scatter":[
"LONG_GRASS:1=0.23",
"DOUBLE_PLANT:2=0.15",
"BROWN_MUSHROOM=0.11",
"RED_MUSHROOM=0.11"
],
"objects":[
"tree/darkoak/small=0.2",
"tree/darkoak/medium=0.25",
"tree/darkoak/large=0.35",
"tree/darkjungle/large=0.31",
"tree/darkjungle/medium=0.45",
"mushroom/red=0.1",
"mushroom/purple=0.1"
]
}

View File

@@ -1,36 +0,0 @@
{
"name": "Haunted Forest",
"derivative": "MUTATED_SWAMPLAND",
"type": "LAND",
"region": "temperate",
"parent": "Dark Forest",
"genHeight": 0,
"rarity": 6.5,
"surface": [
"GRASS",
"GRASS",
"GRASS",
"GRASS",
"SOUL_SAND",
"DIRT",
"DIRT:1",
"DIRT:2"
],
"subSurface": [
"DIRT",
"DIRT:1",
"SOUL_SAND"
],
"scatter":[
"LONG_GRASS:1=0.13"
],
"surfaceType": "simplex",
"objects": [
"house/norms/medium=0.007",
"tree/fantasyoak/large=0.02",
"tree/fantasyoak/medium=0.2",
"tree/darkoak/small=0.2",
"tree/darkoak/medium=0.25",
"tree/darkoak/large=0.35"
]
}

View File

@@ -1,23 +0,0 @@
{
"name": "Forest Hills",
"derivative": "FOREST_HILLS",
"type": "LAND",
"parent": "Forest",
"region": "temperate",
"genHeight": 0,
"rarity": 1.1,
"genAmplifier": 0.5,
"genScale": 1.05,
"genSwirl": 4,
"genSwirlScale": 10,
"lush": 0.34,
"scatter": [
"LONG_GRASS:1=0.33",
"LONG_GRASS:2=0.13"
],
"objects": [
"tree/oak/medium=1.1",
"tree/oak/small=1.12",
"house/pyramid=0.01"
]
}

View File

@@ -1,27 +0,0 @@
{
"name": "Forest Mountains",
"derivative": "MUTATED_EXTREME_HILLS_WITH_TREES",
"type": "LAND",
"parent": "Forest & Mountains",
"region": "temperate",
"genHeight": 0,
"cliffScale": 0.75,
"cliffChance": 0.412,
"cliffs": true,
"lush": 0.4,
"scatter":[
"LONG_GRASS:1=0.13",
"LONG_GRASS:2=0.13",
"RED_ROSE:2=0.05",
"RED_ROSE:1=0.07",
"RED_ROSE=0.06",
"YELLOW_FLOWER=0.12",
"RED_ROSE:4=0.07",
"RED_ROSE:5=0.07",
"DOUBLE_PLANT:2=0.15"
],
"objects": [
"tree/oak/medium=0.9",
"tree/oak/small=0.9"
]
}

View File

@@ -1,20 +0,0 @@
{
"name": "Frozen Beach",
"derivative": "COLD_BEACH",
"type": "FRONT",
"genHeight": 0,
"snow": 0.21,
"surface": [
"SNOW_BLOCK"
],
"subSurface": [
"SAND",
"SAND",
"SAND",
"CLAY",
"GRAVEL"
],
"objects":[
"spire/small=0.02"
]
}

View File

@@ -1,32 +0,0 @@
{
"name": "Frozen Channel",
"derivative": "FROZEN_OCEAN",
"type": "FLUID",
"fluid": "ICE",
"genHeight": -0.25,
"genAmp": 0,
"surface": [
"ICE",
"ICE",
"ICE",
"ICE",
"CLAY",
"GRAVEL"
],
"surfaceType": "simplex",
"subSurface": [
"SAND",
"SAND",
"SAND",
"CLAY",
"GRAVEL"
],
"subSurfaceType": "simplex",
"rock": [
"SANDSTONE"
],
"objects":[
"spire/small=0.03",
"spire/medium=0.025"
]
}

View File

@@ -1,32 +0,0 @@
{
"name": "Frozen Deep Ocean",
"derivative": "FROZEN_OCEAN",
"type": "FLUID",
"fluid": "ICE",
"genHeight": -0.42,
"genAmp": 0,
"surface": [
"PACKED_ICE",
"ICE",
"ICE",
"ICE",
"CLAY",
"GRAVEL"
],
"surfaceType": "simplex",
"subSurface": [
"SAND",
"SAND",
"SAND",
"CLAY",
"GRAVEL"
],
"subSurfaceType": "simplex",
"rock": [
"SANDSTONE"
],
"objects":[
"spire/small=0.11",
"spire/medium=0.055"
]
}

View File

@@ -1,19 +0,0 @@
{
"name": "Frozen Lake",
"derivative": "FROZEN_OCEAN",
"type": "FLUID",
"fluid": "ICE",
"genHeight": -0.2,
"genAmp": 0,
"surface": [
"PACKED_ICE"
],
"subSurface": [
"STONE",
"GRAVEL"
],
"subSurfaceType": "simplex",
"objects":[
"spire/small=0.02"
]
}

View File

@@ -1,32 +0,0 @@
{
"name": "Frozen Ocean",
"derivative": "FROZEN_OCEAN",
"type": "FLUID",
"fluid": "ICE",
"genHeight": -0.25,
"genAmp": 0,
"surface": [
"PACKED_ICE",
"ICE",
"ICE",
"ICE",
"CLAY",
"GRAVEL"
],
"surfaceType": "simplex",
"subSurface": [
"SAND",
"SAND",
"SAND",
"CLAY",
"GRAVEL"
],
"subSurfaceType": "simplex",
"rock": [
"SANDSTONE"
],
"objects":[
"spire/small=0.11",
"spire/medium=0.055"
]
}

View File

@@ -1,20 +0,0 @@
{
"name": "Frozen Shore",
"derivative": "COLD_BEACH",
"type": "FRONT",
"genHeight": 0,
"snow": 0.24,
"surface": [
"SNOW_BLOCK"
],
"subSurface": [
"SAND",
"SAND",
"SAND",
"CLAY",
"GRAVEL"
],
"objects":[
"spire/small=0.02"
]
}

View File

@@ -1,23 +0,0 @@
{
"name": "Ice Forest",
"derivative": "MUTATED_ICE_FLATS",
"type": "LAND",
"parent": "Ice Plains",
"region": "snowy",
"genHeight": 0,
"rarity": 1.625,
"surface": [
"SNOW_BLOCK"
],
"snow": 1.24,
"subSurface": [
"PACKED_ICE"
],
"objects": [
"tree/evergreen/large=0.2",
"tree/evergreen/medium=0.4",
"mushroom/ice=0.05",
"spire/small=0.03",
"spire/medium=0.01"
]
}

View File

@@ -1,29 +0,0 @@
{
"name": "Ice Mountains",
"derivative": "ICE_MOUNTAINS",
"type": "LAND",
"parent": "Ice Forest",
"region": "snowy",
"genHeight": 0,
"genScale": 0.7,
"genAmplifier": 2.05,
"rarity": 3.5,
"cliffScale": 1.29,
"snow": 1.1,
"cliffChance": 0.52,
"cliffs": true,
"surface": [
"SNOW_BLOCK"
],
"subSurfaceDepth": 3,
"subSurface": [
"PACKED_ICE"
],
"rock": [
"PACKED_ICE"
],
"objects": [
"spire/small=0.13",
"spire/medium=0.01"
]
}

View File

@@ -1,21 +0,0 @@
{
"name": "Ice Plains",
"derivative": "ICE_FLATS",
"type": "LAND",
"region": "snowy",
"parent": "Cold Taiga",
"genHeight": 0,
"rarity": 1.25,
"snow": 0.74,
"surface": [
"SNOW_BLOCK"
],
"subSurface": [
"PACKED_ICE"
],
"objects": [
"spire/small=0.07",
"spire/medium=0.07",
"shack/worn=0.01"
]
}

View File

@@ -1,22 +0,0 @@
{
"name": "Ice Plains Mushrooms",
"derivative": "ICE_FLATS",
"type": "LAND",
"region": "snowy",
"genHeight": 0,
"rarity": 6,
"snow": 1.15,
"parent": "Ice Mountains",
"surface": [
"SNOW_BLOCK"
],
"subSurface": [
"PACKED_ICE"
],
"objects": [
"mushroom/ice=0.15",
"spire/small=0.07",
"spire/medium=0.07"
]
}

View File

@@ -1,26 +0,0 @@
{
"name": "Jungle",
"derivative": "JUNGLE",
"type": "LAND",
"parent": "Desert",
"region": "tropical",
"genHeight": 0,
"rarity": 1.2,
"lush": 8.5,
"scatter":[
"WOOD_BUTTON:5=0.13",
"LONG_GRASS:1=0.38",
"DOUBLE_PLANT:2=0.35",
"RED_ROSE:5=0.12"
],
"objects": [
"tree/jungle/medium=0.7",
"tree/jungle/large=0.82",
"clutt=0.7",
"tree/colossal/jungle/massive=0.0",
"tree/colossal/jungle/large=0.25",
"boulder/stone/medium=0.1",
"shack/worn=0.01",
"aesthetics/beach/islander=0.01"
]
}

View File

@@ -1,27 +0,0 @@
{
"name": "Jungle Hills",
"derivative": "JUNGLE_HILLS",
"type": "LAND",
"parent": "Jungle",
"region": "tropical",
"genHeight": 0,
"rarity": 1.1,
"lush": 8.5,
"genAmplifier": 0.5,
"genScale": 1.05,
"genSwirl": 4,
"genSwirlScale": 10,
"scatter":[
"WOOD_BUTTON:5=0.13",
"LONG_GRASS:1=0.48",
"DOUBLE_PLANT:2=0.35",
"RED_ROSE:5=0.12"
],
"objects": [
"tree/jungle/medium=1.8",
"tree/jungle/large=0.5",
"clutt=0.3",
"tentacle/slimy=0.5",
"shack/worn=0.01"
]
}

View File

@@ -1,18 +0,0 @@
{
"name": "Lake",
"derivative": "OCEAN",
"type": "FLUID",
"genHeight": -0.2,
"genAmp": 0,
"surface": [
"SAND"
],
"subSurface": [
"SAND",
"SAND",
"SAND",
"CLAY",
"GRAVEL"
],
"subSurfaceType": "simplex"
}

View File

@@ -1,16 +0,0 @@
{
"name": "Magma Shore",
"derivative": "BEACHES",
"type": "FRONT",
"genHeight": 0,
"surface": [
"CONCRETE_POWDER:15",
"CONCRETE_POWDER:7"
],
"subSurface": [
"MAGMA"
],
"scatter":[
"STONE_BUTTON:5=0.16"
]
}

View File

@@ -1,16 +0,0 @@
{
"name": "Magma Lake",
"derivative": "DESERT",
"type": "FLUID",
"fluid": "MAGMA",
"genHeight": -0.2,
"genAmp": 0,
"surface": [
"MAGMA"
],
"subSurface": [
"STONE",
"GRAVEL"
],
"subSurfaceType": "simplex"
}

View File

@@ -1,16 +0,0 @@
{
"name": "Magma Shore",
"derivative": "BEACHES",
"type": "FRONT",
"genHeight": 0,
"surface": [
"CONCRETE_POWDER:15",
"CONCRETE_POWDER:7"
],
"subSurface": [
"MAGMA"
],
"scatter":[
"STONE_BUTTON:5=0.16"
]
}

View File

@@ -1,34 +0,0 @@
{
"name": "Mesa",
"derivative": "Mesa",
"type": "LAND",
"parent": "Desert",
"genHeight": 0,
"region": "hot",
"scatter": [
"STONE_BUTTON:5=0.16"
],
"surface": [
"HARD_CLAY",
"STAINED_CLAY:1",
"STAINED_CLAY:8",
"STAINED_CLAY:12"
],
"subSurface": [
"HARD_CLAY",
"STAINED_CLAY:1",
"STAINED_CLAY:8",
"STAINED_CLAY:12"
],
"rock": [
"HARD_CLAY",
"STAINED_CLAY:1",
"STAINED_CLAY:8",
"STAINED_CLAY:12"
],
"dirtDepth": 2,
"rockDepth": 18,
"rockType": "simplex",
"dirtType": "simplex",
"surfaceType": "simplex"
}

View File

@@ -1,40 +0,0 @@
{
"name": "Mesa Blue",
"derivative": "Mesa",
"type": "LAND",
"parent": "Mesa",
"region": "hot",
"genHeight": 0,
"surface": [
"STAINED_CLAY:9",
"STAINED_CLAY:3",
"STAINED_CLAY:11",
"STAINED_CLAY:10",
"STAINED_CLAY:2",
"STAINED_CLAY:6"
],
"scatter": [
"STONE_BUTTON:5=0.16"
],
"subSurface": [
"STAINED_CLAY:9",
"STAINED_CLAY:3",
"STAINED_CLAY:11",
"STAINED_CLAY:10",
"STAINED_CLAY:2",
"STAINED_CLAY:6"
],
"rock": [
"STAINED_CLAY:9",
"STAINED_CLAY:3",
"STAINED_CLAY:11",
"STAINED_CLAY:10",
"STAINED_CLAY:2",
"STAINED_CLAY:6"
],
"dirtDepth": 2,
"rockDepth": 18,
"rockType": "simplex",
"dirtType": "simplex",
"surfaceType": "simplex"
}

View File

@@ -1,34 +0,0 @@
{
"name": "Mesa Green",
"derivative": "Mesa",
"type": "LAND",
"parent": "Mesa",
"genHeight": 0,
"region": "hot",
"surface": [
"STAINED_CLAY:4",
"STAINED_CLAY:5",
"STAINED_CLAY:13",
"STAINED_CLAY:12"
],
"scatter": [
"STONE_BUTTON:5=0.16"
],
"subSurface": [
"STAINED_CLAY:4",
"STAINED_CLAY:5",
"STAINED_CLAY:13",
"STAINED_CLAY:12"
],
"rock": [
"STAINED_CLAY:4",
"STAINED_CLAY:5",
"STAINED_CLAY:13",
"STAINED_CLAY:12"
],
"dirtDepth": 2,
"rockDepth": 18,
"rockType": "simplex",
"dirtType": "simplex",
"surfaceType": "simplex"
}

View File

@@ -1,39 +0,0 @@
{
"name": "Mesa Mountains",
"derivative": "Mesa",
"type": "LAND",
"parent": "Mesa & Mountains",
"region": "hot",
"cliffs": true,
"genHeight": 0,
"rarity": 2.83,
"genScale": 1.6,
"genAmplifier": 1.75,
"cliffScale": 0.89,
"cliffChance": 0.62,
"scatter": [
"STONE_BUTTON:5=0.16"
],
"surface": [
"HARD_CLAY",
"STAINED_CLAY:1",
"STAINED_CLAY:8",
"STAINED_CLAY:12"
],
"surfaceType": "simplex",
"rock": [
"HARD_CLAY",
"STAINED_CLAY:1",
"STAINED_CLAY:8",
"STAINED_CLAY:12"
],
"rockType": "simplex",
"rockDepth": 18,
"subSurface": [
"HARD_CLAY"
],
"surfaceScale": 1,
"subSurfaceScale": 1,
"rockScale": 1,
"subSurfaceDepth": 0
}

View File

@@ -1,32 +0,0 @@
{
"name": "Mountains",
"derivative": "EXTREME_HILLS",
"type": "LAND",
"region": "cold",
"parent": "Plains",
"genHeight": 0,
"rarity": 1,
"genScale": 0.7,
"genAmplifier": 3.1,
"cliffScale": 1.19,
"cliffChance": 0.47,
"cliffs": true,
"scatter":[
"LONG_GRASS:2=0.04",
"STONE_BUTTON:5=0.13"
],
"rock": [
"STAINED_CLAY:9",
"STONE:5",
"STONE"
],
"objects": [
"boulder/stone/medium=0.1",
"Savana/rocks=0.2",
"Savana/clutter=0.2"
],
"rockType": "simplex",
"rockDepth": 14,
"rockScale": 0.722,
"dirtDepth": 0
}

View File

@@ -1,18 +0,0 @@
{
"name": "Mushroom Lands",
"derivative": "MUSHROOM_ISLAND",
"type": "LAND",
"region": "anomaly",
"parent": "Swamp",
"genHeight": 0,
"rarity": 1.5,
"surface": [
"MYCEL"
],
"objects":[
"mushroom/red=0.23",
"mushroom/black=0.23",
"mushroom/purple=0.23",
"mushroom/greay=0.23"
]
}

View File

@@ -1,25 +0,0 @@
{
"name": "Mushroom Mountains",
"derivative": "MUSHROOM_ISLAND",
"type": "LAND",
"region": "anomaly",
"parent": "Mushroom Lands",
"genHeight": 0,
"rarity": 12,
"dirtDepth": 0,
"genScale": 0.9,
"genSwirl": 3.5,
"genAmplifier": 2.1,
"cliffScale": 1.39,
"cliffChance": 0.47,
"cliffs": true,
"surface": [
"MYCEL"
],
"objects":[
"mushroom/red=0.23",
"mushroom/black=0.23",
"mushroom/purple=0.23",
"mushroom/greay=0.23"
]
}

View File

@@ -1,27 +0,0 @@
{
"name": "Ocean",
"derivative": "OCEAN",
"type": "FLUID",
"genHeight": -0.25,
"genAmp": 0,
"surface": [
"SAND",
"SAND",
"SAND",
"SAND",
"CLAY",
"GRAVEL"
],
"surfaceType": "simplex",
"subSurface": [
"SAND",
"SAND",
"SAND",
"CLAY",
"GRAVEL"
],
"subSurfaceType": "simplex",
"rock": [
"SANDSTONE"
]
}

View File

@@ -1,23 +0,0 @@
{
"name": "Oily Beach",
"derivative": "STONE_BEACH",
"type": "FRONT",
"genHeight": 0,
"surfaceType": "simplex",
"surface": [
"CONCRETE_POWDER:12",
"CONCRETE_POWDER:12",
"CONCRETE_POWDER:12",
"CONCRETE_POWDER:1"
],
"subSurface": [
"SAND",
"SAND",
"SAND",
"CLAY",
"GRAVEL"
],
"scatter":[
"STONE_BUTTON:5=0.13"
]
}

View File

@@ -1,20 +0,0 @@
{
"name": "Oily Channel",
"derivative": "SWAMPLAND",
"type": "FLUID",
"genHeight": -0.2,
"genAmp": 0,
"surface": [
"CONCRETE:12",
"CONCRETE:12",
"CONCRETE:12",
"CONCRETE:12",
"CONCRETE:1"
],
"subSurface": [
"STONE",
"GRAVEL"
],
"subSurfaceType": "simplex",
"surfaceType": "simplex"
}

View File

@@ -1,20 +0,0 @@
{
"name": "Oily Deep Ocean",
"derivative": "SWAMPLAND",
"type": "FLUID",
"genHeight": -0.42,
"genAmp": 0,
"surface": [
"CONCRETE:12",
"CONCRETE:12",
"CONCRETE:12",
"CONCRETE:12",
"CONCRETE:1"
],
"subSurface": [
"STONE",
"GRAVEL"
],
"subSurfaceType": "simplex",
"surfaceType": "simplex"
}

View File

@@ -1,20 +0,0 @@
{
"name": "Oily Lake",
"derivative": "SWAMPLAND",
"type": "FLUID",
"genHeight": -0.2,
"genAmp": 0,
"surface": [
"CONCRETE:12",
"CONCRETE:12",
"CONCRETE:12",
"CONCRETE:12",
"CONCRETE:1"
],
"subSurface": [
"STONE",
"GRAVEL"
],
"subSurfaceType": "simplex",
"surfaceType": "simplex"
}

View File

@@ -1,20 +0,0 @@
{
"name": "Oily Ocean",
"derivative": "SWAMPLAND",
"type": "FLUID",
"genHeight": -0.2,
"genAmp": 0,
"surface": [
"CONCRETE:12",
"CONCRETE:12",
"CONCRETE:12",
"CONCRETE:12",
"CONCRETE:1"
],
"subSurface": [
"STONE",
"GRAVEL"
],
"subSurfaceType": "simplex",
"surfaceType": "simplex"
}

View File

@@ -1,23 +0,0 @@
{
"name": "Oily Shore",
"derivative": "STONE_BEACH",
"type": "FRONT",
"genHeight": 0,
"surfaceType": "simplex",
"surface": [
"CONCRETE_POWDER:12",
"CONCRETE_POWDER:12",
"CONCRETE_POWDER:12",
"CONCRETE_POWDER:1"
],
"subSurface": [
"SAND",
"SAND",
"SAND",
"CLAY",
"GRAVEL"
],
"scatter":[
"STONE_BUTTON:5=0.13"
]
}

View File

@@ -1,32 +0,0 @@
{
"name": "Plains",
"derivative": "PLAINS",
"type": "LAND",
"region": "temperate",
"genHeight": 0,
"scatter":[
"LONG_GRASS:1=0.37",
"LONG_GRASS:2=0.09",
"DOUBLE_PLANT:2=0.25",
"DOUBLE_PLANT:3=0.15",
"STONE_BUTTON:5=0.14",
"YELLOW_FLOWER=0.1",
"RED_ROSE=0.1",
"RED_ROSE:1=0.1",
"RED_ROSE:2=0.1",
"RED_ROSE:3=0.1",
"RED_ROSE:4=0.1",
"RED_ROSE:5=0.1",
"RED_ROSE:6=0.1",
"RED_ROSE:7=0.1",
"RED_ROSE:8=0.1",
"DOUBLE_PLANT:0=0.1",
"DOUBLE_PLANT:1=0.1",
"DOUBLE_PLANT:4=0.1",
"DOUBLE_PLANT:5=0.1"
],
"objects": [
"shack/worn=0.001",
"haybale=0.0095"
]
}

View File

@@ -1,21 +0,0 @@
{
"name": "Redwood Forest",
"derivative": "REDWOOD_TAIGA",
"type": "LAND",
"parent": "Cold Taiga",
"region": "cold",
"genHeight": 0,
"surface": [
"DIRT",
"DIRT:1",
"DIRT:2"
],
"surfaceType": "simplex",
"scatter": [
"LONG_GRASS:2=0.07"
],
"objects": [
"tree/spruce/medium=2.1",
"tree/spruce/small=1.5"
]
}

View File

@@ -1,26 +0,0 @@
{
"name": "Redwood Forest Hills",
"derivative": "REDWOOD_TAIGA",
"type": "LAND",
"parent": "Cold Taiga Hills",
"region": "cold",
"genHeight": 0,
"rarity": 1.1,
"genAmplifier": 0.5,
"genScale": 1.05,
"genSwirl": 4,
"genSwirlScale": 10,
"surface": [
"DIRT",
"DIRT:1",
"DIRT:2"
],
"surfaceType": "simplex",
"scatter": [
"LONG_GRASS:2=0.07"
],
"objects": [
"tree/spruce/medium=2.1",
"tree/spruce/small=1.5"
]
}

View File

@@ -1,22 +0,0 @@
{
"name": "Serrulata",
"region": "temperate",
"derivative": "MUTATED_PLAINS",
"type": "LAND",
"parent": "Forest",
"rarity": 1.65,
"genHeight": 0,
"scatter":[
"LONG_GRASS:1=0.37",
"LONG_GRASS:2=0.09"
],
"objects": [
"tree/serrulata/bleeding/alt/medium=0.09",
"tree/serrulata/bleeding/medium=0.09",
"tree/serrulata/nobleed/medium=0.09",
"tree/serrulata/sakura/medium=0.09",
"tree/serrulata/bleeding/large=0.09",
"house/Jap/medium=0.01",
"shack/worn=0.01"
]
}

View File

@@ -1,21 +0,0 @@
{
"name": "Savanna",
"derivative": "SAVANNA",
"type": "LAND",
"parent": "Desert",
"region": "hot",
"genHeight": 0,
"scatter":[
"LONG_GRASS:1=0.28",
"DOUBLE_PLANT:2=0.12"
],
"objects":[
"tree/savana/Gen/normal=0.1",
"tree/savana/normal=0.2",
"tree/savana/small=0.2",
"Savana/rocks=0.2",
"Savana/clutter=0.1",
"shack/worn=0.0001",
"haybale=0.0095"
]
}

View File

@@ -1,25 +0,0 @@
{
"name": "Savanna Hills",
"derivative": "SAVANNA_ROCK",
"type": "LAND",
"region": "hot",
"parent": "Savanna",
"rarity": 1.1,
"genAmplifier": 0.55,
"genScale": 1.05,
"genSwirl": 4,
"genSwirlScale": 10,
"genHeight": 0,
"scatter":[
"LONG_GRASS:1=0.28",
"DOUBLE_PLANT:2=0.12"
],
"objects": [
"tree/savana/Gen/normal=0.1",
"tree/savana/normal=0.2",
"tree/savana/small=0.2",
"Savana/rocks=0.04",
"Savana/clutter=0.01",
"haybale=0.0095"
]
}

View File

@@ -1,19 +0,0 @@
{
"name": "Shore",
"derivative": "BEACHES",
"type": "FRONT",
"genHeight": 0,
"surface": [
"SAND"
],
"subSurface": [
"SAND",
"SAND",
"SAND",
"CLAY",
"GRAVEL"
],
"scatter":[
"STONE_BUTTON:5=0.15"
]
}

View File

@@ -1,28 +0,0 @@
{
"name": "Tropical Shore",
"derivative": "JUNGLE",
"type": "FRONT",
"genHeight": 0,
"surface": [
"CONCRETE_POWDER:4",
"CONCRETE_POWDER:0",
"SAND",
"CONCRETE_POWDER:15"
],
"surfaceScale": 0.1,
"surfaceType": "simplex",
"subSurface": [
"SAND",
"SAND",
"SAND",
"CLAY",
"GRAVEL"
],
"scatter":[
"WOOD_BUTTON:5=0.16"
],
"objects": [
"tree/palm/medium=1.64",
"tree/palm/small=2.27"
]
}

View File

@@ -1,38 +0,0 @@
{
"name": "Stone Mountains",
"derivative": "EXTREME_HILLS",
"type": "LAND",
"region": "cold",
"parent": "Mountains",
"genHeight": 0,
"rarity": 7.2,
"genScale": 0.6,
"genAmplifier": 2.4,
"cliffScale": 0.6,
"cliffChance": 0.47,
"cliffs": true,
"scatter":[
"WOOD_BUTTON:5=0.13"
],
"rock": [
"GRAVEL",
"STONE:5",
"STONE"
],
"surface": [
"GRAVEL",
"STONE",
"STONE:5",
"COBBLESTONE"
],
"objects": [
"boulder/stone/medium=0.1",
"Savana/rocks=0.2",
"Savana/clutter=0.2"
],
"surfaceType": "simplex",
"rockType": "simplex",
"rockDepth": 14,
"rockScale": 0.722,
"dirtDepth": 0
}

View File

@@ -1,22 +0,0 @@
{
"name": "Swamp",
"derivative": "SWAMPLAND",
"type": "LAND",
"region": "tropical",
"parent": "Jungle",
"rarity": 1.2,
"genHeight": 0,
"scatter":[
"LONG_GRASS:1=0.04",
"LONG_GRASS:2=0.03"
],
"objects": [
"/tentacle/oak=0.05",
"/tree/creepyoak/large=0.02",
"/tree/creepyoak/medium=0.9",
"tree/oak/medium=0.2",
"tree/oak/small=0.2",
"tree/colossal/willow/supermassive=0.001",
"tree/colossal/willow/dead/supermassive=0.0007"
]
}

View File

@@ -1,13 +0,0 @@
{
"name": "Taiga",
"derivative": "TAIGA",
"type": "LAND",
"region": "cold",
"genHeight": 0,
"scatter":[
"LONG_GRASS:2=0.07"
],
"objects": [
"shack/worn=0.01"
]
}

View File

@@ -1,18 +0,0 @@
{
"name": "Cold Taiga",
"derivative": "TAIGA_COLD",
"type": "LAND",
"region": "cold",
"parent": "Taiga",
"genHeight": 0,
"scatter":[
"LONG_GRASS:2=0.04"
],
"objects": [
"tree/evergreen/large=0.15",
"tree/evergreen/medium=0.21",
"shack/worn=0.01"
]
}

View File

@@ -1,20 +0,0 @@
{
"name": "Cold Taiga Hills",
"derivative": "TAIGA_COLD",
"type": "LAND",
"parent": "Cold Taiga",
"region": "cold",
"genHeight": 0,
"rarity": 1.1,
"genAmplifier": 0.5,
"genScale": 1.05,
"genSwirl": 4,
"genSwirlScale": 10,
"scatter":[
"LONG_GRASS:2=0.04"
],
"objects": [
"tree/evergreen/large=0.15",
"tree/evergreen/medium=0.21"
]
}

View File

@@ -1,41 +0,0 @@
{
"name": "Tourmaline",
"region": "anomaly",
"derivative": "MUTATED_PLAINS",
"type": "LAND",
"genHeight": 0,
"parent": "Mushroom Mountains",
"rarity": 113,
"surface": [
"CONCRETE:15",
"OBSIDIAN",
"CONCRETE:7",
"CONCRETE_POWDER:15"
],
"subSurface": [
"CONCRETE:15",
"OBSIDIAN",
"CONCRETE:7",
"CONCRETE_POWDER:15"
],
"rock": [
"CONCRETE:15",
"OBSIDIAN",
"CONCRETE:7",
"CONCRETE_POWDER:15"
],
"surfaceType": "simplex",
"rockType": "simplex",
"subSurfaceType": "simplex",
"rockDepth": 3,
"dirtDepth": 1,
"surfaceScale": 1.125,
"objects": [
"tree/tourmaline/large=0.1",
"tree/tourmaline/medium=0.1",
"tree/tourmaline/TProblem/large=0.0005",
"house/tourmaline/medium=0.01",
"bush/TClutter/medium=0.5",
"bush/TClutter/small=0.5"
]
}

View File

@@ -1,45 +0,0 @@
{
"name": "Volcanic",
"derivative": "DESERT",
"type": "LAND",
"parent": "Jungle Hills",
"genHeight": 0,
"rarity": 3.5,
"region": "superhot",
"cliffScale": 0.76,
"genScale": 0.6,
"genAmplifier": 1.15,
"cliffChance": 0.352,
"cliffs": true,
"subSurface": [
"CONCRETE_POWDER:15"
],
"surface":[
"STAINED_CLAY:15",
"STAINED_CLAY:15",
"CONCRETE:15",
"CONCRETE:15",
"CONCRETE:15",
"CONCRETE:15",
"CONCRETE:15",
"CONCRETE:15",
"CONCRETE:15"
],
"rock":[
"STAINED_CLAY:15",
"STAINED_CLAY:15",
"CONCRETE:15",
"CONCRETE:15",
"CONCRETE:15",
"CONCRETE:15",
"CONCRETE:15",
"CONCRETE:15",
"CONCRETE:15"
],
"objects": [
"spire/magma=0.07"
],
"rockDepth": 21,
"surfaceType": "simplex",
"rockType": "simplex"
}

View File

@@ -1,71 +0,0 @@
{
"name": "Overworld",
"environment": "normal",
"biomes": [
"ocean",
"deep_ocean",
"lake",
"shore",
"beach",
"channel",
"frozen_deep_ocean",
"frozen_ocean",
"frozen_lake",
"frozen_shore",
"frozen_beach",
"frozen_channel",
"oily_shore",
"oily_lake",
"oily_ocean",
"oily_deep_ocean",
"oily_channel",
"oily_beach",
"magma_shore",
"magma_lake",
"magma_beach",
"beach_tropical",
"shore_tropical",
"desert",
"desert_midnight",
"desert_red",
"desert_hills",
"mesa",
"mesa_mountains",
"mesa_blue",
"mesa_green",
"savanna",
"savanna_hills",
"ice_forest",
"volcanic",
"jungle",
"jungle_hills",
"swamp",
"plains",
"forest",
"forest_hills",
"forest_mountains",
"forest_haunted",
"forest_birch",
"forest_birch_hills",
"forest_dark",
"taiga",
"taiga_cold",
"mushroom_lands",
"mushroom_mountains",
"taiga_cold_hills",
"mountains",
"ice_plains",
"ice_mountains",
"redwood_forest",
"redwood_forest_hills",
"ice_plains_mushrooms",
"sakura",
"tourmaline",
"stone_mountains"
]
}

View File

@@ -0,0 +1,23 @@
{
"name": "Beach",
"layers": [
{
"minHeight": 3,
"maxHeight": 6,
"palette": [
"SAND"
]
},
{
"minHeight": 1,
"maxHeight": 3,
"palette": [
"DIRT"
]
}
],
"derivative": "BEACH",
"heightExponent": 1,
"highHeight": 2,
"lowHeight": -1
}

View File

@@ -0,0 +1,30 @@
{
"name": "Ocean",
"layers": [
{
"minHeight": 3,
"maxHeight": 6,
"palette": [
"SAND"
]
},
{
"palette": [
"DIRT"
]
},
{
"minHeight": 1,
"maxHeight": 3,
"palette": [
"DIRT",
"DIRT",
"COARSE_DIRT"
]
}
],
"derivative": "OCEAN",
"heightExponent": 1,
"highHeight": 0,
"lowHeight": -32
}

View File

@@ -0,0 +1,39 @@
{
"name": "Plains",
"layers": [
{
"palette": [
"GRASS_BLOCK"
]
},
{
"palette": [
"DIRT"
]
},
{
"minHeight": 1,
"maxHeight": 3,
"palette": [
"DIRT",
"DIRT",
"COARSE_DIRT"
]
}
],
"objects": [
{
"place": [
"small/SmolBoi"
],
"chance": 0.2
}
],
"children": [
"rolling_plains"
],
"derivative": "PLAINS",
"heightExponent": 1,
"highHeight": 7,
"lowHeight": 4
}

View File

@@ -0,0 +1,25 @@
{
"environment": "NORMAL",
"fluidHeight": 63,
"biomeZoom": 4,
"dimensionAngleDeg": 0,
"terrainZoom": 1,
"interpolationFunction": "BILINEAR",
"interpolationScale": 34,
"interpolationSurfaceFunction": "BILINEAR",
"interpolationSurfaceScale": 24,
"roughnessHeight": 1,
"coordFractureZoom": 2,
"coordFractureDistance": 222,
"hermiteTension": 1,
"landZoom": 4,
"debugFastPregen": true,
"seaZoom": 0.3,
"continentZoom": 0.2,
"hermiteBias": 0.5,
"placeObjects": true,
"roughnessZoom": 1,
"regions": [
"temperate"
]
}

View File

@@ -0,0 +1,15 @@
{
"name": "Temperate",
"shoreRatio": 0.05,
"biomeImplosionRatio": 0.25,
"landBiomes": [
"plains",
"oak_forest"
],
"seaBiomes": [
"ocean"
],
"shoreBiomes": [
"beach"
]
}

View File

@@ -1,5 +0,0 @@
{
"dimensions":[
"overworld"
]
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1,3 +0,0 @@
sink 3
replace BRICK AIR
priority 200

Binary file not shown.

Binary file not shown.

View File

@@ -1,2 +0,0 @@
sink 8
replace STATIONARY_WATER AIR

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1 +0,0 @@
sink 9

Some files were not shown because too many files have changed in this diff Show More