72 lines
1.6 KiB
Plaintext
72 lines
1.6 KiB
Plaintext
|
|
# Personal favours
|
|
default ll_pf_talk = event_class(
|
|
title = "Talk to me!",
|
|
start_label = "ll_pf_talk",
|
|
start_tier = 1,
|
|
events = [
|
|
[# Tier 1
|
|
["ll_pf_talk_T1_E1_intro"],
|
|
["ll_pf_talk_T1_E2_intro"],
|
|
["ll_pf_talk_T1_E3_intro"],
|
|
["ll_pf_talk_T1_E4_repeat"],
|
|
],
|
|
|
|
[# Tier 2
|
|
["ll_pf_talk_T2_E1_repeat"],
|
|
],
|
|
|
|
[# Tier 3
|
|
["ll_pf_talk_T3_E1_repeat"],
|
|
],
|
|
],
|
|
iconset = [
|
|
["heart_empty", "heart_red"], # Tier 1
|
|
["heart_empty", "heart_red"], # Tier 2
|
|
],
|
|
)
|
|
|
|
default ll_pf_inspect = event_class(
|
|
title = "Inspect her body!",
|
|
start_label = "ll_pf_inspect",
|
|
start_tier = 2,
|
|
events = [
|
|
[# Tier 2
|
|
["ll_pf_inspect_T2_E1_intro"],
|
|
["ll_pf_inspect_T2_E2_intro"],
|
|
["ll_pf_inspect_T2_E3_intro"],
|
|
["ll_pf_inspect_T2_E4_repeat"],
|
|
],
|
|
|
|
[# Tier 3
|
|
["ll_pf_inspect_T3_E1_repeat"],
|
|
],
|
|
],
|
|
iconset = [
|
|
["heart_empty", "heart_red"], # Tier 2
|
|
],
|
|
)
|
|
|
|
default ll_pf_masturbate = event_class(
|
|
title = "Play with yourself!",
|
|
start_label = "ll_pf_masturbate",
|
|
start_tier = 3,
|
|
events = [
|
|
[# Tier 3
|
|
["ll_pf_masturbate_T3_E1_intro"],
|
|
["ll_pf_masturbate_T3_E2_intro"],
|
|
["ll_pf_masturbate_T3_E3_intro"],
|
|
["ll_pf_masturbate_T3_E4_repeat"],
|
|
],
|
|
],
|
|
iconset = [
|
|
["heart_empty", "heart_red"], # Tier 3
|
|
],
|
|
)
|
|
|
|
default ll_favor_list = [
|
|
ll_pf_talk,
|
|
ll_pf_inspect,
|
|
ll_pf_masturbate,
|
|
]
|