Advertisement
Guest User

Untitled

a guest
Jan 20th, 2019
351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 KB | None | 0 0
  1. var drops = {
  2. //coal
  3. <minecraft:coal> : {
  4. 6 : ["reskillable:gathering|3", "reskillable:mining|3"]
  5. } as string[][int],
  6. //quartz
  7. <minecraft:quartz> : {
  8. 7 : ["reskillable:gathering|8", "reskillable:mining|15", "reskillable:attack|5", "compatskills:smithing|9"]
  9. } as string[][int],
  10. //black quartz ore
  11. <actuallyadditions:block_misc:3> : {
  12. 7 : ["reskillable:mining|5", "compatskills:smithing|3"]
  13. } as string[][int],
  14. //certus quartz
  15. <appliedenergistics2:material> : {
  16. 1 : ["reskillable:gathering|8", "reskillable:mining|16", "compatskills:smithing|21", "compatskills:technology|21"]
  17. } as string[][int],
  18. //ruby
  19. <techreborn:gem> : {
  20. 2 : ["reskillable:gathering|15", "reskillable:mining|20", "compatskills:smithing|21", "reskillable:agility|9", "reskillable:magic|5"]
  21. } as string[][int],
  22. //sapphire
  23. <techreborn:gem:1> : {
  24. 2 : ["reskillable:gathering|15", "reskillable:mining|20", "compatskills:smithing|21", "reskillable:agility|9", "reskillable:magic|5"]
  25. } as string[][int],
  26. //pyrite dust
  27. <techreborn:dust:39> : {
  28. 1 : ["reskillable:mining|5"]
  29. } as string[][int],
  30. //sphalerite dust
  31. <techreborn:dust:50> : {
  32. 1 : ["reskillable:mining|5"]
  33. } as string[][int],
  34. //peridot
  35. <techreborn:gem:2> : {
  36. 2 : ["reskillable:gathering|15", "reskillable:mining|20", "compatskills:smithing|21", "reskillable:agility|9", "reskillable:magic|5"]
  37. } as string[][int],
  38. //lead ore
  39. <techreborn:ore:12> : {
  40. 1 : ["reskillable:mining|10", "compatskills:smithing|13", "reskillable:magic|12", "reskillable:defense|16"]
  41. } as string[][int],
  42. //amber
  43. <thaumcraft:amber> : {
  44. 3 : ["reskillable:mining|5"]
  45. } as string[][int],
  46. //cobalt ore
  47. <tconstruct:ore:0> : {
  48. 6 : ["reskillable:mining|5"]
  49. } as string[][int],
  50. //ardite ore
  51. <tconstruct:ore:1> : {
  52. 6 : ["reskillable:mining|5"]
  53. } as string[][int]
  54. } as string[][int][IItemStack];
  55.  
  56. val table = LootTables.getTable("minecraft:entities/wither_skeleton");
  57.  
  58. addDrops(table, drops, null);
  59.  
  60. val main = table.getPool("main");
  61. main.removeEntry("minecraft:coal");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement