Added a few translation helpers
This commit is contained in:
@@ -4,7 +4,8 @@ enum Type {
|
||||
Item,
|
||||
}
|
||||
|
||||
@export var title:String = ""
|
||||
@export_multiline var title:String = ""
|
||||
@export_multiline var description:String = ""
|
||||
@export var objectiveType:Type = Type.Item
|
||||
|
||||
@export var itemType:Item.Type = Item.Type.POTION
|
||||
@@ -38,3 +39,9 @@ func _onPlayerInventoryUpdated() -> void:
|
||||
|
||||
func isCompleted() -> bool:
|
||||
return completed
|
||||
|
||||
func getLocaleData() -> Dictionary[String, String]:
|
||||
var dict:Dictionary[String, String] = {}
|
||||
dict.item = ITEM.getItemName(itemType, quantity)
|
||||
dict.quantity = LOCALE.formatInteger(quantity)
|
||||
return dict
|
||||
|
Reference in New Issue
Block a user