1
Fork 0
mirror of https://github.com/Steffo99/hella-farm.git synced 2024-11-22 08:04:23 +00:00
hella-farm/behaviours/sacrificable.gd

17 lines
404 B
GDScript3
Raw Normal View History

2024-04-28 09:23:07 +00:00
@icon("res://behaviours/sacrificable.svg")
2024-04-27 18:12:03 +00:00
extends Node
2024-04-28 09:23:07 +00:00
class_name Sacrificable
2024-04-27 18:12:03 +00:00
## Emits [signal eaten] when eaten by an [Eater] whose acceptable diets contain this node's [field diet].
##
## To add multiple possible [Edible] diets to an entity, add multiple [Edible] nodes to it.
signal sacrificed
@export var type: Enums.MonsterType = Enums.MonsterType.Sheep
func sarcifice():
sacrificed.emit()