WTS/game/scripts/characters/tonks/requests.rpy

67 lines
2.2 KiB
Plaintext

# Public requests
default nt_pr_teach = event_class(
title = "Detention with Tonks.", start_label = "nt_pr_teach_start", start_tier = 1,
events = [
[
["nt_pr_teach_T1_E1"], # Slytherin boy
["nt_pr_teach_T1_E2"], # Ravenclaw boy
["nt_pr_teach_T1_E3"], # Potter & Weasley
["nt_pr_teach_T1_E4"] # Slytherin girl
],
[
["nt_pr_teach_T2_E1"], # Hufflepuff girl
["nt_pr_teach_T2_E2"], # Ravenclaw boy
["nt_pr_teach_T2_E3"], # Slytherin boy
["nt_pr_teach_T2_E4"] # Slytherin girl
]
],
iconset = [["star_empty", "star_pink"]] # You have to add icons at least for first tier, the rest will be copied over automatically.
)
default nt_pr_grope = event_class(
title = "Hands-on lessons!", start_label = "nt_pr_grope_start", start_tier = 2,
events = [
[
["nt_pr_grope_T1_E1"], # Slytherin boy
["nt_pr_grope_T1_E2"], # Ravenclaw boy
["nt_pr_grope_T1_E3"], # Potter & Weasley
["nt_pr_grope_T1_E4"] # Slytherin girl
]# ,
# [
# ["nt_pr_grope_T2_E1"], #
# ["nt_pr_grope_T2_E2"], #
# ["nt_pr_grope_T2_E3"], #
# ["nt_pr_grope_T2_E4"] #
# ]
],
iconset = [["star_empty", "star_pink"]] # You have to add icons at least for first tier, the rest will be copied over automatically.
)
default nt_pr_kiss = event_class(
title = "Oral practice!", start_label = "nt_pr_kiss_start", start_tier = 2,
events = [
[
["nt_pr_kiss_T1_intro_E1"], # Ravenclaw boy
["nt_pr_kiss_T1_E2"], #
["nt_pr_kiss_T1_E3"], # Slytherin girls
["nt_pr_kiss_T1_E4"] # Slytherin girl
]# ,
# [
# ["nt_pr_kiss_T2_E1"], # Slytherin boy
# ["nt_pr_kiss_T2_E2"], #
# ["nt_pr_kiss_T2_E3"], #
# ["nt_pr_kiss_T2_E4"] #
# ]
],
iconset = [["star_empty", "star_pink"]] # You have to add icons at least for first tier, the rest will be copied over automatically.
)
# Idea for "blowjob pr" name: "Stress Mitigation."
default nt_requests_list = [
nt_pr_teach,
nt_pr_grope,
nt_pr_kiss
]