Skip to content

Instantly share code, notes, and snippets.

@natemort
Last active August 29, 2015 14:00
Show Gist options
  • Select an option

  • Save natemort/11273654 to your computer and use it in GitHub Desktop.

Select an option

Save natemort/11273654 to your computer and use it in GitHub Desktop.
PlayerVaults serialized inventory
test:
==: org.bukkit.inventory.ItemStack
type: POTION
meta:
==: ItemMeta
meta-type: POTION
custom-effects:
- ==: PotionEffect
effect: 11
duration: 60
amplifier: 2
ambient: true
- ==: PotionEffect
effect: 12
duration: 60
amplifier: 2
ambient: true
{
"==":"org.bukkit.inventory.ItemStack",
"type":"POTION",
"meta":{
"==":"ItemMeta",
"meta-type":"POTION",
"custom-effects":[
{
"duration":60,
"effect":11,
"==":"PotionEffect",
"ambient":true,
"amplifier":2
},
{
"duration":60,
"effect":12,
"==":"PotionEffect",
"ambient":true,
"amplifier":2
}
]
}
}
{
"==":"org.bukkit.inventory.ItemStack",
"type":"POTION",
"meta":{
"==":"ItemMeta",
"meta-type":"POTION",
"custom-effects":[
{
"duration":60,
"type":{
"id":11,
"durationModifier":1,
"handle":{
"durationModifier":1,
"id":11,
"instant":false
},
"name":"DAMAGE_RESISTANCE",
"instant":false
},
"ambient":true,
"amplifier":2
},
{
"duration":60,
"type":{
"id":12,
"durationModifier":1,
"handle":{
"durationModifier":1,
"id":12,
"instant":false
},
"name":"FIRE_RESISTANCE",
"instant":false
},
"ambient":true,
"amplifier":2
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment