mirror of
https://github.com/Steffo99/hella-farm.git
synced 2024-11-21 23:54:23 +00:00
16 lines
404 B
GDScript
16 lines
404 B
GDScript
@icon("res://behaviours/sacrificable.svg")
|
|
extends Node
|
|
class_name Sacrificable
|
|
|
|
## 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()
|