 I have two ideas for how they could function in-game, one of them being something like:
 
I have two ideas for how they could function in-game, one of them being something like:
Code: Select all
{
        type = "slider-setting",
        name = "how-many-extra-fish?",
        setting_type = "startup",
        default_value = 0,
        allowed_values = {-2, -1, 0, 1, 2}
}
or something more akin to this?
Code: Select all
{
        type = "slider-setting",
        name = "how-many-extra-fish?",
        setting_type = "startup",
        default_value = 1,
        maximum_value = 10,
        minimum_value = 0,
        increase_amount = 1,
}
I hope that these ideas sound even somewhat feasible for an addition, or a different implementation - but having even more types of settings would be super nice to have for all modders :]




 
 