FabcatBot/datatypes/spool.gd
Tabby b83ef6b77b spool system redo nearly done
still need to fix unload
2025-11-02 00:51:39 +11:00

15 lines
311 B
GDScript

extends Resource
class_name Spool
@export var name : String
#@export var material : String
@export var link : String
# tags?
func list_string(bold : bool = false) -> String:
var result : String = name
if bold:
result = "**" + result + "**"
if link:
result = "[" + result +"]("+link+")"
return result