Skip to content
Brian Rivas edited this page Oct 9, 2017 · 3 revisions

nbt is often necessary when specifying modded item data. You may need to dig for this information using NBTEdit.

NBT Types

END, BYTE, SHORT, INT, LONG, FLOAT, DOUBLE, BYTEARRAY, STRING, LIST, COMPOUND, INTARRAY

NBT Details

BYTE

  • Object
    • "type" : "BYTE"
    • "value" : int

SHORT

  • Object
    • "type" : "SHORT"
    • "value" : int

INT

  • Object
    • "type" : "INT"
    • "value" : int

LONG

  • Object
    • "type" : "LONG"
    • "value" : int

FLOAT

  • Object
    • "type" : "FLOAT"
    • "value" : double

DOUBLE

  • Object
    • "type" : "DOUBLE"
    • "value" : double

BYTEARRAY

  • Object
    • "type" : "BYTEARRAY"
    • "value" : Array
      • int

STRING

  • Object
    • "type" : "STRING"
    • "value" : string

LIST

  • Object
    • "type" : "LIST"
    • "value" : Object
      • "type : NBT (The type of NBT this list contains)
      • "value" : Array (Contains NBT type things)

INTARRAY

  • INTARRAY: Object
    • "type" : "INTARRAY"
    • "value" : Array
      • int
Clone this wiki locally