Added T4 Luna leveling, favour menu, EOC message
* Added Luna leveling on Tier 4 favours. * Added EOC message. * Added Luna T4 favours into favors.rpy
This commit is contained in:
parent
cb4fd94def
commit
c697e69109
@ -33,6 +33,10 @@ label ll_pf_inspect_end:
|
||||
if states.lun.level < 9:
|
||||
$ states.lun.level += 1
|
||||
|
||||
elif states.lun.tier == 4:
|
||||
if states.lun.level < 12:
|
||||
$ states.lun.level += 1
|
||||
|
||||
jump end_luna_event
|
||||
|
||||
### Tier 2 ###
|
||||
|
@ -46,7 +46,7 @@ label ll_pf_masturbate_end:
|
||||
$ states.lun.level += 1
|
||||
|
||||
elif states.lun.tier == 4:
|
||||
if states.lun.level < 16:
|
||||
if states.lun.level < 12:
|
||||
$ states.lun.level += 1
|
||||
|
||||
jump end_luna_event
|
||||
|
@ -41,7 +41,7 @@ label ll_pf_blowjob_end:
|
||||
$ luna.equip(lun_outfit_last)
|
||||
|
||||
if states.lun.tier == 4:
|
||||
if states.lun.level < 16:
|
||||
if states.lun.level < 12:
|
||||
$ states.lun.level += 1
|
||||
|
||||
jump end_luna_event
|
||||
@ -1647,6 +1647,10 @@ label ll_pf_blowjob_T4_E4_repeat:
|
||||
|
||||
$ _wearing_clothes = False
|
||||
|
||||
if states.lun.level < 24:
|
||||
$ states.lun.level = 24
|
||||
call end_of_content
|
||||
|
||||
jump ll_pf_blowjob_end
|
||||
|
||||
#Tier 5 BJ notes:
|
||||
|
@ -37,6 +37,10 @@ label ll_pf_talk_end:
|
||||
if states.lun.level < 9:
|
||||
$ states.lun.level += 1
|
||||
|
||||
elif states.lun.tier == 4:
|
||||
if states.lun.level < 12:
|
||||
$ states.lun.level += 1
|
||||
|
||||
jump end_luna_event
|
||||
|
||||
### Tier 1 ###
|
||||
|
@ -11,15 +11,23 @@ default lun_ev_inspect_her_body_t2_e1 = Event(id="lun_ev_inspect_her_body_t2_e1"
|
||||
default lun_ev_inspect_her_body_t2_e2 = Event(id="lun_ev_inspect_her_body_t2_e2", label="ll_pf_inspect_T2_E2_intro", req="states.lun.tier == 2", queue="lun_eventqueue_inspect_her_body", autoenqueue=True, autodequeue=False, repeat=False)
|
||||
default lun_ev_inspect_her_body_t2_e3 = Event(id="lun_ev_inspect_her_body_t2_e3", label="ll_pf_inspect_T2_E3_intro", req="states.lun.tier == 2", queue="lun_eventqueue_inspect_her_body", autoenqueue=True, autodequeue=False, repeat=False)
|
||||
default lun_ev_inspect_her_body_t2_e4 = Event(id="lun_ev_inspect_her_body_t2_e4", label="ll_pf_inspect_T2_E4_repeat", req="states.lun.tier == 2", queue="lun_eventqueue_inspect_her_body", autoenqueue=True, autodequeue=False)
|
||||
default lun_ev_inspect_her_body_t3_e1 = Event(id="lun_ev_inspect_her_body_t3_e1", label="ll_pf_inspect_T3_E1_repeat", req="states.lun.tier >= 3", queue="lun_eventqueue_inspect_her_body", autoenqueue=True, autodequeue=False)
|
||||
default lun_ev_inspect_her_body_t3_e1 = Event(id="lun_ev_inspect_her_body_t3_e1", label="ll_pf_inspect_T3_E1_repeat", req="states.lun.tier == 3", queue="lun_eventqueue_inspect_her_body", autoenqueue=True, autodequeue=False)
|
||||
default lun_ev_inspect_her_body_t4_e1 = Event(id="lun_ev_inspect_her_body_t4_e1", label="ll_pf_inspect_T4_E1_repeat", req="states.lun.tier >= 4", queue="lun_eventqueue_inspect_her_body", autoenqueue=True, autodequeue=False)
|
||||
|
||||
default lun_ev_play_with_yourself_t3_e1 = Event(id="lun_ev_play_with_yourself_t3_e1", label="ll_pf_masturbate_T3_E1_intro", req="states.lun.tier >= 3", queue="lun_eventqueue_play_with_yourself", autoenqueue=True, autodequeue=False, repeat=False)
|
||||
default lun_ev_play_with_yourself_t3_e2 = Event(id="lun_ev_play_with_yourself_t3_e2", label="ll_pf_masturbate_T3_E2_intro", req="states.lun.tier >= 3", queue="lun_eventqueue_play_with_yourself", autoenqueue=True, autodequeue=False, repeat=False)
|
||||
default lun_ev_play_with_yourself_t3_e3 = Event(id="lun_ev_play_with_yourself_t3_e3", label="ll_pf_masturbate_T3_E3_intro", req="states.lun.tier >= 3", queue="lun_eventqueue_play_with_yourself", autoenqueue=True, autodequeue=False, repeat=False)
|
||||
default lun_ev_play_with_yourself_t3_e4 = Event(id="lun_ev_play_with_yourself_t3_e4", label="ll_pf_masturbate_T3_E4_repeat", req="states.lun.tier >= 3", queue="lun_eventqueue_play_with_yourself", autoenqueue=True, autodequeue=False)
|
||||
default lun_ev_play_with_yourself_t3_e1 = Event(id="lun_ev_play_with_yourself_t3_e1", label="ll_pf_masturbate_T3_E1_intro", req="states.lun.tier == 3", queue="lun_eventqueue_play_with_yourself", autoenqueue=True, autodequeue=False, repeat=False)
|
||||
default lun_ev_play_with_yourself_t3_e2 = Event(id="lun_ev_play_with_yourself_t3_e2", label="ll_pf_masturbate_T3_E2_intro", req="states.lun.tier == 3", queue="lun_eventqueue_play_with_yourself", autoenqueue=True, autodequeue=False, repeat=False)
|
||||
default lun_ev_play_with_yourself_t3_e3 = Event(id="lun_ev_play_with_yourself_t3_e3", label="ll_pf_masturbate_T3_E3_intro", req="states.lun.tier == 3", queue="lun_eventqueue_play_with_yourself", autoenqueue=True, autodequeue=False, repeat=False)
|
||||
default lun_ev_play_with_yourself_t3_e4 = Event(id="lun_ev_play_with_yourself_t3_e4", label="ll_pf_masturbate_T3_E4_repeat", req="states.lun.tier == 3", queue="lun_eventqueue_play_with_yourself", autoenqueue=True, autodequeue=False)
|
||||
default lun_ev_play_with_yourself_t4_e1 = Event(id="lun_ev_play_with_yourself_t4_e1", label="ll_pf_masturbate_T4_E1_repeat", req="states.lun.tier >= 4", queue="lun_eventqueue_play_with_yourself", autoenqueue=True, autodequeue=False)
|
||||
|
||||
default lun_ev_blowjob_t4_e1 = Event(id="lun_ev_blowjob_t4_e1", label="ll_pf_blowjob_T4_E1_intro", req="states.lun:tier >= 4", queue="lun_eventqueue_blowjob", autoenqueue=True, autodequeue=False, repeat=False)
|
||||
default lun_ev_blowjob_t4_e2 = Event(id="lun_ev_blowjob_t4_e2", label="ll_pf_blowjob_T4_E2_intro", req="states.lun:tier >= 4", queue="lun_eventqueue_blowjob", autoenqueue=True, autodequeue=False, repeat=False)
|
||||
default lun_ev_blowjob_t4_e3 = Event(id="lun_ev_blowjob_t4_e3", label="ll_pf_blowjob_T4_E3_intro", req="states.lun:tier >= 4", queue="lun_eventqueue_blowjob", autoenqueue=True, autodequeue=False, repeat=False)
|
||||
default lun_ev_blowjob_t4_e4 = Event(id="lun_ev_blowjob_t4_e4", label="ll_pf_blowjob_T4_E4_repeat", req="states.lun:tier >= 4", queue="lun_eventqueue_blowjob", autoenqueue=True, autodequeue=False)
|
||||
|
||||
define luna_favors = [
|
||||
("lun_eventqueue_talk_to_me", "Talk to me!"),
|
||||
("lun_eventqueue_inspect_her_body", "Let me inspect you!"),
|
||||
("lun_eventqueue_play_with_yourself", "Play with yourself!"),
|
||||
("lun_eventqueue_blowjob", "Suck it!"),
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user