10 lines
239 B
Go
10 lines
239 B
Go
|
|
package item
|
||
|
|
|
||
|
|
// PhantomMembrane are leathery skins obtained from killing phantoms.
|
||
|
|
type PhantomMembrane struct{}
|
||
|
|
|
||
|
|
// EncodeItem ...
|
||
|
|
func (PhantomMembrane) EncodeItem() (name string, meta int16) {
|
||
|
|
return "minecraft:phantom_membrane", 0
|
||
|
|
}
|