This is a utility mod that allows modpack developers or other players to modify the types, amounts, and y-levels of the Terramity Moondrill Cannon's item/block drops.
The function of the Moondrill Cannon is controlled through the config (moondrillcannontweaker.json). The config contains two lists, "items" and "blocks", with each of their entries being a type of item/block dropped when using the Moondrill Cannon.
Each entry contains the registry name of the block/item, the range of how many should drop ([min, max] inclusive), and the y-level from which they fall from.
This is the default config (functions identically to base Terramity):
{
"items": [
{
"name": "terramity:moonstone_rock",
"dropRange": [
60,
90
],
"yLevel": 320
},
{
"name": "terramity:opaline_moonstone",
"dropRange": [
2,
4
],
"yLevel": 320
}
],
"blocks": [
{
"name": "terramity:moonstone",
"dropRange": [
30,
40
],
"yLevel": 320
}
]
}
