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