posicat

/cattech/lists.lua

Sep 22nd, 2024 (edited)
304
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.63 KB | None | 0 0
  1. --File: /cattech/lists.lua
  2.  
  3. local lists = { }
  4.  
  5. lists.placableLights = {
  6.     "minecraft:torch",
  7.     "minecraft:soul_torch"
  8. }
  9. lists.redstoneMarker = {
  10.     "minecraft:redstone_torch"
  11. }
  12.  
  13. lists.liquidBlocks = {
  14.     "minecraft:water",
  15.     "minecraft:lava",
  16. }
  17.  
  18. lists.secureBlocks = {
  19.     "minecraft:glass",
  20.     "minecraft:cobblestone",
  21.     "minecraft:cobbled_deepslate",
  22.     "minecraft:netherrack",
  23.     "minecraft:end_stone",
  24.     "minecraft:dirt",
  25.     "forbidden_arcanus:darkstone",
  26.     "minecraft:tuff"
  27. }
  28.  
  29. lists.junkItems = {
  30.     "minecraft:cobblestone",
  31.     "minecraft:cobbled_deepslate",
  32.     "minecraft:netherrack",
  33. }
  34.  
  35. return lists
Advertisement
Add Comment
Please, Sign In to add comment