Advertisement
Kryzeth

Kry-intermediates-rso-config

Apr 17th, 2017
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.68 KB | None | 0 0
  1. function fillKryintermediatesConfig()
  2.    
  3.     config["titan-ore"] = {
  4.         type="resource-ore",
  5.        
  6.         allotment=45,
  7.         spawns_per_region={min=1, max=1},
  8.         richness=7500,
  9.         size={min=10, max=25},
  10.         min_amount = 150,
  11.        
  12.         multi_resource_chance=0.50,
  13.         multi_resource={
  14.             ["copper-ore"] = 2,
  15.             ["iron-ore"] = 2,
  16.             ["coal"] = 4,
  17.             ["stone"] = 2,
  18.         }
  19.     }
  20.    
  21.     config["xenotite-ore"] = {
  22.         type="resource-ore",
  23.        
  24.         allotment=40,
  25.         spawns_per_region={min=1, max=1},
  26.         richness=10000,
  27.         size={min=7, max=14},
  28.         min_amount = 150,
  29.        
  30.         multi_resource_chance=0.50,
  31.         multi_resource={
  32.             ["copper-ore"] = 2,
  33.             ["iron-ore"] = 2,
  34.             ["coal"] = 4,
  35.             ["stone"] = 2,
  36.         }
  37.     }
  38.    
  39. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement