Skip to content

Commit

Permalink
Merge pull request #472 from CactusPuppy/take-a-breather-hotfix
Browse files Browse the repository at this point in the history
fix: add Take a Breather cooldown time
  • Loading branch information
CactusPuppy authored Dec 10, 2023
2 parents 220d0fe + 69dda8e commit 11a2439
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Deltinteger/Deltinteger/Lobby/Heroes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ public static void Init()
.AddHealer()
.AddProjectile(false)
.AddSecondaryFire()
.AddAbility("Take A Breather", hasCooldown: false, rechargeable: true)
.AddAbility("Take A Breather", hasCooldown: true, rechargeable: true)
.AddAbility("Chain Hook")
.AddAbility("Pig Pen"),
new HeroSettingCollection("Sigma").AddUlt("Gravitic Flux").RemoveAmmunition().AddProjectile(true).AddAbility("Accretion", hasKnockback: true).AddAbility("Experimental Barrier", rechargeable: true).AddAbility("Kinetic Grasp"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2488,6 +2488,11 @@
"default": true,
"type": "boolean"
},
"Take A Breather Cooldown Time": {
"default": 100.0,
"type": "number",
"maximum": 500.0
},
"Take A Breather Recharge Rate": {
"default": 100.0,
"type": "number",
Expand Down Expand Up @@ -5525,6 +5530,9 @@
"Take A Breather": {
"$ref": "#/definitions/Take A Breather"
},
"Take A Breather Cooldown Time": {
"$ref": "#/definitions/Take A Breather Cooldown Time"
},
"Take A Breather Recharge Rate": {
"$ref": "#/definitions/Take A Breather Recharge Rate"
},
Expand Down

0 comments on commit 11a2439

Please sign in to comment.