summaryrefslogtreecommitdiff
path: root/scripts/fodder.gd
blob: b9ee8f03c91d6d414a19e102a1036741bdb0853b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
extends "res://scripts/base_crawler.gd"

var game_stats_config = preload("res://resources/game_stats_config.tres")

func _ready() -> void:
	damage = game_stats_config.crawlers["fodder"]["damage"]
	speed = game_stats_config.crawlers["fodder"]["speed"]
	max_health = game_stats_config.crawlers["fodder"]["health"]
	worth = game_stats_config.crawlers["fodder"]["worth"]
	sprite_atlas = game_stats_config.crawlers["fodder"]["sprite"]

	super()