2026-07-25 11:05:37 -04:00
|
|
|
class_name FishData
|
|
|
|
|
extends Resource
|
|
|
|
|
|
2026-07-25 14:02:02 -04:00
|
|
|
const CatchDifficultyProfileType = preload(
|
|
|
|
|
"res://fishing/catch_difficulty_profile.gd"
|
|
|
|
|
)
|
|
|
|
|
|
2026-07-25 11:05:37 -04:00
|
|
|
@export var id: StringName
|
|
|
|
|
@export var display_name: String
|
|
|
|
|
@export var icon: Texture2D
|
2026-07-25 14:02:02 -04:00
|
|
|
@export var catch_profile: CatchDifficultyProfileType
|