-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #864 from Team-RTG/1.7.10-dev
Merge dev into master (1.7.10-1.1.0).
- Loading branch information
Showing
35 changed files
with
1,100 additions
and
890 deletions.
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
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,61 @@ | ||
# Configuration file | ||
|
||
biome { | ||
|
||
flowercraft { | ||
|
||
phantasia { | ||
# [default: true] | ||
B:"Allow Villages"=true | ||
|
||
# [default: false] | ||
B:"Allow Volcanoes"=false | ||
|
||
# This setting controls the size of caves. | ||
# HIGHER values = BIGGER caves & MORE lag. (14 = vanilla cave density) | ||
# Set to -1 to use global setting. Set to 0 to disable caves for this biome. | ||
# [range: -1 ~ 40, default: -1] | ||
I:"Cave Density"=-1 | ||
|
||
# This setting controls the number of caves that generate. | ||
# LOWER values = MORE caves & MORE lag. (6 = vanilla cave frequency) | ||
# Set to -1 to use global setting. Set to 0 to disable caves for this biome. | ||
# [range: -1 ~ 40, default: -1] | ||
I:"Cave Frequency"=-1 | ||
|
||
# [default: ] | ||
S:"RTG Surface: Filler Block"= | ||
|
||
# [default: ] | ||
S:"RTG Surface: Filler Block Meta"= | ||
|
||
# [default: ] | ||
S:"RTG Surface: Top Block"= | ||
|
||
# [default: ] | ||
S:"RTG Surface: Top Block Meta"= | ||
|
||
# This setting controls the number of ravines that generate. | ||
# LOWER values = MORE ravines & MORE lag. (50 = vanilla ravine frequency) | ||
# Set to -1 to use global setting. Set to 0 to disable ravines for this biome. | ||
# [range: -1 ~ 100, default: -1] | ||
I:"Ravine Frequency"=-1 | ||
|
||
# [default: true] | ||
B:"Use RTG Decorations"=true | ||
|
||
# [default: true] | ||
B:"Use RTG Surfaces"=true | ||
|
||
# 1/x chance that a volcano will generate if this biome has volcanoes enabled. | ||
# 1 = Always generate if possible; 2 = 50% chance; 4 = 25% chance | ||
# Set to -1 to use global setting. Set to 0 to disable volcanoes for this biome. | ||
# [range: -1 ~ 2147483647, default: -1] | ||
I:"Volcano Chance"=-1 | ||
} | ||
|
||
} | ||
|
||
} | ||
|
||
|
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
17 changes: 17 additions & 0 deletions
17
src/main/java/rtg/api/biome/flowercraft/config/BiomeConfigFC.java
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,17 @@ | ||
package rtg.api.biome.flowercraft.config; | ||
|
||
import rtg.api.biome.BiomeConfig; | ||
|
||
public class BiomeConfigFC { | ||
|
||
public static BiomeConfig biomeConfigFCPhantasia; | ||
|
||
public static BiomeConfig[] getBiomeConfigs() { | ||
|
||
BiomeConfig[] biomeConfigs = new BiomeConfig[]{ | ||
biomeConfigFCPhantasia | ||
}; | ||
|
||
return biomeConfigs; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/main/java/rtg/api/biome/flowercraft/config/BiomeConfigFCBase.java
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,10 @@ | ||
package rtg.api.biome.flowercraft.config; | ||
|
||
import rtg.api.biome.BiomeConfig; | ||
|
||
public class BiomeConfigFCBase extends BiomeConfig { | ||
|
||
public BiomeConfigFCBase(String biomeSlug) { | ||
super("flowercraft", biomeSlug); | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
src/main/java/rtg/api/biome/flowercraft/config/BiomeConfigFCPhantasia.java
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,8 @@ | ||
package rtg.api.biome.flowercraft.config; | ||
|
||
|
||
public class BiomeConfigFCPhantasia extends BiomeConfigFCBase { | ||
public BiomeConfigFCPhantasia() { | ||
super("phantasia"); | ||
} | ||
} |
Oops, something went wrong.