23 lines
598 B
Go
23 lines
598 B
Go
|
|
package block
|
||
|
|
|
||
|
|
// ReinforcedDeepslate is a tough decorative block that spawns in ancient cities.
|
||
|
|
type ReinforcedDeepslate struct {
|
||
|
|
solid
|
||
|
|
bassDrum
|
||
|
|
}
|
||
|
|
|
||
|
|
// BreakInfo ...
|
||
|
|
func (r ReinforcedDeepslate) BreakInfo() BreakInfo {
|
||
|
|
return newBreakInfo(55, alwaysHarvestable, nothingEffective, oneOf(r)).withBlastResistance(6000)
|
||
|
|
}
|
||
|
|
|
||
|
|
// EncodeItem ...
|
||
|
|
func (ReinforcedDeepslate) EncodeItem() (name string, meta int16) {
|
||
|
|
return "minecraft:reinforced_deepslate", 0
|
||
|
|
}
|
||
|
|
|
||
|
|
// EncodeBlock ...
|
||
|
|
func (ReinforcedDeepslate) EncodeBlock() (string, map[string]interface{}) {
|
||
|
|
return "minecraft:reinforced_deepslate", nil
|
||
|
|
}
|