added Graphics and sound Effects and more overhauls
This commit is contained in:
parent
c887a2168c
commit
b9d4288900
214 changed files with 3378 additions and 198 deletions
10
scenes/upgrade/upgrades/dashUpgrade.gd
Normal file
10
scenes/upgrade/upgrades/dashUpgrade.gd
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
class_name DashUpgrade extends "res://scenes/upgrade/upgrade.gd"
|
||||
|
||||
func _init() -> void:
|
||||
upgradeName = "Dash Upgrade"
|
||||
description = "Fast forward jump. Needs 30 seconds to recharge"
|
||||
|
||||
func select():
|
||||
if Globals.getPlayer() != null:
|
||||
Globals.getPlayer().dashUnlocked = true
|
||||
Globals.getPlayer().dashCooldown.start()
|
||||
Loading…
Add table
Add a link
Reference in a new issue