Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
ConConfuse.cs
Go to the documentation of this file.
1public class ConConfuse : BadCondition
2{
3 public override Emo2 EmoIcon => Emo2.confused;
4
5 public override int GetPhase()
6 {
7 return 0;
8 }
9
10 public override void SetOwner(Chara _owner, bool onDeserialize = false)
11 {
12 base.SetOwner(_owner);
13 owner.isConfused = true;
14 }
15
16 public override void OnRemoved()
17 {
18 owner.isConfused = false;
19 }
20}
Emo2
Definition: Emo2.cs:2
Definition: Chara.cs:10
override int GetPhase()
Definition: ConConfuse.cs:5
override void SetOwner(Chara _owner, bool onDeserialize=false)
Definition: ConConfuse.cs:10
override Emo2 EmoIcon
Definition: ConConfuse.cs:3
override void OnRemoved()
Definition: ConConfuse.cs:16