1 | # This file is part of PARPG. |
---|
2 | |
---|
3 | # PARPG is free software: you can redistribute it and/or modify |
---|
4 | # it under the terms of the GNU General Public License as published by |
---|
5 | # the Free Software Foundation, either version 3 of the License, or |
---|
6 | # (at your option) any later version. |
---|
7 | |
---|
8 | # PARPG is distributed in the hope that it will be useful, |
---|
9 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
10 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
11 | # GNU General Public License for more details. |
---|
12 | |
---|
13 | # You should have received a copy of the GNU General Public License |
---|
14 | # along with PARPG. If not, see <http://www.gnu.org/licenses/>. |
---|
15 | |
---|
16 | DEFINES: |
---|
17 | found_pekko: |
---|
18 | value: 0 |
---|
19 | goal_value: 1 |
---|
20 | # 1 = found |
---|
21 | |
---|
22 | # reported_murder: |
---|
23 | # value: set() |
---|
24 | # goal_value: set() |
---|
25 | # set() not currently supported as quest variables |
---|
26 | # this contains a set of NPCs the murder is reported to. |
---|
27 | # the goal_value currently has no effect, but whom murder is reported to changes some dialog options |
---|
28 | |
---|
29 | report_murder_to_janie: |
---|
30 | value: False |
---|
31 | goal_value: False |
---|
32 | # note if this is True and accused_of_murder = 'bart', bart will NOT confess! |
---|
33 | |
---|
34 | report_murder_to_kimmo: |
---|
35 | value: False |
---|
36 | goal_value: True |
---|
37 | |
---|
38 | drunkard_evidence: |
---|
39 | value: False |
---|
40 | goal_value: True |
---|
41 | # Camille saw Bart and Pekko together in the parking lot before he went missing |
---|
42 | |
---|
43 | check_pekko_left: |
---|
44 | value: False |
---|
45 | goal_value: True |
---|
46 | # a few denizens mention that Pekko has left. PC can check with Janie. |
---|
47 | |
---|
48 | drunkard_water_asked: |
---|
49 | value: 0 |
---|
50 | goal_value: 1 |
---|
51 | #strange little variable so you cannot ask drunkard about water twice. |
---|
52 | |
---|
53 | accused_of_murder: |
---|
54 | value: '' |
---|
55 | goal_value: 'bart' |
---|
56 | # this is who the PC accuses of murder. Only 1 at a time. |
---|
57 | # The goal value is set to "bart" as he is the actual murderer |
---|
58 | |
---|
59 | drunkard_confesses: |
---|
60 | value: False |
---|
61 | goal_value: True |
---|
62 | |
---|
63 | bart_in_trouble: |
---|
64 | value: False |
---|
65 | goal_value: True |
---|
66 | # If you "prove" Bart was the murderer, but don't connect him to Kimmo, then Kimmo has Bart killed as well... (not in demo) |
---|
67 | |
---|
68 | got_drunkard_coat: |
---|
69 | value: 0 |
---|
70 | goal_value: 1 |
---|
71 | # You can blackmail bart to get his coat, but only once |
---|
72 | # could be replaced with inventory search. |
---|
73 | |
---|
74 | open_box: |
---|
75 | value: 0 |
---|
76 | reset_value: 0 |
---|
77 | goal_value: 0 |
---|
78 | # !=0 box was opened |
---|
79 | |
---|
80 | QUEST_PROPERTIES: |
---|
81 | quest_id: fedex |
---|
82 | quest_giver_id: 12 # what is this for? |
---|
83 | quest_name: "Delivery for Pekko" |
---|
84 | description: "Deliver a package from Janie to Pekko" |
---|
85 | |
---|