DEV: company and town factors for reward

This commit is contained in:
jottyfan
2015-06-13 15:02:19 +02:00
parent b98934c48a
commit 8224c9a282
2 changed files with 25 additions and 0 deletions

View File

@@ -105,6 +105,26 @@ function BusyBeeInfo::GetSettings()
custom_value=0,
step_size=0.5,
flags=GSInfo.CONFIG_INGAME});
GSInfo.AddSetting({name="rewardfactor_town",
description="Extra factor to be multiplied with reward for towns",
min_value=0,
max_value=2,
easy_value=2,
medium_value=1,
hard_value=0,
custom_value=0,
step_size=0.1,
flags=GSInfo.CONFIG_INGAME});
GSInfo.AddSetting({name="rewardfactor_ind",
description="Extra factor to be multiplied with reward for industries",
min_value=0,
max_value=2,
easy_value=2,
medium_value=1,
hard_value=0,
custom_value=0,
step_size=0.1,
flags=GSInfo.CONFIG_INGAME});
}
RegisterGS(BusyBeeInfo());