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

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