github.com/df-mc/dragonfly@v0.9.13/server/entity/effect/jump_boost.go (about) 1 package effect 2 3 import ( 4 "image/color" 5 ) 6 7 // JumpBoost is a lasting effect that causes the affected entity to be able to jump much higher, depending on 8 // the level of the effect. 9 type JumpBoost struct { 10 nopLasting 11 } 12 13 // RGBA ... 14 func (JumpBoost) RGBA() color.RGBA { 15 return color.RGBA{R: 0x22, G: 0xff, B: 0x4c, A: 0xff} 16 }