Elin Decompiled Documentation EA 23.319 Nightly Patch 1
Loading...
Searching...
No Matches
ReligionHealing.cs
Go to the documentation of this file.
2{
3 public override string id => "healing";
4
5 public override bool IsAvailable => true;
6
7 public override void OnBecomeBranchFaith()
8 {
9 }
10
11 public override bool IsValidArtifact(string id)
12 {
13 return id == "pole_holy";
14 }
15
16 public override string[] GetValidArtifacts()
17 {
18 return new string[1] { "pole_holy" };
19 }
20
21 public override bool IsFaithElement(Element e)
22 {
23 int num = e.id;
24 if (num == 60 || num == 423 || num == 461)
25 {
26 return true;
27 }
28 return false;
29 }
30}
int id
Definition: ELEMENT.cs:257
override bool IsAvailable
override string[] GetValidArtifacts()
override void OnBecomeBranchFaith()
override bool IsFaithElement(Element e)
override bool IsValidArtifact(string id)