Replace generic Resource usage with type-safe resources

This commit is contained in:
2026-03-21 10:28:43 +01:00
parent c55b59fcad
commit 52c23b194e
11 changed files with 85 additions and 100 deletions

View File

@@ -16,12 +16,12 @@ var _catalog_initialized: bool = false
func _ready() -> void: func _ready() -> void:
_initialize_currency_catalog() _initialize_currency_catalog()
func get_known_currencies() -> Array[Resource]: func get_known_currencies() -> Array[Currency]:
_initialize_currency_catalog_if_needed() _initialize_currency_catalog_if_needed()
var result: Array[Resource] = [] var result: Array[Currency] = []
for raw_currency in _currency_by_id.values(): for raw_currency in _currency_by_id.values():
var currency: Resource = raw_currency as Resource var currency: Currency = raw_currency as Currency
if currency != null: if currency != null:
result.append(currency) result.append(currency)
return result return result
@@ -37,11 +37,11 @@ func get_known_currency_ids() -> Array[StringName]:
ids.append(currency_id) ids.append(currency_id)
return ids return ids
func get_currency_id(currency: Resource) -> StringName: func get_currency_id(currency: Currency) -> StringName:
if currency == null: if currency == null:
return &"" return &""
var raw_id: Variant = currency.get("id") var raw_id: Variant = currency.id
if raw_id is StringName: if raw_id is StringName:
return _normalize_currency_id(raw_id) return _normalize_currency_id(raw_id)
return _normalize_currency_id(StringName(String(raw_id))) return _normalize_currency_id(StringName(String(raw_id)))
@@ -66,7 +66,7 @@ func is_known_currency_id(currency_id: StringName) -> bool:
return false return false
return _currency_by_id.has(normalized_currency_id) return _currency_by_id.has(normalized_currency_id)
func get_currency_resource(currency_id: StringName) -> Resource: func get_currency_resource(currency_id: StringName) -> Currency:
_initialize_currency_catalog_if_needed() _initialize_currency_catalog_if_needed()
var normalized_currency_id: StringName = _normalize_currency_id(currency_id) var normalized_currency_id: StringName = _normalize_currency_id(currency_id)
@@ -74,14 +74,14 @@ func get_currency_resource(currency_id: StringName) -> Resource:
return null return null
var raw_currency: Variant = _currency_by_id.get(normalized_currency_id) var raw_currency: Variant = _currency_by_id.get(normalized_currency_id)
if raw_currency is Resource: if raw_currency is Currency:
return raw_currency return raw_currency
return null return null
func get_currency_name(currency_id: StringName) -> String: func get_currency_name(currency_id: StringName) -> String:
var currency: Resource = get_currency_resource(currency_id) var currency: Currency = get_currency_resource(currency_id)
if currency != null: if currency != null:
var display_name: String = String(currency.get("display_name")).strip_edges() var display_name: String = String(currency.display_name).strip_edges()
if not display_name.is_empty(): if not display_name.is_empty():
return display_name return display_name
return _humanize_currency_id(currency_id) return _humanize_currency_id(currency_id)
@@ -91,7 +91,7 @@ func get_currency_icon(currency_id: StringName) -> Texture2D:
if currency == null: if currency == null:
return null return null
var raw_icon: Variant = currency.get("icon") var raw_icon: Variant = currency.icon
if raw_icon is Texture2D: if raw_icon is Texture2D:
return raw_icon return raw_icon
return null return null

View File

@@ -56,7 +56,7 @@ func _ready() -> void:
#func spend_gems(cost: BigNumber) -> bool: #func spend_gems(cost: BigNumber) -> bool:
#return spend_currency_by_id(GEMS_CURRENCY_ID, cost) #return spend_currency_by_id(GEMS_CURRENCY_ID, cost)
func get_known_currencies() -> Array[Resource]: func get_known_currencies() -> Array[Currency]:
return CurrencyDatabase.get_known_currencies() return CurrencyDatabase.get_known_currencies()
func get_currency_id(currency: Resource) -> StringName: func get_currency_id(currency: Resource) -> StringName:

View File

