Advertisement
Guest User

a

a guest
Feb 21st, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. import mods.dropt.Dropt;
  2. import mods.dropt.Rule;
  3.  
  4. //dropt testing
  5.  
  6. Dropt.list("crate1")
  7.  
  8. .add(Dropt.rule()
  9. .dropCount(1, 2)
  10. .matchBlocks(["rustedtactics:crate_structure"])
  11. .addDrop(Dropt.drop()
  12. .selector(Dropt.weight(50))
  13. .items([<minecraft:reeds>])
  14. )
  15. .addDrop(Dropt.drop()
  16. .selector(Dropt.weight(50))
  17. .items([<minecraft:coal:1>])
  18. )
  19. .addDrop(Dropt.drop()
  20. .selector(Dropt.weight(50))
  21. .items([<minecraft:stone:0>])
  22. )
  23. .addDrop(Dropt.drop()
  24. .selector(Dropt.weight(50))
  25. .items([<minecraft:log:*>])
  26. )
  27. .addDrop(Dropt.drop()
  28. .selector(Dropt.weight(50))
  29. .items([<minecraft:sapling:*>])
  30. )
  31. .addDrop(Dropt.drop()
  32. .selector(Dropt.weight(50))
  33. .items([<minecraft:wool:*>])
  34. )
  35. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement