drops.txt 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. msg("dev", "§bDrops §rwurde geladen.");
  2. event.load("entity_death");
  3. bone = read.item("BONE");
  4. hasenleder = read.item("RABBIT_HIDE", 1, 0, "§rOcelot Hide");
  5. rawfish0 = read.item("FISH");
  6. rawfish1 = read.item("FISH", 0, 1);
  7. rawfish2 = read.item("FISH", 0, 2);
  8. ep = read.item("ENDER_PEARL");
  9. inksack = read.item("DYE", 0, 15);
  10. clayball = read.item("CLAY_BALL");
  11. silveregg = read.item("{id:'minecraft:spawn_egg',Count:1b,tag:{EntityTag:{id:'minecraft:silverfish'}},Damage:0s}");
  12. dirt = read.item("DIRT");
  13. potato = read.item("POTATO");
  14. carrot = read.item("CARROT");
  15. brownmushroom = read.item("brown_mushroom");
  16. redmushroom = read.item("red_mushroom");
  17. wolffur = read.item("km:wolf_fur");
  18. silvercoin = read.item("km:coin_silver");
  19. @wait
  20. wait();
  21. if(event == "entity_death") {
  22. if(player_involved) {
  23. i = item.getEnchantLevel(entity.getEquip(player, "hand"), "LOOT_BONUS_MOBS");
  24. goto("set");
  25. }
  26. }
  27. goto("wait");
  28. @set
  29. if(text.class(entity) == "EntityWolf") {
  30. amount = math.random(0, 1 + i);
  31. if(amount > 0) {
  32. item.setAmount(bone, amount);
  33. item.drop(entity.getLocation(entity), bone, amount);
  34. }
  35. amount = math.random(0, 1 + i);
  36. if(amount > 0) {
  37. item.setAmount(wolffur, amount);
  38. item.drop(entity.getLocation(entity), wolffur, amount);
  39. }
  40. goto("wait");
  41. }
  42. if(text.class(entity) == "EntityOcelot") {
  43. amount = math.random(0, 2 + i);
  44. if(amount > 0) {
  45. item.setAmount(hasenleder, amount);
  46. item.drop(entity.getLocation(entity), hasenleder, amount);
  47. }
  48. amount = math.random(-18, 1);
  49. if(amount > 0) {
  50. item.setAmount(rawfish0, amount);
  51. item.drop(entity.getLocation(entity), rawfish0, amount);
  52. }
  53. amount = math.random(-18, 1);
  54. if(amount > 0) {
  55. item.setAmount(rawfish1, amount);
  56. item.drop(entity.getLocation(entity), rawfish1, amount);
  57. }
  58. goto("wait");
  59. }
  60. if(text.class(entity) == "EntityEndermite") {
  61. amount = math.random(0, 1 + i);
  62. if(amount > 0) {
  63. item.setAmount(ep, amount);
  64. item.drop(entity.getLocation(entity), ep, amount);
  65. }
  66. goto("wait");
  67. }
  68. if(text.class(entity) == "EntitySilverfish") {
  69. amount = math.random(0, 1 + i);
  70. if(amount > 0) {
  71. item.setAmount(silveregg, amount);
  72. item.drop(entity.getLocation(entity), silveregg, amount);
  73. }
  74. goto("wait");
  75. }
  76. if(text.class(entity) == "EntityBat") {
  77. amount = math.random(0, 1 + i);
  78. if(amount > 0) {
  79. item.setAmount(inksack, amount);
  80. item.drop(entity.getLocation(entity), inksack, amount);
  81. }
  82. goto("wait");
  83. }
  84. if(text.class(entity) == "EntityPig") {
  85. amount = math.random(-18, 1);
  86. if(amount > 0) {
  87. item.setAmount(clayball, amount);
  88. item.drop(entity.getLocation(entity), clayball, amount);
  89. }
  90. amount = math.random(-18, 1);
  91. if(amount > 0) {
  92. item.setAmount(redmushroom, amount);
  93. item.drop(entity.getLocation(entity), redmushroom, amount);
  94. }
  95. amount = math.random(-18, 1);
  96. if(amount > 0) {
  97. item.setAmount(brownmushroom, amount);
  98. item.drop(entity.getLocation(entity), brownmushroom, amount);
  99. }
  100. amount = math.random(-18, 1);
  101. if(amount > 0) {
  102. item.setAmount(carrot, amount);
  103. item.drop(entity.getLocation(entity), carrot, amount);
  104. }
  105. amount = math.random(-18, 1);
  106. if(amount > 0) {
  107. item.setAmount(potato, amount);
  108. item.drop(entity.getLocation(entity), potato, amount);
  109. }
  110. amount = math.random(-18, 1);
  111. if(amount > 0) {
  112. item.setAmount(dirt, amount);
  113. item.drop(entity.getLocation(entity), dirt, amount);
  114. }
  115. goto("wait");
  116. }
  117. if(text.class(entity) == "EntitySquid") {
  118. amount = math.random(0, 1);
  119. if(amount > 0) {
  120. item.setAmount(rawfish0, amount);
  121. item.drop(entity.getLocation(entity), rawfish0, amount);
  122. }
  123. amount = math.random(-1, 1);
  124. if(amount > 0) {
  125. item.setAmount(rawfish1, amount);
  126. item.drop(entity.getLocation(entity), rawfish1, amount);
  127. }
  128. amount = math.random(-18, 1);
  129. if(amount > 0) {
  130. item.setAmount(rawfish2, amount);
  131. item.drop(entity.getLocation(entity), rawfish2, amount);
  132. }
  133. goto("wait");
  134. }
  135. goto("wait");