forked from ddevault/TrueCraft
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
517 changed files
with
13,107 additions
and
14,535 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ TestResults/ | |
*.psess | ||
*.vsp | ||
packages/ | ||
.vs/ | ||
|
||
config.yaml | ||
|
||
|
Binary file not shown.
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 was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,118 +1,118 @@ | ||
namespace TrueCraft.API | ||
{ | ||
/// <summary> | ||
/// Enumerates the biomes in TrueCraft. | ||
/// Enumerates the biomes in TrueCraft. | ||
/// </summary> | ||
/// <remarks> | ||
/// The 13 vanilla b1.7.3 biomes as found on http://b.wiki.vg/json/b1.7 | ||
/// The 13 vanilla b1.7.3 biomes as found on http://b.wiki.vg/json/b1.7 | ||
/// </remarks> | ||
public enum Biome | ||
{ | ||
/// <summary> | ||
/// A plains biome. | ||
/// A plains biome. | ||
/// </summary> | ||
Plains = 0, | ||
|
||
/// <summary> | ||
/// A desert biome. | ||
/// A desert biome. | ||
/// </summary> | ||
Desert = 1, | ||
|
||
/// <summary> | ||
/// A forest biome. | ||
/// A forest biome. | ||
/// </summary> | ||
Forest = 2, | ||
|
||
/// <summary> | ||
/// A rainforest biome. | ||
/// A rainforest biome. | ||
/// </summary> | ||
Rainforest = 3, | ||
|
||
/// <summary> | ||
/// A seasonal forest biome. | ||
/// A seasonal forest biome. | ||
/// </summary> | ||
SeasonalForest = 4, | ||
|
||
/// <summary> | ||
/// A savanna biome. | ||
/// A savanna biome. | ||
/// </summary> | ||
Savanna = 5, | ||
|
||
/// <summary> | ||
/// A shrubland biome. | ||
/// A shrubland biome. | ||
/// </summary> | ||
Shrubland = 6, | ||
|
||
/// <summary> | ||
/// A swampland biome. | ||
/// A swampland biome. | ||
/// </summary> | ||
Swampland = 7, | ||
|
||
/// <summary> | ||
/// A Nether biome. | ||
/// A Nether biome. | ||
/// </summary> | ||
Hell = 8, | ||
|
||
/// <summary> | ||
/// An End biome. | ||
/// An End biome. | ||
/// </summary> | ||
/// <remarks> | ||
/// Implementation into TrueCraft is undetermined at this point | ||
/// Implementation into TrueCraft is undetermined at this point | ||
/// </remarks> | ||
Sky = 9, | ||
|
||
/// <summary> | ||
/// A taiga biome. | ||
/// A taiga biome. | ||
/// </summary> | ||
Taiga = 10, | ||
|
||
/// <summary> | ||
/// A tundra biome. | ||
/// A tundra biome. | ||
/// </summary> | ||
Tundra = 11, | ||
|
||
/// <summary> | ||
/// An ice desert biome. | ||
/// An ice desert biome. | ||
/// </summary> | ||
/// <remarks> | ||
/// Implementation into TrueCraft is undetermined at this point | ||
/// Implementation into TrueCraft is undetermined at this point | ||
/// </remarks> | ||
IceDesert = 12, | ||
|
||
//Below are "transitional" biomes/biomes which are not in b1.7.3 | ||
|
||
/// <summary> | ||
/// An ocean biome. | ||
/// An ocean biome. | ||
/// </summary> | ||
Ocean = 13, | ||
|
||
/// <summary> | ||
/// A river biome. | ||
/// A river biome. | ||
/// </summary> | ||
/// <remarks> | ||
/// Implementation into TrueCraft is undetermined at this point | ||
/// Implementation into TrueCraft is undetermined at this point | ||
/// </remarks> | ||
River = 14, | ||
|
||
/// <summary> | ||
/// A beach biome. | ||
/// A beach biome. | ||
/// </summary> | ||
/// <remarks> | ||
/// Implementation into TrueCraft is undetermined at this point | ||
/// Implementation into TrueCraft is undetermined at this point | ||
/// </remarks> | ||
Beach = 15, | ||
|
||
/// <summary> | ||
/// A frozen ocean biome. | ||
/// A frozen ocean biome. | ||
/// </summary> | ||
FrozenOcean = 16, | ||
|
||
/// <summary> | ||
/// A frozen river biome. | ||
/// A frozen river biome. | ||
/// </summary> | ||
/// <remarks> | ||
/// Implementation into TrueCraft is undetermined at this point | ||
/// Implementation into TrueCraft is undetermined at this point | ||
/// </remarks> | ||
FrozenRiver = 17, | ||
FrozenRiver = 17 | ||
} | ||
} | ||
} |
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
Oops, something went wrong.