Advertisement
supersaiyansubtlety

mob_spawn_statics.zs

Feb 12th, 2020
324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. #priority 1000
  2.  
  3. import crafttweaker.entity.IEntityDefinition;
  4.  
  5. static alwaysCanPickUp as string [] =
  6. [
  7. <entity:minecraft:zombie>.id,
  8. <entity:minecraft:zombie_villager>.id,
  9. <entity:minecraft:husk>.id,
  10. <entity:babymobs:babyzombie>.id,
  11. <entity:minecraft:skeleton>.id,
  12. <entity:minecraft:stray>.id,
  13. <entity:minecraft:wither_skeleton>.id,
  14. <entity:babymobs:babyskeleton>.id
  15. ];
  16.  
  17. /* print("alwaysCanPickUp ids: ");
  18. for id in alwaysCanPickUp
  19. {
  20. print(id);
  21. } */
  22.  
  23. /* print("flux goo displayName: ");
  24. if(!isNull(<thaumcraft:flux_goo>.asBlock().displayName))
  25. {
  26. print(<thaumcraft:flux_goo>.asBlock().displayName);
  27. }
  28. else
  29. {
  30. print("no flux goo displayName");
  31. } */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement