Files
mc/server/world/biome/dripstone_caves.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
785 B
Go

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