Fixes to class extensions to make the code work as a mod Fixed Issix breeding schedule Fixed crash when player without Pet skill Improved donation scene so only new tasks get applied Fixed donation counting Started working on Pasture Walk scene Added Trash can functionality to remove empty condoms Added dialogue for Issix to remove PC's keyholder Slut locks locked by Issix Fixes to Azazel's fertility training
28 lines
513 B
GDScript
28 lines
513 B
GDScript
extends TopicBase
|
|
|
|
func _init():
|
|
handles_ids = [
|
|
"IssixBrand"
|
|
]
|
|
|
|
func getTopicValue(_topicID, _pc):
|
|
if(_topicID == "IssixBrand"):
|
|
if(_pc.isPlayer() and GM.main.getModuleFlag("IssixModule", "Issix_Branded_PC") == true):
|
|
return 1.0
|
|
|
|
return 0.0
|
|
|
|
func getVisibleName(_topicID):
|
|
if(_topicID == "IssixBrand"):
|
|
return "Issix's brand"
|
|
|
|
|
|
return "error:"+str(_topicID)
|
|
|
|
func getAddsToFocus(_topicID, _focus) -> float:
|
|
if(_topicID == "IssixBrand"):
|
|
if(_focus == LustFocus.Body):
|
|
return 1.0
|
|
|
|
return 0.0
|