up3
Build and deploy / Build (push) Has been cancelled
Build and deploy / Update Contributors (push) Has been cancelled
Build and deploy / Deploy (push) Has been cancelled
Build and deploy / Build (push) Has been cancelled
Build and deploy / Update Contributors (push) Has been cancelled
Build and deploy / Deploy (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
package biome
|
||||
|
||||
import "image/color"
|
||||
|
||||
// JungleHills ...
|
||||
type JungleHills struct{}
|
||||
|
||||
// Temperature ...
|
||||
func (JungleHills) Temperature() float64 {
|
||||
return 0.95
|
||||
}
|
||||
|
||||
// Rainfall ...
|
||||
func (JungleHills) Rainfall() float64 {
|
||||
return 0.9
|
||||
}
|
||||
|
||||
// Depth ...
|
||||
func (JungleHills) Depth() float64 {
|
||||
return 0.45
|
||||
}
|
||||
|
||||
// Scale ...
|
||||
func (JungleHills) Scale() float64 {
|
||||
return 0.3
|
||||
}
|
||||
|
||||
// WaterColour ...
|
||||
func (JungleHills) WaterColour() color.RGBA {
|
||||
return color.RGBA{R: 0x1b, G: 0x9e, B: 0xd8, A: 0xa5}
|
||||
}
|
||||
|
||||
// Tags ...
|
||||
func (JungleHills) Tags() []string {
|
||||
return []string{"animal", "hills", "jungle", "monster", "overworld", "spawns_jungle_mobs", "spawns_warm_variant_farm_animals"}
|
||||
}
|
||||
|
||||
// String ...
|
||||
func (JungleHills) String() string {
|
||||
return "jungle_hills"
|
||||
}
|
||||
|
||||
// EncodeBiome ...
|
||||
func (JungleHills) EncodeBiome() int {
|
||||
return 22
|
||||
}
|
||||
Reference in New Issue
Block a user