mirror of
https://github.com/YouHaveTrouble/YHTMod.git
synced 2026-05-11 21:56:54 +00:00
perforators bonus
This commit is contained in:
@@ -10,6 +10,7 @@ public class YhtPlayer : ModPlayer {
|
||||
public int ArcaneMissile = 0;
|
||||
public int KatanaTeleportCooldown = 0;
|
||||
public int SummonerAmbitionDeerclopsCooldown = 0;
|
||||
public int SummonerAmbitionPerforatorsCooldown = 0;
|
||||
|
||||
|
||||
public bool SummonerAmbition = false;
|
||||
@@ -22,6 +23,7 @@ public class YhtPlayer : ModPlayer {
|
||||
public override void PreUpdate() {
|
||||
KatanaTeleportCooldown = Math.Max(KatanaTeleportCooldown - 1, 0);
|
||||
SummonerAmbitionDeerclopsCooldown = Math.Max(SummonerAmbitionDeerclopsCooldown - 1, 0);
|
||||
SummonerAmbitionPerforatorsCooldown = Math.Max(SummonerAmbitionPerforatorsCooldown - 1, 0);
|
||||
}
|
||||
|
||||
public override void PostUpdateEquips() {
|
||||
|
||||
Reference in New Issue
Block a user