github.com/df-mc/dragonfly@v0.9.13/server/world/biome/dark_forest.go (about)

     1  package biome
     2  
     3  // DarkForest ...
     4  type DarkForest struct{}
     5  
     6  // Temperature ...
     7  func (DarkForest) Temperature() float64 {
     8  	return 0.7
     9  }
    10  
    11  // Rainfall ...
    12  func (DarkForest) Rainfall() float64 {
    13  	return 0.8
    14  }
    15  
    16  // String ...
    17  func (DarkForest) String() string {
    18  	return "roofed_forest"
    19  }
    20  
    21  // EncodeBiome ...
    22  func (DarkForest) EncodeBiome() int {
    23  	return 29
    24  }