Expand bait progression and retune fishing

This commit is contained in:
Alexander Sellite 2026-08-08 00:34:06 -04:00
parent 2f30691808
commit 2a5e0a8f26
21 changed files with 555 additions and 80 deletions

View file

@ -1,4 +1,4 @@
[gd_resource type="Resource" script_class="ItemCatalog" load_steps=10 format=3]
[gd_resource type="Resource" script_class="ItemCatalog" load_steps=16 format=3]
[ext_resource type="Script" path="res://items/item_catalog.gd" id="1_script"]
[ext_resource type="Resource" path="res://items/catalog/basic_fishing_rod.tres" id="2_rod"]
@ -9,7 +9,13 @@
[ext_resource type="Resource" path="res://items/catalog/cooler_expansion.tres" id="7_cooler"]
[ext_resource type="Resource" path="res://items/catalog/art_kit.tres" id="8_art_kit"]
[ext_resource type="Resource" path="res://items/catalog/worms.tres" id="9_worms"]
[ext_resource type="Resource" path="res://items/catalog/snails.tres" id="10_snails"]
[ext_resource type="Resource" path="res://items/catalog/shrimp.tres" id="11_shrimp"]
[ext_resource type="Resource" path="res://items/catalog/squid_chunks.tres" id="12_squid"]
[ext_resource type="Resource" path="res://items/catalog/whole_anchovy.tres" id="13_anchovy"]
[ext_resource type="Resource" path="res://items/catalog/whole_sardine.tres" id="14_sardine"]
[ext_resource type="Resource" path="res://items/catalog/luminous_roe.tres" id="15_roe"]
[resource]
script = ExtResource("1_script")
items = [ExtResource("2_rod"), ExtResource("3_coffee"), ExtResource("4_energy"), ExtResource("5_snack"), ExtResource("6_finder"), ExtResource("7_cooler"), ExtResource("8_art_kit"), ExtResource("9_worms")]
items = [ExtResource("2_rod"), ExtResource("3_coffee"), ExtResource("4_energy"), ExtResource("5_snack"), ExtResource("6_finder"), ExtResource("7_cooler"), ExtResource("8_art_kit"), ExtResource("9_worms"), ExtResource("10_snails"), ExtResource("11_shrimp"), ExtResource("12_squid"), ExtResource("13_anchovy"), ExtResource("14_sardine"), ExtResource("15_roe")]

View file

@ -0,0 +1,14 @@
[gd_resource type="Resource" script_class="ItemData" load_steps=2 format=3]
[ext_resource type="Script" path="res://items/item_data.gd" id="1"]
[resource]
script = ExtResource("1")
item_id = &"luminous_roe"
display_name = "luminous roe"
description = "rare glowing roe with the strongest rare catch odds."
category = 2
bait_tags = Array[StringName]([&"bait_rarity_6"])
stackable = true
max_stack = 10
hotbar_allowed = false

14
items/catalog/shrimp.tres Normal file
View file

@ -0,0 +1,14 @@
[gd_resource type="Resource" script_class="ItemData" load_steps=2 format=3]
[ext_resource type="Script" path="res://items/item_data.gd" id="1"]
[resource]
script = ExtResource("1")
item_id = &"shrimp"
display_name = "shrimp"
description = "lively bait that noticeably improves rare catch chances."
category = 2
bait_tags = Array[StringName]([&"bait_rarity_2"])
stackable = true
max_stack = 10
hotbar_allowed = false

14
items/catalog/snails.tres Normal file
View file

@ -0,0 +1,14 @@
[gd_resource type="Resource" script_class="ItemData" load_steps=2 format=3]
[ext_resource type="Script" path="res://items/item_data.gd" id="1"]
[resource]
script = ExtResource("1")
item_id = &"snails"
display_name = "snails"
description = "slow-moving bait with a better chance for rarer catches."
category = 2
bait_tags = Array[StringName]([&"bait_rarity_1"])
stackable = true
max_stack = 10
hotbar_allowed = false

View file

@ -0,0 +1,14 @@
[gd_resource type="Resource" script_class="ItemData" load_steps=2 format=3]
[ext_resource type="Script" path="res://items/item_data.gd" id="1"]
[resource]
script = ExtResource("1")
item_id = &"squid_chunks"
display_name = "squid chunks"
description = "rich cut bait that strongly favors rarer catches."
category = 2
bait_tags = Array[StringName]([&"bait_rarity_3"])
stackable = true
max_stack = 10
hotbar_allowed = false

View file

@ -0,0 +1,14 @@
[gd_resource type="Resource" script_class="ItemData" load_steps=2 format=3]
[ext_resource type="Script" path="res://items/item_data.gd" id="1"]
[resource]
script = ExtResource("1")
item_id = &"whole_anchovy"
display_name = "whole anchovy"
description = "premium whole bait with high rare catch potential."
category = 2
bait_tags = Array[StringName]([&"bait_rarity_4"])
stackable = true
max_stack = 10
hotbar_allowed = false

View file

@ -0,0 +1,14 @@
[gd_resource type="Resource" script_class="ItemData" load_steps=2 format=3]
[ext_resource type="Script" path="res://items/item_data.gd" id="1"]
[resource]
script = ExtResource("1")
item_id = &"whole_sardine"
display_name = "whole sardine"
description = "valuable whole bait tuned for exceptional catches."
category = 2
bait_tags = Array[StringName]([&"bait_rarity_5"])
stackable = true
max_stack = 10
hotbar_allowed = false

View file

@ -1,14 +1,16 @@
[gd_resource type="Resource" script_class="ItemData" load_steps=2 format=3]
[gd_resource type="Resource" script_class="ItemData" load_steps=3 format=3]
[ext_resource type="Script" path="res://items/item_data.gd" id="1"]
[ext_resource type="Texture2D" path="res://items/icons/bait/64_bait_worms.png" id="2_icon"]
[resource]
script = ExtResource("1")
item_id = &"worms"
display_name = "worms"
description = "common bait. fills your tacklebox at the fishing shop."
description = "basic bait that opens a small chance for rarer catches."
icon = ExtResource("2_icon")
category = 2
bait_tags = Array[StringName]([&"worm"])
bait_tags = Array[StringName]([&"worm", &"bait_rarity_0"])
stackable = true
max_stack = 10
hotbar_allowed = false

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

View file

@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bn6815x0rrspw"
path="res://.godot/imported/64_bait_worms.png-c9f31d77527e73888fc56963d4e78e30.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://items/icons/bait/64_bait_worms.png"
dest_files=["res://.godot/imported/64_bait_worms.png-c9f31d77527e73888fc56963d4e78e30.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1