Elin Decompiled Documentation EA 23.229 Stable 1st Anniversary Patch 2
Loading...
Searching...
No Matches
GuildThief.cs
Go to the documentation of this file.
1public class GuildThief : Guild
2{
4
5 public override bool IsCurrentZone
6 {
7 get
8 {
9 if (EClass._zone.id == "derphy")
10 {
11 return EClass._zone.lv == -1;
12 }
13 return false;
14 }
15 }
16
17 public int SellStolenPrice(int a)
18 {
19 if (!base.IsMember)
20 {
21 return a;
22 }
23 return a * 100 / (190 - relation.rank * 2);
24 }
25
26 public int FurnitureBonus()
27 {
28 if (relation.rank < 6)
29 {
30 return 1;
31 }
32 return 2;
33 }
34}
Definition: EClass.cs:5
static Game game
Definition: EClass.cs:8
static Zone _zone
Definition: EClass.cs:20
FactionRelation relation
Definition: FACTION.cs:126
QuestManager quests
Definition: Game.cs:179
int FurnitureBonus()
Definition: GuildThief.cs:26
int SellStolenPrice(int a)
Definition: GuildThief.cs:17
override bool IsCurrentZone
Definition: GuildThief.cs:6
Definition: Guild.cs:2
Quest Get(string id)
Definition: Quest.cs:7
string id
Definition: Spatial.cs:13