Advertisement
Guest User

Untitled

a guest
Apr 3rd, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.65 KB | None | 0 0
  1. -- VERSION 2
  2. -- mainconfig.lua
  3. if game.active_mods["aix_matter"] then
  4.     fillAiXMatterConfig(config)
  5. end
  6.  
  7. -- aixmatter.lua
  8. function fillAiXMatterConfig(config)   
  9.     config["ax-matter-ore"] = {
  10.         type="resource-ore",
  11.        
  12.         allotment=40,
  13.         spawns_per_region={min=1, max=1},
  14.         richness=6000,
  15.         size={min=10, max=15},
  16.         min_amount=300,
  17.         starting={richness=8000, size=25, probability=1},
  18.     }
  19.    
  20.     config["ax-liquid-matter"] = {
  21.         type="resource-liquid",
  22.         minimum_amount=240000,
  23.         allotment=70,
  24.         spawns_per_region={min=1, max=2},
  25.         richness={min=240000, max=400000},
  26.         size={min=2, max=5},
  27.         starting={richness=400000, size=2, probability=1},
  28.     }
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement