Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
Zone_Kapul.cs
Go to the documentation of this file.
1public class Zone_Kapul : Zone_Town
2{
3 public override string IDPlaylistOverwrite
4 {
5 get
6 {
7 if (!IsFestival)
8 {
9 return null;
10 }
11 return "Festival_Noyel";
12 }
13 }
14
15 public override bool IsFestival
16 {
17 get
18 {
19 if (base.lv == 0)
20 {
21 return EClass.world.date.month == 6;
22 }
23 return false;
24 }
25 }
26
27 public override float VolumeSea => 1f;
28}
override float VolumeSea
Definition: Zone_Kapul.cs:27
override string IDPlaylistOverwrite
Definition: Zone_Kapul.cs:4
override bool IsFestival
Definition: Zone_Kapul.cs:16