github.com/df-mc/dragonfly@v0.9.13/server/entity/effect/slow_falling.go (about)

     1  package effect
     2  
     3  import (
     4  	"image/color"
     5  )
     6  
     7  // SlowFalling is a lasting effect that causes the affected entity to fall very slowly.
     8  type SlowFalling struct {
     9  	nopLasting
    10  }
    11  
    12  // RGBA ...
    13  func (SlowFalling) RGBA() color.RGBA {
    14  	return color.RGBA{R: 0xf7, G: 0xf8, B: 0xe0, A: 0xff}
    15  }