Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

DeathnDekay

12
Posts
6
Following
A member registered Nov 30, 2019

Recent community posts

Breeder - of course, plays as normal
Commander - extra xp and learning points for slaves; however slaves cost more
Lab Master - Free Lab; more modification = higher selling price; slaves faster disobedience
Cultist - can create slaves (cost a lot of mana)

As well as modifications to existing classes

It just seems the vanilla Mansion.gd is a house of glass.

Maybe it could work if a boolean (isImpregByHorse) was made to the Mansion.gd and/or person.gd. 

I like the idea. I think it would be a good idea for bonus for treating your slaves/spouse/etc well.

I'm trying to implement that alternative birth cost. I liked how you handled that (especially as a breeder class). I want to add more classes which affect birth cost, but everytime I touch the file it causes weird errors

Wait..... Did you rewrite the entire thing?!

specifically changing the cost of raising offspring.

I tried to mess around with that portion and ended up with a parse error

if I'm not mistaken, animals stats aren't saved like a slave's is. The update function doesnt keep them in mind. It would be easy to add new "dummy" races to the pool rather than relying on kennel animals

I'm looking through your modifications to the Mansion.gd.  If it is not too much to ask, what problems did you run into when modding it?

sure, go ahead

For others right now. Keep in mind that is my first time modding anything. I'm trying to get into. I really liked the additions you made, so I want to start doing the same.

leak = {
    code = 'leak',
    name = 'Leak',
    description = 'Drains excess much milk. ',
    effect = 'leakeffect',
    manacost = 20,
    req = 0,
    price = 350,
    personal = true,
    combat = false,
    learned = true,
    type = 'utility',
    },
func leakeffect():
    var spell = globals.spelldict.leak
    globals.resources.mana -= spellcost(spell)
    person.lactating.milkstorage = 0
    person.lactating.daysunmilked = 0
    var text = "You cast Leak on the target."
    return text

I ended up making a  "Leak" spell that takes care of it for me. 

AircTriton,
From playtesting, I noticed that the only way to effectively lactate oversized tits was to use farms. I have seen many people complain about this issue. I believe that I have a solution and would like your input.