Renamed assets, worked on the clock and map, started improving assets.

This commit is contained in:
2025-10-23 09:32:14 -04:00
parent 8811c851f9
commit 379fa4bd70
71 changed files with 747 additions and 513 deletions

View File

@@ -6,6 +6,9 @@ enum Slots{
ACCESSORY
}
var last_id : int = 1
var id : int
@export var image : Texture2D
@export var name : StringName
@export var brief : String
@@ -15,6 +18,9 @@ enum Slots{
@export var per : bool
@export var grade : String = "F"
func _init() -> void:
last_id += 1
id = last_id
func item_type_name() -> String:
return "Item"