Files
mc/server/world/biome/deep_dark.go
T
TarnaWijaya 26ed99fda6
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
up3
2026-07-09 08:33:57 +08:00

47 lines
769 B
Go

package biome
import "image/color"
// DeepDark ...
type DeepDark struct{}
// Temperature ...
func (DeepDark) Temperature() float64 {
return 0.8
}
// Rainfall ...
func (DeepDark) Rainfall() float64 {
return 0.4
}
// Depth ...
func (DeepDark) Depth() float64 {
return 0.1
}
// Scale ...
func (DeepDark) Scale() float64 {
return 0.2
}
// WaterColour ...
func (DeepDark) WaterColour() color.RGBA {
return color.RGBA{R: 0x60, G: 0xb7, B: 0xff, A: 0xa6}
}
// Tags ...
func (DeepDark) Tags() []string {
return []string{"caves", "deep_dark", "overworld", "spawns_cold_variant_farm_animals", "spawns_cold_variant_frogs"}
}
// String ...
func (DeepDark) String() string {
return "deep_dark"
}
// EncodeBiome ...
func (DeepDark) EncodeBiome() int {
return 190
}