Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(1 edit) (+1)

One thing that really annoyed me in the base game was the amount of time the slaves spent outside the mansion after level up requests. You could easily find half your slaves away on rotation all game long with grade increases and holidays. I fixed this in my own mod and it would be quite easy to put into other mods too.

In jobs&specs.gd, var leveluprequests, add a vacation requirement of 'person.metrics.ownership >= 7' and a slave won't ask for a holiday until they've been with you seven days. Add improvegrade requirement of person.level >= 4 and only the experienced slaves will be asking for a grade increase.

That’s a fantastic idea. If you’re cool with it I’ll tag that into this next update with credit

(1 edit) (+1)

Go ahead.

Adding automatic enchantment naming should be straightforward too. In enchantments.gd there's a line

enchant.descript = "[color=green]" + tempenchant.name.replace('&100v', str(enchant.effectvalue*100)).replace("&v", str(enchant.effectvalue)) + "[/color]"

I made more complex changes in my mod but something like this should work fine.

var desc = tempenchant.name.replace('&100v', str(enchant.effectvalue*100)).replace("&v", str(enchant.effectvalue))

enchant.descript = "[color=green]" + desc + "[/color]"
item.name += ", " + desc