The source project of this merge request has been removed.
To add Harem Poly Roles
Compare changes
Files
7+ 0
− 0

2.08 KiB
Harem Role - girl is accepted into the harem and accepts that she is not the only love interest
ADDED to: \game\general_actions\interaction_actions\chat_actions.rpy make_harem_action = Action("Ask her to join your harem", requirement = ask_harem_requirement, effect = "ask_to_join_harem_label", menu_tooltip = "Ask her to start an official, polyamorous relationship and be part of your Harem.", priority = 10) chat_actions.append(make_harem_action)
ADDED to: \game\Mods\Screens\enhanced_map_manager.rpy ADDED to: \game\Mods\Screens\enhanced_main_choice_display.rpy to show location of harem members
ADDED to: game\game_roles\role_girlfriend.rpy
ADDED to: \game\game_roles_role_definitions.rpy harem_role, cousin_girlfriend_role, aunt_girlfriend_role using #Sister specific girlfriend role. harem_role uses actions here in the role_harem. Tried to keep everything tied to this one file.
ADDED new graphics - game\Mods\Room\rooms\background_images_replacement.rpy gf_token_small_image = im.Scale(Image(get_file_handle("girlfriend.png")), 18, 18) renpy.image("gf_token_small", gf_token_small_image)
paramour_token_small_image = im.Scale(Image(get_file_handle("paramour.png")), 18, 18) renpy.image("paramour_token_small", paramour_token_small_image)
harem_token_small_image = im.Scale(Image(get_file_handle("harem.png")), 18, 18) renpy.image("harem_token_small", harem_token_small_image)
*ADDED graphics to Mods\Core\images\gui\extra_images* = girlfriend.png, harem.png, paramour.png
THIS ALLOWS tracking the girlfriend/paramour/poly/tranced/aroused/babymomma around on the map Allows to add girlfriend/paramour to polyamorous relationship. MUST BE 80+ love, and likes threesomes >0 minimum. Must be either GF/Paramour to unlock Polyamory if Paramour joins Polyamory, they still are with their BF/husbands and can still leave them and join the poly.
2.08 KiB