Advertisement
Kryzeth

Ore Chaos Angels Config

Apr 24th, 2017
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.96 KB | None | 0 0
  1. orechaos.config.all_modes["angels-no-starting-area"] = {
  2.     {
  3.         -- Catch tiles in starting area so they wont be replaced.
  4.         name_contains = {"angels", "coal"},
  5.         starting_area_only = true,
  6.         chance = 0,
  7.     },
  8.     {
  9.         -- Tier 1 (stiratite, saphirite, rubyte, bobmonium)
  10.         name_contains = {"ore1", "ore3", "ore5", "ore6"},
  11.         chance = 1/4,
  12.         new_entities =
  13.         {
  14.             ["angels-ore1"] = 0.25,
  15.             ["angels-ore3"] = 0.25,
  16.             ["angels-ore5"] = 0.25,
  17.             ["angels-ore6"] = 0.25,
  18.         }
  19.     },
  20.     {
  21.         -- Tier 2 (jivolite, crotinnium)
  22.         name_contains = {"ore2", "ore4"},
  23.         chance = 1/3,
  24.         new_entities =
  25.         {
  26.             ["angels-ore1"] = 0.05,
  27.             ["angels-ore3"] = 0.05,
  28.             ["angels-ore5"] = 0.05,
  29.             ["angels-ore6"] = 0.05,
  30.             ["angels-ore2"] = 0.4,
  31.             ["angels-ore4"] = 0.4,
  32.         }
  33.     }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement