-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBreathing.cs
78 lines (76 loc) · 2.93 KB
/
Breathing.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
namespace AphoPassivePack
{
public class PassiveAbility_Apho_DeeperBreaths : PassiveAbilityBase
{
public override void OnRoundStart()
{
if (RandomUtil.valueForProb < 0.5f)
{
this.owner.ShowPassiveTypo(this);
this.owner.cardSlotDetail.RecoverPlayPoint(1);
}
}
}
public class PassiveAbility_Apho_DeepestBreaths : PassiveAbilityBase
{
public override void OnRoundStart()
{
this.owner.ShowPassiveTypo(this);
this.owner.cardSlotDetail.RecoverPlayPoint(1);
}
}
public class PassiveAbility_Apho_Underbreathing : PassiveAbilityBase
{
public override void OnUseCard(BattlePlayingCardDataInUnitModel curCard)
{
if (curCard.card.GetOriginCost() <= 3)
{
this.owner.cardSlotDetail.RecoverPlayPoint(2);
}
}
}
public class PassiveAbility_Apho_DeathlyBreathing : PassiveAbilityBase
{
public override void OnUseCard(BattlePlayingCardDataInUnitModel curCard)
{
if (curCard.card.GetOriginCost() == 4)
{
this.owner.cardSlotDetail.RecoverPlayPoint(4);
}
}
}
public class PassiveAbility_Apho_EmergencyBreathingProtocol : PassiveAbilityBase
{
public override void OnRoundEnd()
{
BattleUnitBuf_warpCharge battleUnitBuf_warpCharge = this.owner.bufListDetail.GetActivatedBuf(KeywordBuf.WarpCharge) as BattleUnitBuf_warpCharge;
if (this.owner.cardSlotDetail.PlayPoint <= 0 && battleUnitBuf_warpCharge.stack > 0)
{
this.owner.cardSlotDetail.RecoverPlayPoint(battleUnitBuf_warpCharge.stack / 5);
battleUnitBuf_warpCharge.UseStack(battleUnitBuf_warpCharge.stack, false);
}
}
}
public class PassiveAbility_Apho_FireBreathing : PassiveAbilityBase
{
public override void OnRoundEnd()
{
BattleUnitBuf_warpCharge battleUnitBuf_warpCharge = this.owner.bufListDetail.GetActivatedBuf(KeywordBuf.WarpCharge) as BattleUnitBuf_warpCharge;
if (this.owner.cardSlotDetail.PlayPoint <= 0 && battleUnitBuf_warpCharge.stack > 4)
{
this.owner.ShowPassiveTypo(this);
this.owner.cardSlotDetail.RecoverPlayPoint(battleUnitBuf_warpCharge.stack / 5);
battleUnitBuf_warpCharge.UseStack(battleUnitBuf_warpCharge.stack, false);
}
}
public override void OnRoundStart()
{
BattleUnitBuf_burn battleUnitBuf_Burn = this.owner.bufListDetail.GetActivatedBuf(KeywordBuf.Burn) as BattleUnitBuf_burn;
if (battleUnitBuf_Burn.stack > 9)
{
this.owner.ShowPassiveTypo(this);
this.owner.cardSlotDetail.RecoverPlayPoint(battleUnitBuf_Burn.stack / 10);
}
}
}
}