Elin Modding Docs Doc
Loading...
Searching...
No Matches
QuestSharedContainer.cs
1using System;
2
3// Token: 0x020000DF RID: 223
5{
6 // Token: 0x0600061D RID: 1565 RVA: 0x00028520 File Offset: 0x00026720
7 public override bool CanUpdateOnTalk(Chara c)
8 {
9 if (this.phase == 0)
10 {
11 foreach (Thing thing in EClass._map.things)
12 {
13 if (thing.IsInstalled && thing.IsSharedContainer)
14 {
15 return true;
16 }
17 }
18 return false;
19 }
20 return false;
21 }
22
23 // Token: 0x0600061E RID: 1566 RVA: 0x00028590 File Offset: 0x00026790
24 public override void OnComplete()
25 {
26 EClass.game.quests.globalList.Add(Quest.Create("tax", null, null).SetClient(EClass.game.cards.globalCharas.Find("ashland"), false));
27 EClass.game.quests.globalList.Add(Quest.Create("introInspector", null, null).SetClient(EClass.game.cards.globalCharas.Find("ashland"), false));
28 }
29}
Definition Chara.cs:12
Definition Quest.cs:8
Definition Thing.cs:10