forked from Greymerk/minecraft-roguelike
-
Notifications
You must be signed in to change notification settings - Fork 1
NBT
Brian Rivas edited this page Mar 11, 2017
·
2 revisions
nbt is often necessary when specifying modded item data. You may need to dig for this information using NBTEdit.
END, BYTE, SHORT, INT, LONG, FLOAT, DOUBLE, BYTEARRAY, STRING, LIST, COMPOUND, INTARRAY
- Object
- "type" : "BYTE"
- "value" : int
- Object
- "type" : "SHORT"
- "value" : int
- Object
- "type" : "INT"
- "value" : int
- Object
- "type" : "LONG"
- "value" : int
- Object
- "type" : "FLOAT"
- "value" : double
- Object
- "type" : "DOUBLE"
- "value" : double
- Object
- "type" : "BYTEARRAY"
- "value" : Array
- int
- Object
- "type" : "STRING"
- "value" : int
- Object
- "type" : "LIST"
- "value" : Object
- "type : NBT (The type of NBT this list contains)
- "value" : Array (Contains NBT type things)
- INTARRAY: Object
- "type" : "INTARRAY"
- "value" : Array
- int