-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmodule_quests.py
More file actions
14 lines (12 loc) · 751 Bytes
/
module_quests.py
File metadata and controls
14 lines (12 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from header_quests import *
####################################################################################################################
# Each quest record contains the following fields:
# 1) Quest id: used for referencing quests in other files. The prefix qst_ is automatically added before each quest-id.
# 2) Quest Name: Name displayed in the quest screen.
# 3) Quest flags. See header_quests.py for a list of available flags
# 4) Quest Description: Description displayed in the quest screen.
#
# Note that you may call the opcode setup_quest_text for setting up the name and description
####################################################################################################################
quests = [
]