Skip to content

Commit 7a03c07

Browse files
Better cooldown names
1 parent 58a82a4 commit 7a03c07

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Autoload/Items.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ func _ready():
168168
register_behavior_mod("self_immunity", "Autoimmunity", "Casts will not hurt the caster", preload("res://Sprites/Spells/Modifiers/Autoimmune.png"))
169169
register_wand_mod("fast_cast", "Faster Cast", "The following spells will be cast %s times faster", preload("res://Sprites/Spells/Modifiers/Faster.png"), [2, 6])
170170
register_wand_mod("slow_cast", "Slower Cast", "The following spells will be cast %s times slower", preload("res://Sprites/Spells/Modifiers/Slower.png"), [2, 6])
171-
register_wand_mod("fast_recharge", "Faster Recharge Time", "The wand will recharge %s times faster", preload("res://Sprites/Spells/Modifiers/FastWand.png"), [2, 6])
171+
register_wand_mod("fast_recharge", "Faster Usage Cooldown", "The wand will recharge %s times faster", preload("res://Sprites/Spells/Modifiers/FastWand.png"), [2, 6])
172172

173173
# If the player is in the tree, set the Player variable of this node to it
174174
if not get_tree().get_nodes_in_group("Player").empty():

Elements/WandMixer.gd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ const SWAPPING_PARTICLES := preload("res://Particles/SwappingParticles.tscn")
44
const SWAPPING_DENIAL := preload("res://Particles/SwappingDenial.tscn")
55

66
const PROPERTIES := {
7-
0 : "Cast Cooldown",
8-
1 : "Recharge Time",
7+
0 : "Spell Cooldown",
8+
1 : "Usage Cooldown",
99
2 : "Heat Resistance",
1010
3 : "Soul Resistance",
1111
4 : "Projectile Speed",

HUD/HUD.gd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,8 @@ func _process(delta):
268268
var new_text := "[img]res://Sprites/Menus/WandIcon.png[/img] [color=#ffbd00]Wand[/color]"
269269
if new_text != DescriptionBoxName.bbcode_text:
270270
DescriptionBoxName.bbcode_text = new_text
271-
new_text = "[img]res://Sprites/Menus/CastDelayIcon.png[/img] Cast Cooldown: " + str(d_wand.cast_cooldown).pad_decimals(3) + "s"
272-
new_text += "\n[img]res://Sprites/Menus/CooldownIcon.png[/img] Recharge Time: " + str(d_wand.recharge_cooldown).pad_decimals(3) + "s"
271+
new_text = "[img]res://Sprites/Menus/CastDelayIcon.png[/img] Spell Cooldown: " + str(d_wand.cast_cooldown).pad_decimals(3) + "s"
272+
new_text += "\n[img]res://Sprites/Menus/CooldownIcon.png[/img] Usage Cooldown: " + str(d_wand.recharge_cooldown).pad_decimals(3) + "s"
273273
new_text += "\nTemp. Resistance: " + str(1.0/d_wand.heat_resistance).pad_decimals(2)
274274
new_text += "\nSoul Resistance: " + str(1.0/d_wand.soul_resistance).pad_decimals(2)
275275
new_text += "\nProjectile Speed: " + str(d_wand.projectile_speed).pad_decimals(2)

0 commit comments

Comments
 (0)