Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
Zone_Yowyn.cs
Go to the documentation of this file.
1public class Zone_Yowyn : Zone_Town
2{
3 public override string IDPlaylistOverwrite
4 {
5 get
6 {
7 if (!IsFestival)
8 {
9 return null;
10 }
11 return "Festival_Yowyn";
12 }
13 }
14
15 public override bool IsFestival
16 {
17 get
18 {
19 if (base.lv == 0)
20 {
21 return EClass.world.date.month == 9;
22 }
23 return false;
24 }
25 }
26
27 public override string IDHat
28 {
29 get
30 {
31 if (!IsFestival)
32 {
33 return null;
34 }
35 return "hat_mushroom";
36 }
37 }
38
39 public override void OnVisitNewMapOrRegenerate()
40 {
41 base.OnVisitNewMapOrRegenerate();
42 if (base.lv == -1)
43 {
45 }
46 }
47}
bool HasCondition(string alias)
Definition: Chara.cs:8568
Definition: EClass.cs:5
static Chara pc
Definition: EClass.cs:14
override bool IsFestival
Definition: Zone_Yowyn.cs:16
override void OnVisitNewMapOrRegenerate()
Definition: Zone_Yowyn.cs:39
override string IDHat
Definition: Zone_Yowyn.cs:28
override string IDPlaylistOverwrite
Definition: Zone_Yowyn.cs:4
void ApplyBackerPet(bool draw)
Definition: Zone.cs:3488