up3
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
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
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user