Issix-mod/Modules/IssixModule/Scenes/RequirementsBasedScene.gd
Frisk 0ffeaf9beb Added two attacks (WIP)
Updates to scenes
Added new scene
Improvements in other scenes
2025-01-21 23:31:46 +01:00

16 lines
334 B
GDScript

extends SceneBase
class_name RequirementsBasedScene
const Globals = preload("res://Modules/IssixModule/Globals.gd")
var id:String = "error"
func checkIfFullfillsRequirements() -> bool:
return true
func defaultCategory() -> String:
return "REWARD"
func oneTimeOnly(checkID: String):
return Globals.checkIfAchieved(checkID, id)