Skip to content
Snippets Groups Projects
Commit c09da33c authored by Muhammad Fikri Ranjabi's avatar Muhammad Fikri Ranjabi
Browse files

chore: change quest title definition

parent a6b734f9
Branches main
Tags 1.0.1
No related merge requests found
......@@ -24,12 +24,12 @@ public class QuestGiver : MonoBehaviour
QuestData = new Dictionary<string, Quest[]>();
// QuestData.Clear();
QuestData.Add("Scene 1 Opening", new Quest[] {
new Quest("title 1", "description 1", 100, new QuestGoal(3,0,0,0)),
new Quest("title 2", "description 2", 200, new QuestGoal(0,3,0,0))
new Quest("Secuutus", "The Lost Artifact", 100, new QuestGoal(3,0,0,0)),
new Quest("Quingenti", "The Curse of King", 200, new QuestGoal(0,3,0,0))
});
QuestData.Add("Scene 2 Middle", new Quest[] {
new Quest("title 3 middle", "description 3", 100, new QuestGoal(0,0,3,0)),
new Quest("title 4 middle", "description 4", 200, new QuestGoal(0,0,0,1))
new Quest("Infirmatio", "The Search for the Relic", 100, new QuestGoal(0,0,3,0)),
new Quest("Hoienses", "The Siege of the Demon", 200, new QuestGoal(0,0,0,1))
});
finalQuestSceneName = "Scene 2 Middle";
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment