Skip to content

Instantly share code, notes, and snippets.

@Greymerk
Created May 23, 2018 06:33
Show Gist options
  • Save Greymerk/d9f2bad064dd0247fd709fe91afad2de to your computer and use it in GitHub Desktop.
Save Greymerk/d9f2bad064dd0247fd709fe91afad2de to your computer and use it in GitHub Desktop.
FoolCraft 3 Minecraft Modpack Roguelike Dungeons Loot Setting
{
"name" : "fc3:loot",
"criteria" : {},
"exclusive" : false,
"loot_rules" : [
{
"level" : 0,
"loot" : [
{"data" : {"name" : "megaloot:shard_common"}}
],
"each" : false,
"quantity" : 1
},
{
"level" : 1,
"loot" : [
{"data" : {"name" : "megaloot:weaponcase_common"}, "weight" : 1},
{"data" : {"name" : "megaloot:shard_common"}, "weight" : 3}
],
"each" : true,
"quantity" : 1
},
{
"level" : 2,
"loot" : [
{"data" : {"name" : "megaloot:weaponcase_common"}, "weight" : 2},
{"data" : {"name" : "megaloot:shard_common"}, "weight" : 4},
{"data" : {"name" : "megaloot:shard_rare"}, "weight" : 3}
],
"each" : true,
"quantity" : 1
},
{
"level" : 3,
"loot" : [
{"data" : {"name" : "megaloot:shard_common"}, "weight" : 5},
{"data" : {"name" : "megaloot:shard_rare"}, "weight" : 5},
{"data" : {"name" : "megaloot:shard_epic"}, "weight" : 2},
{"data" : {"name" : "megaloot:weaponcase_common"}, "weight" : 1},
{"data" : {"name" : "megaloot:weaponcase_rare"}, "weight" : 3}
],
"each" : true,
"quantity" : 2
},
{
"level" : 4,
"loot" : [
{"data" : {"name" : "megaloot:weaponcase_common"}, "weight" : 5},
{"data" : {"name" : "megaloot:weaponcase_rare"}, "weight" : 3},
{"data" : {"name" : "megaloot:weaponcase_epic"}, "weight" : 1},
{"data" : {"name" : "megaloot:shard_common"}, "weight" : 5},
{"data" : {"name" : "megaloot:shard_rare"}, "weight" : 3},
{"data" : {"name" : "megaloot:shard_epic"}, "weight" : 1}
],
"each" : true,
"quantity" : 3
},
{
"level" : 4,
"loot" : [
{"data" : {"name" : "megaloot:weaponcase_epic"}, "weight" : 1}
],
"each" : false,
"quantity" : 1
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment