Advertisement
Guest User

Untitled

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