add doug to dialogue, start grandma quest

This commit is contained in:
2026-04-11 18:34:16 -05:00
parent 6491a3df11
commit 54db4e4b73
15 changed files with 1049 additions and 53 deletions
@@ -53,6 +53,36 @@ private void Awake()
questBoolMap.Add(1, QID1_List);
#endregion
#region 2 - (Story Quest #1) No More Freeloading
// This is the first time we talk to grandma. She wants help around the house.
// Quest is complete after we talk to the shop keeper and complete quest 3.
QuestBool[] QID2_List = new QuestBool[1];
// QID2_1_completedQuest3
QID1_List[0] = new QuestBool(() =>
{
return CompletedQuests.Contains(3);
});
questBoolMap.Add(2, QID1_List);
#endregion
#region 3 - (Story Quest #1.5) First Paycheck
// This is the first time we talk to the shopkeeper. He tells us to find a star
// shard and bring it to him.
QuestBool[] QID3_List = new QuestBool[1];
// QID3_1_hasEnoughStarshards
QID1_List[0] = new QuestBool(() =>
{
return GameManager.Instance.Inventory.GetItemQuantity(ItemIdEnum.STAR_SHARD) > 0;
});
questBoolMap.Add(3, QID1_List);
#endregion
return questBoolMap;
}