WTS/game/scripts/characters/luna/favors.rpy
LoafyLemon 5c952fe7da Translation support - Part 1
* Added language switch option (WIP)
* Fixed translation generation cache cleanup
* Fixed python strings being untranslatable (partially)
2022-10-31 20:35:00 +00:00

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,
]