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