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