Skip to content
Snippets Groups Projects
Commit f084d4ce authored by fernaldyl's avatar fernaldyl
Browse files

feat: last quest

parent 7719ca1d
Branches
Tags
No related merge requests found
...@@ -41,12 +41,18 @@ public class QuestManager : MonoBehaviour ...@@ -41,12 +41,18 @@ public class QuestManager : MonoBehaviour
)); ));
questItems.Add(new QuestItem( questItems.Add(new QuestItem(
"Earn 100 Scores", "Earn 100 Scores",
new List<string> { "Earn 100 Scores" }, new List<string> { "Earn 100 Score" },
QuestItem.QuestType.SCORE, QuestItem.QuestType.SCORE,
new List<float> { 100f }, new List<float> { 100f },
new List<MonsterType>() new List<MonsterType>()
)); ));
// add last quest questItems.Add(new QuestItem(
"Kill the Dragon",
new List<string> { "Kill 1 Soul Eater" },
QuestItem.QuestType.KILL,
new List<float> { 1f },
new List<MonsterType>()
));
nextQuest(); nextQuest();
} }
......
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