This repository has been archived on 2024-07-02. You can view files and clone it, but cannot push or open issues or pull requests.
HoppyEaster/Scripts/EntitySystem/BunnyGenerator.gd

33 lines
1 KiB
GDScript3
Raw Normal View History

extends Node
@export var bunny_prefab : Resource
2023-04-09 08:36:03 +00:00
@export var player : CharacterBody2D
@export var player_save_distance : float = 32.0
@onready var BunnyPrefab : PackedScene = load(bunny_prefab.resource_path)
2023-04-09 08:36:03 +00:00
func spawn_bunny(pos : Vector2, team : int, health : int) -> Bunny:
var bunny = BunnyPrefab.instantiate()
self.add_child(bunny)
2023-04-09 08:36:03 +00:00
bunny.global_position = pos
bunny.health = health
bunny.team = team
return bunny
2023-04-09 08:36:03 +00:00
func spawn_wave(free_tiles : Array, amount : int, health : int):
# Make Sure that no possitions to near to the player are insdie of the list
for tile in free_tiles:
if tile.distance_to(player.global_position) <= player_save_distance:
free_tiles.erase(tile)
2023-04-09 08:36:03 +00:00
# Make sure amount isnt bigger then available positions
if free_tiles.size() < amount: amount = free_tiles.size()
2023-04-09 08:36:03 +00:00
# Spawn at random psoitions of the list
for i in amount:
var pos = free_tiles.pick_random()
free_tiles.erase(pos)
var bunny = spawn_bunny(pos, TEAM.EVIL, 3)
bunny.sub_on_death(func(bunny): bunny.queue_free())
pass