Advertisement
Guest User

beyond.lua

a guest
Sep 10th, 2016
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. function fillBeyondConfig()
  2.  
  3. config["lithium-brine"] =
  4. {
  5. type="resource-liquid",
  6. minimum_amount=5000,
  7. allotment=50,
  8. spawns_per_region={min=1, max=2},
  9. richness={min=5000, max=15000}, -- richness per resource spawn
  10. size={min=1, max=3},
  11.  
  12. starting={richness=12000, size=2, probability=1},
  13.  
  14. multi_resource_chance=0.20,
  15. multi_resource={
  16. ["stone"] = 4,
  17. }
  18. }
  19.  
  20. config["silicon-ore"] =
  21. {
  22. type="resource-ore",
  23.  
  24. allotment=40,
  25. spawns_per_region={min=1, max=1},
  26. richness=8000,
  27. size={min=10, max=20},
  28. min_amount = 250,
  29.  
  30. starting={richness=2000, size=15, probability=1},
  31.  
  32. multi_resource_chance=0.25,
  33. multi_resource={
  34. ["lead-ore"] = 3,
  35. ["silver-ore"] = 3,
  36. ["gold-ore"] = 3,
  37. ["tin-ore"] = 3,
  38. ["zinc-ore"] = 3,
  39. }
  40. }
  41.  
  42. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement