Add low-stock alerts configuration for inventory monitoring
This commit is contained in:
20
data/alerts.lua
Normal file
20
data/alerts.lua
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
-- Low-stock alerts.
|
||||||
|
-- When a tracked item drops below 'min', an alert
|
||||||
|
-- is shown on the inventory monitor.
|
||||||
|
-- Each entry: { name = "mod:item", min = N, label = "Display Name" }
|
||||||
|
|
||||||
|
return {
|
||||||
|
{ name = "minecraft:coal", min = 64, label = "Coal" },
|
||||||
|
{ name = "minecraft:charcoal", min = 64, label = "Charcoal" },
|
||||||
|
{ name = "minecraft:torch", min = 64, label = "Torches" },
|
||||||
|
{ name = "minecraft:arrow", min = 64, label = "Arrows" },
|
||||||
|
{ name = "minecraft:cooked_beef", min = 32, label = "Steak" },
|
||||||
|
{ name = "minecraft:cooked_porkchop",min = 32, label = "Porkchops" },
|
||||||
|
{ name = "minecraft:bread", min = 32, label = "Bread" },
|
||||||
|
{ name = "minecraft:iron_ingot", min = 64, label = "Iron" },
|
||||||
|
{ name = "minecraft:gold_ingot", min = 32, label = "Gold" },
|
||||||
|
{ name = "minecraft:diamond", min = 16, label = "Diamond" },
|
||||||
|
{ name = "minecraft:bone_meal", min = 32, label = "Bone Meal" },
|
||||||
|
{ name = "minecraft:oak_planks", min = 64, label = "Planks" },
|
||||||
|
{ name = "minecraft:cobblestone", min = 128, label = "Cobblestone" },
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user