github.com/df-mc/dragonfly@v0.9.13/server/entity/effect/nausea.go (about) 1 package effect 2 3 import ( 4 "image/color" 5 ) 6 7 // Nausea is a lasting effect that causes the screen to warp, similarly to when entering a nether portal. 8 type Nausea struct { 9 nopLasting 10 } 11 12 // RGBA ... 13 func (Nausea) RGBA() color.RGBA { 14 return color.RGBA{R: 0x55, G: 0x1d, B: 0x4a, A: 0xff} 15 }