Ageless Watch can now restore food freshness

This commit is contained in:
2022-05-10 17:44:02 +03:00
parent e7ca4036b1
commit 89d33289a5
3 changed files with 479 additions and 0 deletions

View File

@ -94,6 +94,25 @@ configuration_options = {
hover = "Use available Backtrek Watch with...",
options = {},
default = "D"
},
{
name = "unspoil_rate",
label = "Unspoil rate",
hover = "Food freshness recovery percentage",
options = {
{ description = "none", data = 0.0 },
{ description = "10% (fair play)", data = 0.1 },
{ description = "20%", data = 0.2 },
{ description = "30%", data = 0.3 },
{ description = "40%", data = 0.4 },
{ description = "50%", data = 0.5 },
{ description = "60%", data = 0.6 },
{ description = "70%", data = 0.7 },
{ description = "80%", data = 0.8 },
{ description = "90%", data = 0.9 },
{ description = "100%", data = 1.0 }
},
default = 0.1
}
}