Files

15 lines
323 B
Go
Raw Permalink Normal View History

2026-07-09 08:33:57 +08:00
package item
// RawGold is a raw metal resource obtained from mining gold ore.
type RawGold struct{}
// SmeltInfo ...
func (RawGold) SmeltInfo() SmeltInfo {
return newOreSmeltInfo(NewStack(GoldIngot{}, 1), 1)
}
// EncodeItem ...
func (RawGold) EncodeItem() (name string, meta int16) {
return "minecraft:raw_gold", 0
}