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