@@ -4,16 +4,13 @@ signal goal_achieved(goal_id: StringName, target_generator_id: StringName)
class GeneratorUnlockGoal extends RefCounted: class GeneratorUnlockGoal extends RefCounted:
var target_generator_id: StringName var target_generator_id: StringName
var goal: Resource var goal: GoalData
func _init(target_id: StringName, goal_data: Resource) -> void: func _init(target_id: StringName, goal_data: GoalData) -> void:
target_generator_id = target_id target_generator_id = target_id
goal = goal_data goal = goal_data
const GOAL_DATA_SCRIPT: Script = preload("res://core/goals/goal_data.gd") @export var goals: Array[GeneratorUnlockGoalData] = []
const GENERATOR_UNLOCK_GOAL_DATA_SCRIPT: Script = preload("res://core/generator-unlock-goals/generator_unlock_goal_data.gd")
@export var goals: Array[Resource] = []
var _runtime_goals: Array[GeneratorUnlockGoal] = [] var _runtime_goals: Array[GeneratorUnlockGoal] = []
var _known_generator_ids: Dictionary = {} var _known_generator_ids: Dictionary = {}
@@ -60,13 +57,11 @@ func _evaluate_goal(runtime_goal: GeneratorUnlockGoal) -> bool:
return false return false
if runtime_goal.goal == null: if runtime_goal.goal == null:
return false return false
if runtime_goal.goal.get_script() != GOAL_DATA_SCRIPT:
return false
if _is_goal_completed(runtime_goal): if _is_goal_completed(runtime_goal):
return false return false
if not _can_resolve_target(runtime_goal.target_generator_id): if not _can_resolve_target(runtime_goal.target_generator_id):
return false return false
if not bool(runtime_goal.goal.call("is_met")): if not bool(runtime_goal.goal.is_met()):
return false return false
var goal_id: StringName = _extract_goal_id(runtime_goal.goal) var goal_id: StringName = _extract_goal_id(runtime_goal.goal)
@@ -76,11 +71,11 @@ func _evaluate_goal(runtime_goal: GeneratorUnlockGoal) -> bool:
print("[UnlockSystem] Goal completed: %s -> %s" % [String(goal_id), String(runtime_goal.target_generator_id)]) print("[UnlockSystem] Goal completed: %s -> %s" % [String(goal_id), String(runtime_goal.target_generator_id)])
return true return true
func _extract_goal_id(goal: Resource) -> StringName: func _extract_goal_id(goal: GoalData) -> StringName:
if goal == null: if goal == null:
return &"" return &""
var goal_id_text: String = String(goal.get("id")).strip_edges() var goal_id_text: String = String(goal.id).strip_edges()
if goal_id_text.is_empty(): if goal_id_text.is_empty():
return &"" return &""
@@ -109,27 +104,25 @@ func _load_goals() -> void:
_runtime_goals.clear() _runtime_goals.clear()
var seen_goal_ids: Dictionary = {} var seen_goal_ids: Dictionary = {}
for goal_resource in goals: for generator_unlock_goal_data in goals:
if goal_resource == null: if generator_unlock_goal_data == null:
continue continue
if goal_resource.get_script() != GENERATOR_UNLOCK_GOAL_DATA_SCRIPT: var goal_data: GeneratorUnlockGoalData = generator_unlock_goal_data
continue
var goal_data: Resource = goal_resource
if goal_data == null: if goal_data == null:
continue continue
var target_generator_id: String = String(goal_data.get("target_generator_id")).strip_edges() var target_generator_id: String = String(goal_data.target_generator_id).strip_edges()
if target_generator_id.is_empty(): if target_generator_id.is_empty():
push_warning("Skipping unlock goal resource: missing target_generator_id") push_warning("Skipping unlock goal resource: missing target_generator_id")
continue continue
var resolved_goal: Resource = goal_data.call("get_goal_data") var resolved_goal: GoalData = generator_unlock_goal_data.get_goal_data()
if resolved_goal == null: if resolved_goal == null:
push_warning("Skipping unlock goal for target '%s': goal is null" % target_generator_id) push_warning("Skipping unlock goal for target '%s': goal is null" % target_generator_id)
continue continue
if not bool(resolved_goal.call("is_valid")): if not bool(resolved_goal.is_valid()):
push_warning("Skipping unlock goal for target '%s': goal is invalid" % target_generator_id) push_warning("Skipping unlock goal for target '%s': goal is invalid" % target_generator_id)
continue continue
var goal_key: String = String(resolved_goal.get("id")) var goal_key: String = String(resolved_goal.id)
if seen_goal_ids.has(goal_key): if seen_goal_ids.has(goal_key):
push_warning("Duplicate unlock goal id skipped: '%s'" % goal_key) push_warning("Duplicate unlock goal id skipped: '%s'" % goal_key)
continue continue

