Skip to content

Commit

Permalink
Merge pull request #773 from devs-immortal/sun_worldgen
Browse files Browse the repository at this point in the history
build.gradle fixes, worldgen
  • Loading branch information
MBatt1 authored Aug 13, 2023
2 parents a397486 + b37e0fd commit 8ed299e
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 18 deletions.
19 changes: 15 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ repositories {
url = uri("https://maven.terraformersmc.com/releases/")
}

maven {
name = "Ladysnake"
url = uri("https://ladysnake.jfrog.io/artifactory/mods")
}
//maven {
// name = "Ladysnake"
// url = uri("https://ladysnake.jfrog.io/artifactory/mods")
//}

maven {
name = "Shedaniel"
Expand Down Expand Up @@ -81,6 +81,10 @@ repositories {
name = "Gudenau"
url = uri("https://maven.gudenau.net")
}
maven {
name = "Ladysnake Mods"
url = uri("https://maven.ladysnake.org/releases")
}
}

dependencies {
Expand Down Expand Up @@ -162,12 +166,19 @@ dependencies {
name = "cloth-config-fabric",
version = clothConfigVersion,
)
modImplementation(
group = "dev.onyxstudios.cardinal-components-api",
name = "cardinal-components-base",
version = cardinalComponentsVersion,
)

modRuntimeOnly(
group = "com.terraformersmc",
name = "modmenu",
version = modmenuVersion,
)
// Adds a dependency on the base cardinal components module (required by every other module)
// Replace modImplementation with modApi if you expose components in your own API

// modRuntimeOnly(
// group = "me.shedaniel",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
"argument1": {
"type": "minecraft:y_clamped_gradient",
"from_y": 320,
"to_y": 70,
"to_y": 90,
"from_value": -100,
"to_value": -1
},
"argument2": {
"type": "minecraft:add",
"argument1": {
"type": "minecraft:y_clamped_gradient",
"from_y": 70,
"to_y": -200,
"from_y": 90,
"to_y": 40,
"from_value": 0,
"to_value": -3
},
Expand All @@ -26,7 +26,7 @@
"argument": {
"type": "minecraft:noise",
"noise": "paradise_lost:generator/erosion",
"xz_scale": 0.5,
"xz_scale": 2,
"y_scale": 1
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": "minecraft:noise",
"noise": "paradise_lost:generator/elevation",
"xz_scale": 1,
"y_scale": 1
"y_scale": 0.25
}
},
"argument2": {
Expand All @@ -17,7 +17,7 @@
"type": "minecraft:square",
"argument": {
"type": "minecraft:y_clamped_gradient",
"from_y": 130,
"from_y": 110,
"to_y": 320,
"from_value": 1,
"to_value": 0
Expand All @@ -27,8 +27,8 @@
"type": "minecraft:square",
"argument": {
"type": "minecraft:y_clamped_gradient",
"from_y": 0,
"to_y": 120,
"from_y": 64,
"to_y": 100,
"from_value": 0,
"to_value": 1
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"type": "minecraft:noise",
"noise": "paradise_lost:generator/ridges",
"xz_scale": 1,
"y_scale": 1
"y_scale": 2
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
{
"type": "minecraft:add",
"argument1": {
"type": "minecraft:y_clamped_gradient",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sea_level": -54,
"sea_level": 0,
"disable_mob_generation": false,
"aquifers_enabled": false,
"ore_veins_enabled": false,
Expand All @@ -8,16 +8,16 @@
"Name": "paradise_lost:floestone"
},
"default_fluid": {
"Name": "minecraft:water",
"Name": "minecraft:air",
"Properties": {
"level": "8"
}
},
"noise": {
"min_y": -32,
"height": 320,
"size_horizontal": 1,
"size_vertical": 2
"size_horizontal": 4,
"size_vertical": 1
},
"noise_router": {
"barrier": 0,
Expand Down

0 comments on commit 8ed299e

Please sign in to comment.