github.com/df-mc/dragonfly@v0.9.13/server/world/biome/snowy_taiga_mountains.go (about) 1 package biome 2 3 // SnowyTaigaMountains ... 4 type SnowyTaigaMountains struct{} 5 6 // Temperature ... 7 func (SnowyTaigaMountains) Temperature() float64 { 8 return -0.5 9 } 10 11 // Rainfall ... 12 func (SnowyTaigaMountains) Rainfall() float64 { 13 return 0.4 14 } 15 16 // String ... 17 func (SnowyTaigaMountains) String() string { 18 return "cold_taiga_mutated" 19 } 20 21 // EncodeBiome ... 22 func (SnowyTaigaMountains) EncodeBiome() int { 23 return 158 24 }