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
23 lines
527 B
Go
23 lines
527 B
Go
package item
|
|
|
|
import "github.com/sandertv/gophertunnel/minecraft/text"
|
|
|
|
// ResinBrick is an item used to create resin bricks. It can also be used as a
|
|
// smithing ingredient, giving orange details to pieces of armour.
|
|
type ResinBrick struct{}
|
|
|
|
// EncodeItem ...
|
|
func (ResinBrick) EncodeItem() (name string, meta int16) {
|
|
return "minecraft:resin_brick", 0
|
|
}
|
|
|
|
// TrimMaterial ...
|
|
func (ResinBrick) TrimMaterial() string {
|
|
return "resin"
|
|
}
|
|
|
|
// MaterialColour ...
|
|
func (ResinBrick) MaterialColour() string {
|
|
return text.Resin
|
|
}
|