Advertisement
Cool_boy21

Generator

May 25th, 2018
388
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. for each(var _loc2_ in param1.split(","))
  2.          {
  3.             _loc3_ = 1;
  4.             if(_loc2_.indexOf("-") > -1)
  5.             {
  6.                _loc3_ = 0.5;
  7.             }
  8.             if(_loc2_.indexOf("+") > -1)
  9.             {
  10.                _loc3_ = 1.5;
  11.             }
  12.             if(_loc2_.indexOf("--") > -1)
  13.             {
  14.                _loc3_ = 0.1;
  15.             }
  16.             if(_loc2_.indexOf("++") > -1)
  17.             {
  18.                _loc3_ = 2;
  19.             }
  20.             if(_loc2_.indexOf("forest") > -1)
  21.             {
  22.                vegetation = vegetation * _loc3_;
  23.             }
  24.             if(_loc2_.indexOf("mountain") > -1)
  25.             {
  26.                rockyness = rockyness * _loc3_;
  27.             }
  28.             if(_loc2_.indexOf("game") > -1)
  29.             {
  30.                game = game * _loc3_;
  31.             }
  32.             if(_loc2_.indexOf("fruit") > -1)
  33.             {
  34.                fruit = fruit * _loc3_;
  35.             }
  36.             if(_loc2_.indexOf("fish") > -1)
  37.             {
  38.                fish = fish * _loc3_;
  39.             }
  40.             if(_loc2_.indexOf("metal") > -1)
  41.             {
  42.                metal = metal * _loc3_;
  43.             }
  44.             if(_loc2_.indexOf("crop") > -1)
  45.             {
  46.                crop = crop * _loc3_;
  47.             }
  48.             if(_loc2_.indexOf("water") > -1)
  49.             {
  50.                if(_loc3_ > 1)
  51.                {
  52.                   wetness = 0.2 * _loc3_;
  53.                }
  54.             }
  55.          }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement