public class SkullBlock extends BaseBlock implements TileEntityBlock
Constructor and Description |
---|
SkullBlock(int data)
Construct the skull block with a default type of skelton.
|
SkullBlock(int data,
byte type)
Construct the skull block with a given type.
|
SkullBlock(int data,
byte type,
byte rot)
Construct the skull block with a given type and rotation.
|
SkullBlock(int data,
byte rot,
java.lang.String owner)
Construct the skull block with a given rotation and owner.
|
Modifier and Type | Method and Description |
---|---|
CompoundTag |
getNbtData()
Get the object's NBT data (tile entity data).
|
java.lang.String |
getNbtId()
Return the name of the title entity ID.
|
java.lang.String |
getOwner()
Get the skull's owner.
|
byte |
getRot()
Get rotation of skull.
|
byte |
getSkullType()
Get the type of skull.
|
boolean |
hasNbtData()
Returns whether the block contains NBT data.
|
void |
setNbtData(CompoundTag rootTag)
Set the object's NBT data (tile entity data).
|
void |
setOwner(java.lang.String owner)
Set the skull's owner.
|
void |
setRot(byte rot)
Set the rotation of skull.
|
void |
setSkullType(byte skullType)
Set the type of skull;
|
containsFuzzy, cycleData, equals, equalsFuzzy, flip, flip, getData, getId, getType, hashCode, hasWildcardData, inIterable, internalSetData, internalSetId, isAir, rotate90, rotate90Reverse, setData, setId, setIdAndData, setType, toString
public SkullBlock(int data)
data
- data value to set, controls placementpublic SkullBlock(int data, byte type)
data
- data value to set, controls placementtype
- type of skullpublic SkullBlock(int data, byte type, byte rot)
data
- data value to set, controls placementtype
- type of skullrot
- rotation (if on floor)public SkullBlock(int data, byte rot, java.lang.String owner)
data
- data value to set, controls placementrot
- rotation of skullowner
- name of playerpublic void setOwner(java.lang.String owner)
owner
- player name to set the skull topublic java.lang.String getOwner()
public byte getSkullType()
public void setSkullType(byte skullType)
skullType
- the skullType to setpublic byte getRot()
public void setRot(byte rot)
rot
- the rotation to setpublic boolean hasNbtData()
NbtValued
NbtValued.getNbtData()
must not return null if this method returns true.hasNbtData
in interface NbtValued
hasNbtData
in class BaseBlock
public java.lang.String getNbtId()
TileEntityBlock
getNbtId
in interface TileEntityBlock
getNbtId
in class BaseBlock
public CompoundTag getNbtData()
NbtValued
NbtValued.setNbtData(CompoundTag)
so that the instance knows of the changes. Making changes without
calling NbtValued.setNbtData(CompoundTag)
could have unintended
consequences.
NbtValued.hasNbtData()
must return true if and only if method does
not return null.
getNbtData
in interface NbtValued
getNbtData
in class BaseBlock
public void setNbtData(CompoundTag rootTag)
NbtValued
setNbtData
in interface NbtValued
setNbtData
in class BaseBlock
rootTag
- NBT data, or null if no data