hotel-madness/scripts/maps/objectives/hungry.gd

16 lines
289 B
GDScript

## SPDX-License-Identifier: GPL-3.0-or-later
## Copyright (c) 2024 interstellardevelopment.org
class_name Hungry
extends Objective
func _ready() -> void:
type = "hungry"
match randi() % 2:
0:
subtype = "burger"
1:
subtype = "burger"
2:
subtype = "impossible"
time = 20