50 lines
1.1 KiB
JavaScript
50 lines
1.1 KiB
JavaScript
let difficultyLoots = {
|
|
"art_of_forging:fragment_of_eden": [
|
|
{
|
|
entity: "minecraft:wither_skeleton",
|
|
difficulty: 100,
|
|
chance: 0.1
|
|
}
|
|
],
|
|
|
|
"art_of_forging:sigil_of_eden": [
|
|
{
|
|
entity: "minecraft:wither",
|
|
difficulty: 100,
|
|
chance: 0.25
|
|
}
|
|
],
|
|
|
|
"iceandfire:cockatrice_eye": [
|
|
{
|
|
entity: "iceandfire:cockatrice",
|
|
difficulty: 100,
|
|
chance: 0.5
|
|
}
|
|
],
|
|
|
|
"iceandfire:dragonsteel_ice_ingot": [
|
|
{
|
|
entity: "iceandfire:dread_lich",
|
|
difficulty: 150,
|
|
chance: 0.1
|
|
},
|
|
{
|
|
entity: "iceandfire:dread_knight",
|
|
difficulty: 150,
|
|
chance: 0.1
|
|
},
|
|
{
|
|
entity: "iceandfire:dread_thrall",
|
|
difficulty: 150,
|
|
chance: 0.05
|
|
},
|
|
{
|
|
entity: "iceandfire:dread_ghoul",
|
|
difficulty: 150,
|
|
chance: 0.05
|
|
}
|
|
]
|
|
}
|
|
|
|
global.difficultyLoots = difficultyLoots |