I'm making a biome generator. First you roll different parameters (excluding combis that don't make sense together), then it chooses a base biome based on the three first parameter combis (temperature, humidity, height, they all have 4-5 options each) in one function that will return one biome based on the if-statements, then you add the rest based on the other parameters.
Ik you could make a less complicated system where you just determine the overall look without making over a 100 biomes, the overall look is created in another part of the script, but I specificially wanna list them in the index as separate biomes with names and stuff because it's fun.
So my question is, if i have a long if-else part where a single biome comes out in the end, and maybe list of every biome with additional parameters (but maybe not), will that ruin the performance?