QuestProduct.bquestpack: Difference between revisions
no edit summary
imported>Leoetlino (add categories) |
imported>Leoetlino No edit summary |
||
Line 6: | Line 6: | ||
== Contents == | == Contents == | ||
The root structure is an array; each element is a dictionary that corresponds to a quest. | The root structure is an array; each element is a dictionary that corresponds to a quest. | ||
{|class="wikitable" | |||
! Key !! Type !! Description | |||
|- | |||
| Location || str || | |||
|- | |||
| Name || str || Quest name | |||
|- | |||
| NotPostNote || bool || | |||
|- | |||
| Orderer || str || Actor name of the quest giver | |||
|- | |||
| StepDependencyFlags || array || | |||
|- | |||
| Steps || array of steps || Steps | |||
|- | |||
| Type || str || Quest type. Valid values: | |||
* Main: Main quest | |||
* Sub: Side quest | |||
* Mini: Minigame system quest (used for minigame implementations internally; totally hidden from the UI) | |||
|} | |||
Example ("Find_Impa" quest): | Example ("Find_Impa" quest): | ||
<source lang="yaml"> | <source lang="yaml"> | ||
- Location: HopesPlateau | - Location: HopesPlateau | ||
Name: Find_Impa | Name: Find_Impa | ||
NotPostNote: false | NotPostNote: false | ||
Orderer: Dm_Npc_Hyrule_KingSoul | Orderer: Dm_Npc_Hyrule_KingSoul | ||
StepDependencyFlags: [] | StepDependencyFlags: [] | ||