summaryrefslogtreecommitdiff
path: root/scripts/gnome.gd
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-05-23 14:54:48 -0400
committerbd <bdunahu@operationnull.com>2025-05-23 14:54:48 -0400
commitc278c21c5019b2e82651fec10b819c3b29b8ff7d (patch)
tree3806d4f4510e8f64df3ca15da024e905e163da74 /scripts/gnome.gd
parent3e15dfe033217d16e3198f044dd717408553218c (diff)
Add gnome enemy, re-sprite wyvern
Diffstat (limited to 'scripts/gnome.gd')
-rw-r--r--scripts/gnome.gd11
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/gnome.gd b/scripts/gnome.gd
new file mode 100644
index 0000000..308e5fc
--- /dev/null
+++ b/scripts/gnome.gd
@@ -0,0 +1,11 @@
+extends "res://scripts/base_crawler.gd"
+
+var game_stats_config = preload("res://resources/game_stats_config.tres")
+
+func _ready() -> void:
+ damage = game_stats_config.gnome_damage
+ speed = game_stats_config.gnome_speed
+ max_health = game_stats_config.gnome_health
+ worth = game_stats_config.gnome_worth
+
+ super()