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,41 @@
|
||||
package block
|
||||
|
||||
import "github.com/df-mc/dragonfly/server/item"
|
||||
|
||||
// DeepslateBricks are a brick variant of deepslate and can spawn in ancient cities.
|
||||
type DeepslateBricks struct {
|
||||
solid
|
||||
bassDrum
|
||||
|
||||
// Cracked specifies if the deepslate bricks is its cracked variant.
|
||||
Cracked bool
|
||||
}
|
||||
|
||||
// BreakInfo ...
|
||||
func (d DeepslateBricks) BreakInfo() BreakInfo {
|
||||
return newBreakInfo(3.5, pickaxeHarvestable, pickaxeEffective, oneOf(d)).withBlastResistance(30)
|
||||
}
|
||||
|
||||
// SmeltInfo ...
|
||||
func (d DeepslateBricks) SmeltInfo() item.SmeltInfo {
|
||||
if d.Cracked {
|
||||
return item.SmeltInfo{}
|
||||
}
|
||||
return newSmeltInfo(item.NewStack(DeepslateBricks{Cracked: true}, 1), 0.1)
|
||||
}
|
||||
|
||||
// EncodeItem ...
|
||||
func (d DeepslateBricks) EncodeItem() (name string, meta int16) {
|
||||
if d.Cracked {
|
||||
return "minecraft:cracked_deepslate_bricks", 0
|
||||
}
|
||||
return "minecraft:deepslate_bricks", 0
|
||||
}
|
||||
|
||||
// EncodeBlock ...
|
||||
func (d DeepslateBricks) EncodeBlock() (string, map[string]any) {
|
||||
if d.Cracked {
|
||||
return "minecraft:cracked_deepslate_bricks", nil
|
||||
}
|
||||
return "minecraft:deepslate_bricks", nil
|
||||
}
|
||||
Reference in New Issue
Block a user