Advertisement
77wisher77

wLibVariables

Nov 30th, 2020 (edited)
684
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.85 KB | None | 0 0
  1. -- TODO: extract variables & tables into here to be used
  2. SLOT_COUNT = 16
  3.  
  4. MINING_KEEP_ITEMS = {
  5.   "minecraft:coal",
  6.   "minecraft:iron_ore",
  7.   "minecraft:gold_ore",
  8.   "minecraft:redstone",
  9.   "minecraft:dye",
  10.   "minecraft:diamond",
  11.   "minecraft:emerald",
  12.   "thermalfoundation:ore",
  13.   "ic2:resource",
  14.   "draconicevolution:draconium_dust",
  15.   "appliedenergistics2:material",
  16.   "bigreactors:oreyellorite",
  17.   "extrautils2:ingredients",
  18.   "actuallyadditions:block_misc",
  19.   "forestry:apatite"
  20. }
  21.  
  22. -- items to use as fuel
  23. FUEL_ITEM = {
  24.   "minecraft:coal",
  25.   "minecraft:coal_block",
  26.   "minecraft:lava_bucket"
  27. }
  28.  
  29. -- inventories which can be exported too
  30. EXPORT_INVENTORIES = {
  31.   "minecraft:chest"
  32. }
  33.  
  34. return {
  35.   SLOT_COUNT = SLOT_COUNT,
  36.   MINING_KEEP_ITEMS = MINING_KEEP_ITEMS,
  37.   FUEL_ITEM = FUEL_ITEM,
  38.   EXPORT_INVENTORIES = EXPORT_INVENTORIES
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement