Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ enum class FishingTool(
SMALL_NET("You cast out your net...", id = 303, animation = 620),
BIG_NET("You cast out your net...", id = 305, animation = 620),
HARPOON("You start harpooning fish...", id = 311, animation = 618),
FISHING_ROD("You attempt to catch a fish...", id = 307, animation = 622, bait = 313, baitName = "feathers"),
FLY_FISHING_ROD("You attempt to catch a fish...", id = 309, animation = 622, bait = 314, baitName = "fishing bait");
FISHING_ROD("You attempt to catch a fish...", id = 307, animation = 622, bait = 314, baitName = "fishing bait"),
FLY_FISHING_ROD("You attempt to catch a fish...", id = 309, animation = 622, bait = 313, baitName = "feathers");

/**
* The [Animation] played when fishing with this tool.
Expand All @@ -29,4 +29,4 @@ enum class FishingTool(
* The name of this tool, formatted so it can be inserted into a message.
*/
val formattedName by lazy { Definitions.item(id).name.toLowerCase() }
}
}