View File

@@ -23,6 +23,7 @@ texture = ExtResource("4_ruf1h")
shape = SubResource("RectangleShape2D_y5m1q") shape = SubResource("RectangleShape2D_y5m1q")
[node name="GeneratorPanel" parent="." unique_id=1129190041 node_paths=PackedStringArray("_generator") instance=ExtResource("5_bb14m")] [node name="GeneratorPanel" parent="." unique_id=1129190041 node_paths=PackedStringArray("_generator") instance=ExtResource("5_bb14m")]
visible = false
offset_left = 64.0 offset_left = 64.0
offset_top = -64.0 offset_top = -64.0
offset_right = 505.0 offset_right = 505.0

View File

@@ -8,8 +8,6 @@ enum BuffKind {
} }
const HUGE_EXPONENT: int = 1000000 const HUGE_EXPONENT: int = 1000000
const GOAL_DATA_SCRIPT: Script = preload("res://core/goals/goal_data.gd")
const GOAL_REQUIREMENT_SCRIPT: Script = preload("res://core/goals/goal_requirement_data.gd")
@export var id: StringName = &"" @export var id: StringName = &""
@export var kind: BuffKind = BuffKind.AUTO_PRODUCTION_MULTIPLIER @export var kind: BuffKind = BuffKind.AUTO_PRODUCTION_MULTIPLIER
@@ -19,20 +17,20 @@ const GOAL_REQUIREMENT_SCRIPT: Script = preload("res://core/goals/goal_requireme
@export_group("Unlock") @export_group("Unlock")
@export var unlocked: bool = false @export var unlocked: bool = false
@export var unlock_goal: Resource @export var unlock_goal: GoalData
@export_group("Effect") @export_group("Effect")
@export var base_effect: float = 1.0 @export var base_effect: float = 1.0
@export var effect_increment: float = 0.1 @export var effect_increment: float = 0.1
@export_group("Cost") @export_group("Cost")
@export var cost_currency: Resource @export var cost_currency: Currency
@export var base_cost_mantissa: float = 10.0 @export var base_cost_mantissa: float = 10.0
@export var base_cost_exponent: int = 0 @export var base_cost_exponent: int = 0
@export var cost_multiplier: float = 1.5 @export var cost_multiplier: float = 1.5
@export_group("Resource Purchase") @export_group("Resource Purchase")
@export var resource_target_currency: Resource @export var resource_target_currency: Currency
@export var resource_purchase_base_mantissa: float = 10.0 @export var resource_purchase_base_mantissa: float = 10.0
@export var resource_purchase_base_exponent: int = 0 @export var resource_purchase_base_exponent: int = 0
@export var resource_purchase_increment_multiplier: float = 1.2 @export var resource_purchase_increment_multiplier: float = 1.2
@@ -40,56 +38,44 @@ const GOAL_REQUIREMENT_SCRIPT: Script = preload("res://core/goals/goal_requireme
func has_unlock_goal() -> bool: func has_unlock_goal() -> bool:
if unlock_goal == null: if unlock_goal == null:
return false return false
if unlock_goal.get_script() != GOAL_DATA_SCRIPT:
return false
return bool(unlock_goal.call("is_valid")) return bool(unlock_goal.is_valid())
func get_unlock_goal_amount() -> BigNumber: func get_unlock_goal_amount() -> BigNumber:
if unlock_goal == null: if unlock_goal == null:
return BigNumber.from_float(0.0) return BigNumber.from_float(0.0)
if unlock_goal.get_script() != GOAL_DATA_SCRIPT:
return BigNumber.from_float(0.0)
var valid_requirements: Array[Resource] = unlock_goal.call("get_valid_requirements") var valid_requirements: Array[GoalRequirementData] = unlock_goal.get_valid_requirements()
if valid_requirements.is_empty(): if valid_requirements.is_empty():
return BigNumber.from_float(0.0) return BigNumber.from_float(0.0)
var requirement_resource: Resource = valid_requirements[0] var requirement_resource: GoalRequirementData = valid_requirements[0]
if requirement_resource == null: if requirement_resource == null:
return BigNumber.from_float(0.0) return BigNumber.from_float(0.0)
if requirement_resource.get_script() != GOAL_REQUIREMENT_SCRIPT:
return BigNumber.from_float(0.0)
var required_amount: Variant = requirement_resource.call("get_amount") var required_amount: Variant = requirement_resource.get_amount()
if required_amount is BigNumber: if required_amount is BigNumber:
return required_amount return required_amount
return BigNumber.from_float(0.0) return BigNumber.from_float(0.0)
func get_unlock_goal_currency() -> Resource: func get_unlock_goal_currency() -> Currency:
if unlock_goal == null: if unlock_goal == null:
return null return null
if unlock_goal.get_script() != GOAL_DATA_SCRIPT:
return null
var valid_requirements: Array[Resource] = unlock_goal.call("get_valid_requirements") var valid_requirements: Array[GoalRequirementData] = unlock_goal.get_valid_requirements()
if valid_requirements.is_empty(): if valid_requirements.is_empty():
return null return null
var requirement_resource: Resource = valid_requirements[0] var requirement_resource: GoalRequirementData = valid_requirements[0]
if requirement_resource == null: if requirement_resource == null:
return null return null
if requirement_resource.get_script() != GOAL_REQUIREMENT_SCRIPT:
return null
return requirement_resource.get("currency") return requirement_resource.currency
func is_unlock_goal_met() -> bool: func is_unlock_goal_met() -> bool:
if unlock_goal == null: if unlock_goal == null:
return false return false
if unlock_goal.get_script() != GOAL_DATA_SCRIPT:
return false
return bool(unlock_goal.call("is_met")) return bool(unlock_goal.is_met())
func can_purchase_next_level(current_level: int) -> bool: func can_purchase_next_level(current_level: int) -> bool:
if max_level < 0: if max_level < 0:

View File

@@ -7,12 +7,12 @@ extends Resource
func has_id() -> bool: func has_id() -> bool:
return not String(id).strip_edges().is_empty() return not String(id).strip_edges().is_empty()
func get_valid_requirements() -> Array[Resource]: func get_valid_requirements() -> Array[GoalRequirementData]:
var result: Array[Resource] = [] var result: Array[GoalRequirementData] = []
for requirement_resource in requirements: for requirement_resource in requirements:
if requirement_resource == null: if requirement_resource == null:
continue continue
if not bool(requirement_resource.call("is_valid")): if not bool(requirement_resource.is_valid()):
continue continue
result.append(requirement_resource) result.append(requirement_resource)
@@ -26,18 +26,18 @@ func is_valid() -> bool:
return not get_valid_requirements().is_empty() return not get_valid_requirements().is_empty()
func is_met() -> bool: func is_met() -> bool:
var valid_requirements: Array[Resource] = get_valid_requirements() var valid_requirements: Array[GoalRequirementData] = get_valid_requirements()
if valid_requirements.is_empty(): if valid_requirements.is_empty():
return false return false
for requirement_resource in valid_requirements: for requirement_resource in valid_requirements:
if not bool(requirement_resource.call("is_met")): if not bool(requirement_resource.is_met()):
return false return false
return true return true
func get_first_requirement_summary() -> String: func get_first_requirement_summary() -> String:
var valid_requirements: Array[Resource] = get_valid_requirements() var valid_requirements: Array[GoalRequirementData] = get_valid_requirements()
if valid_requirements.is_empty(): if valid_requirements.is_empty():
return "" return ""
return String(valid_requirements[0].call("get_summary_text")) return String(valid_requirements[0].get_summary_text())

View File

@@ -1,7 +1,7 @@
class_name GoalRequirementData class_name GoalRequirementData
extends Resource extends Resource
@export var currency: Resource @export var currency: Currency
@export var amount_mantissa: float = 0.0 @export var amount_mantissa: float = 0.0
@export var amount_exponent: int = 0 @export var amount_exponent: int = 0

View File

@@ -6,6 +6,7 @@
[ext_resource type="PackedScene" uid="uid://btkxru2gdjsgc" path="res://currency_tile.tscn" id="4_6ri4a"] [ext_resource type="PackedScene" uid="uid://btkxru2gdjsgc" path="res://currency_tile.tscn" id="4_6ri4a"]
[ext_resource type="Resource" uid="uid://brqaojindcxa5" path="res://idles/currencies/magic.tres" id="5_dl3gy"] [ext_resource type="Resource" uid="uid://brqaojindcxa5" path="res://idles/currencies/magic.tres" id="5_dl3gy"]
[ext_resource type="PackedScene" uid="uid://dirvi76rkoowf" path="res://core/generator-unlock-goals/goals_debug_ui.tscn" id="7_7i63j"] [ext_resource type="PackedScene" uid="uid://dirvi76rkoowf" path="res://core/generator-unlock-goals/goals_debug_ui.tscn" id="7_7i63j"]
[ext_resource type="Script" uid="uid://dt4df3gwr6n5m" path="res://core/generator-unlock-goals/generator_unlock_goal_data.gd" id="8_6ri4a"]
[ext_resource type="Script" uid="uid://1sykgtg24a7g" path="res://core/generator-unlock-goals/generator_unlock_system.gd" id="8_bhig6"] [ext_resource type="Script" uid="uid://1sykgtg24a7g" path="res://core/generator-unlock-goals/generator_unlock_system.gd" id="8_bhig6"]
[ext_resource type="Resource" uid="uid://mnuihnwb70ba" path="res://idles/goals/generator_unlock_knowledge.tres" id="9_l765j"] [ext_resource type="Resource" uid="uid://mnuihnwb70ba" path="res://idles/goals/generator_unlock_knowledge.tres" id="9_l765j"]
[ext_resource type="Resource" uid="uid://8wrqdjewfdq5" path="res://idles/goals/generator_unlock_wood.tres" id="10_x0wp6"] [ext_resource type="Resource" uid="uid://8wrqdjewfdq5" path="res://idles/goals/generator_unlock_wood.tres" id="10_x0wp6"]
@@ -13,12 +14,11 @@
[node name="GeneratorMuseum" type="Node2D" unique_id=1219373683] [node name="GeneratorMuseum" type="Node2D" unique_id=1219373683]
[node name="MagicGenerator" parent="." unique_id=967969064 instance=ExtResource("1_6pne4")] [node name="MagicGenerator" parent="." unique_id=967969064 instance=ExtResource("1_6pne4")]
position = Vector2(569, 328) position = Vector2(249, 301)
grants_click_while_hovering = true
[node name="KnowledgeGenerator" parent="." unique_id=2139088546 instance=ExtResource("1_6pne4")] [node name="KnowledgeGenerator" parent="." unique_id=2139088546 instance=ExtResource("1_6pne4")]
visible = false visible = false
position = Vector2(761, 342) position = Vector2(262, 626)
currency = ExtResource("2_8qilt") currency = ExtResource("2_8qilt")
data = ExtResource("3_4ly0e") data = ExtResource("3_4ly0e")
@@ -43,11 +43,11 @@ currency = ExtResource("2_8qilt")
[node name="GoalsDebugUI" parent="UI" unique_id=4710697 instance=ExtResource("7_7i63j")] [node name="GoalsDebugUI" parent="UI" unique_id=4710697 instance=ExtResource("7_7i63j")]
layout_mode = 1 layout_mode = 1
offset_left = 846.0 offset_left = 1253.0
offset_top = 390.0 offset_top = 817.0
offset_right = 1153.0 offset_right = 1913.0
offset_bottom = 649.0 offset_bottom = 1076.0
[node name="GeneratorUnlockSystem" type="Node" parent="." unique_id=1909967402] [node name="GeneratorUnlockSystem" type="Node" parent="." unique_id=1909967402]
script = ExtResource("8_bhig6") script = ExtResource("8_bhig6")
goals = Array[Resource]([ExtResource("9_l765j"), ExtResource("10_x0wp6")]) goals = Array[ExtResource("8_6ri4a")]([ExtResource("9_l765j"), ExtResource("10_x0wp6")])

View File

@@ -13,14 +13,14 @@ class BuffRow extends RefCounted:
@export var _generator: CurrencyGenerator @export var _generator: CurrencyGenerator
@onready var _buy_button: Button = $VBoxContainer/HBoxContainerGenerators/BuyOneButton @onready var _buy_button: Button = $PanelContainer/VBoxContainer/HBoxContainerGenerators/BuyOneButton
@onready var _buy_max_button: Button = $VBoxContainer/HBoxContainerGenerators/BuyMaxButton @onready var _buy_max_button: Button = $PanelContainer/VBoxContainer/HBoxContainerGenerators/BuyMaxButton
@onready var _name_label: Label = $VBoxContainer/Label @onready var _name_label: Label = $PanelContainer/VBoxContainer/Label
@onready var _owned_value: Label = $VBoxContainer/GeneratorStatsGrid/OwnedValue @onready var _owned_value: Label = $PanelContainer/VBoxContainer/GeneratorStatsGrid/OwnedValue
@onready var _next_cost_value: Label = $VBoxContainer/GeneratorStatsGrid/NextCostValue @onready var _next_cost_value: Label = $PanelContainer/VBoxContainer/GeneratorStatsGrid/NextCostValue
@onready var _production_value: Label = $VBoxContainer/GeneratorStatsGrid/ProductionValue @onready var _production_value: Label = $PanelContainer/VBoxContainer/GeneratorStatsGrid/ProductionValue
@onready var _buffs_section: VBoxContainer = $VBoxContainer/BuffsSection @onready var _buffs_section: VBoxContainer = $PanelContainer/VBoxContainer/BuffsSection
@onready var _buffs_list: VBoxContainer = $VBoxContainer/BuffsSection/BuffsList @onready var _buffs_list: VBoxContainer = $PanelContainer/VBoxContainer/BuffsSection/BuffsList
var _buff_rows: Array[BuffRow] = [] var _buff_rows: Array[BuffRow] = []
var _generator_id: StringName = &"" var _generator_id: StringName = &""

View File

@@ -17,65 +17,68 @@ grow_vertical = 2
theme_override_constants/margin_left = 20 theme_override_constants/margin_left = 20
script = ExtResource("1_8wouw") script = ExtResource("1_8wouw")
[node name="VBoxContainer" type="VBoxContainer" parent="." unique_id=1139263929] [node name="PanelContainer" type="PanelContainer" parent="." unique_id=1868446780]
layout_mode = 2 layout_mode = 2
[node name="Label" type="Label" parent="VBoxContainer" unique_id=1867673612] [node name="VBoxContainer" type="VBoxContainer" parent="PanelContainer" unique_id=1139263929]
layout_mode = 2
[node name="Label" type="Label" parent="PanelContainer/VBoxContainer" unique_id=1867673612]
layout_mode = 2 layout_mode = 2
text = "Generator" text = "Generator"
[node name="HBoxContainerGenerators" type="HBoxContainer" parent="VBoxContainer" unique_id=2033456807] [node name="HBoxContainerGenerators" type="HBoxContainer" parent="PanelContainer/VBoxContainer" unique_id=2033456807]
layout_mode = 2 layout_mode = 2
theme_override_constants/separation = 8 theme_override_constants/separation = 8
[node name="BuyOneButton" type="Button" parent="VBoxContainer/HBoxContainerGenerators" unique_id=1171095139] [node name="BuyOneButton" type="Button" parent="PanelContainer/VBoxContainer/HBoxContainerGenerators" unique_id=1171095139]
layout_mode = 2 layout_mode = 2
text = "Buy x1" text = "Buy x1"
[node name="BuyMaxButton" type="Button" parent="VBoxContainer/HBoxContainerGenerators" unique_id=871628534] [node name="BuyMaxButton" type="Button" parent="PanelContainer/VBoxContainer/HBoxContainerGenerators" unique_id=871628534]
layout_mode = 2 layout_mode = 2
text = "Buy Max" text = "Buy Max"
[node name="GeneratorStatsGrid" type="GridContainer" parent="VBoxContainer" unique_id=745078076] [node name="GeneratorStatsGrid" type="GridContainer" parent="PanelContainer/VBoxContainer" unique_id=745078076]
layout_mode = 2 layout_mode = 2
columns = 2 columns = 2
[node name="OwnedTitle" type="Label" parent="VBoxContainer/GeneratorStatsGrid" unique_id=891417119] [node name="OwnedTitle" type="Label" parent="PanelContainer/VBoxContainer/GeneratorStatsGrid" unique_id=891417119]
layout_mode = 2 layout_mode = 2
text = "Owned" text = "Owned"
[node name="OwnedValue" type="Label" parent="VBoxContainer/GeneratorStatsGrid" unique_id=549086894] [node name="OwnedValue" type="Label" parent="PanelContainer/VBoxContainer/GeneratorStatsGrid" unique_id=549086894]
layout_mode = 2 layout_mode = 2
text = "0" text = "0"
[node name="NextCostTitle" type="Label" parent="VBoxContainer/GeneratorStatsGrid" unique_id=303459589] [node name="NextCostTitle" type="Label" parent="PanelContainer/VBoxContainer/GeneratorStatsGrid" unique_id=303459589]
layout_mode = 2 layout_mode = 2
text = "Next Cost" text = "Next Cost"
[node name="NextCostValue" type="Label" parent="VBoxContainer/GeneratorStatsGrid" unique_id=50480604] [node name="NextCostValue" type="Label" parent="PanelContainer/VBoxContainer/GeneratorStatsGrid" unique_id=50480604]
layout_mode = 2 layout_mode = 2
text = "0" text = "0"
[node name="ProductionTitle" type="Label" parent="VBoxContainer/GeneratorStatsGrid" unique_id=2139535774] [node name="ProductionTitle" type="Label" parent="PanelContainer/VBoxContainer/GeneratorStatsGrid" unique_id=2139535774]
layout_mode = 2 layout_mode = 2
text = "Production / sec" text = "Production / sec"
[node name="ProductionValue" type="Label" parent="VBoxContainer/GeneratorStatsGrid" unique_id=938669936] [node name="ProductionValue" type="Label" parent="PanelContainer/VBoxContainer/GeneratorStatsGrid" unique_id=938669936]
layout_mode = 2 layout_mode = 2
text = "0" text = "0"
[node name="BuffsSection" type="VBoxContainer" parent="VBoxContainer" unique_id=640102105] [node name="BuffsSection" type="VBoxContainer" parent="PanelContainer/VBoxContainer" unique_id=640102105]
layout_mode = 2 layout_mode = 2
[node name="BuffsTitle" type="Label" parent="VBoxContainer/BuffsSection" unique_id=1169271241] [node name="BuffsTitle" type="Label" parent="PanelContainer/VBoxContainer/BuffsSection" unique_id=1169271241]
layout_mode = 2 layout_mode = 2
text = "Buffs" text = "Buffs"
[node name="BuffsList" type="VBoxContainer" parent="VBoxContainer/BuffsSection" unique_id=1221547661] [node name="BuffsList" type="VBoxContainer" parent="PanelContainer/VBoxContainer/BuffsSection" unique_id=1221547661]
layout_mode = 2 layout_mode = 2
theme_override_constants/separation = 4 theme_override_constants/separation = 4
[connection signal="mouse_entered" from="." to="." method="_on_mouse_entered"] [connection signal="mouse_entered" from="." to="." method="_on_mouse_entered"]
[connection signal="mouse_exited" from="." to="." method="_on_mouse_exited"] [connection signal="mouse_exited" from="." to="." method="_on_mouse_exited"]
[connection signal="pressed" from="VBoxContainer/HBoxContainerGenerators/BuyOneButton" to="." method="_on_buy_pressed"] [connection signal="pressed" from="PanelContainer/VBoxContainer/HBoxContainerGenerators/BuyOneButton" to="." method="_on_buy_pressed"]
[connection signal="pressed" from="VBoxContainer/HBoxContainerGenerators/BuyMaxButton" to="." method="_on_buy_max_pressed"] [connection signal="pressed" from="PanelContainer/VBoxContainer/HBoxContainerGenerators/BuyMaxButton" to="." method="_on_buy_max_pressed"]

View File

@@ -2,14 +2,16 @@
[ext_resource type="Script" uid="uid://dnhocfsuvmeyb" path="res://core/generator/generator_buff_data.gd" id="1_1wyaq"] [ext_resource type="Script" uid="uid://dnhocfsuvmeyb" path="res://core/generator/generator_buff_data.gd" id="1_1wyaq"]
[ext_resource type="Resource" uid="uid://brqaojindcxa5" path="res://idles/currencies/magic.tres" id="2_0j56j"] [ext_resource type="Resource" uid="uid://brqaojindcxa5" path="res://idles/currencies/magic.tres" id="2_0j56j"]
[ext_resource type="Resource" uid="uid://qyxct5gbrxwa" path="res://idles/goals/magic_total_30.tres" id="3_bsqao"]
[resource] [resource]
script = ExtResource("1_1wyaq") script = ExtResource("1_1wyaq")
id = &"magic_click_focus" id = &"magic_click_focus"
kind = 1 kind = 1
text = "Apprentice Gloves" text = "Apprentice Gloves"
max_level = 30 max_level = 4
effect_increment = 0.35 unlock_goal = ExtResource("3_bsqao")
effect_increment = 1.0
cost_currency = ExtResource("2_0j56j") cost_currency = ExtResource("2_0j56j")
base_cost_mantissa = 8.0 base_cost_mantissa = 8.0
cost_multiplier = 1.55 cost_multiplier = 1.55