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"
|
||||
|
||||
// DeepslateTiles are a tiled variant of deepslate and can spawn in ancient cities.
|
||||
type DeepslateTiles struct {
|
||||
solid
|
||||
bassDrum
|
||||
|
||||
// Cracked specifies if the deepslate tiles is its cracked variant.
|
||||
Cracked bool
|
||||
}
|
||||
|
||||
// BreakInfo ...
|
||||
func (d DeepslateTiles) BreakInfo() BreakInfo {
|
||||
return newBreakInfo(3.5, pickaxeHarvestable, pickaxeEffective, oneOf(d)).withBlastResistance(30)
|
||||
}
|
||||
|
||||
// SmeltInfo ...
|
||||
func (d DeepslateTiles) SmeltInfo() item.SmeltInfo {
|
||||
if d.Cracked {
|
||||
return item.SmeltInfo{}
|
||||
}
|
||||
return newSmeltInfo(item.NewStack(DeepslateTiles{Cracked: true}, 1), 0.1)
|
||||
}
|
||||
|
||||
// EncodeItem ...
|
||||
func (d DeepslateTiles) EncodeItem() (name string, meta int16) {
|
||||
if d.Cracked {
|
||||
return "minecraft:cracked_deepslate_tiles", 0
|
||||
}
|
||||
return "minecraft:deepslate_tiles", 0
|
||||
}
|
||||
|
||||
// EncodeBlock ...
|
||||
func (d DeepslateTiles) EncodeBlock() (string, map[string]any) {
|
||||
if d.Cracked {
|
||||
return "minecraft:cracked_deepslate_tiles", nil
|
||||
}
|
||||
return "minecraft:deepslate_tiles", nil
|
||||
}
|
||||
Reference in New Issue
Block a user