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

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