> For the complete documentation index, see [llms.txt](https://peuren.gitbook.io/peuren/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://peuren.gitbook.io/peuren/peuren_fishing/configuration/fishing-rods.md).

# Fishing Rods

Configuration guide for creating or editing the fishing rods.

## Fishing Rod Configuration

```lua
Config.FishingRods = { --Don't touch this
    ["basicfishingrod"] = { -- Item Name
        maxDistance = 10.0, -- Max distance of the line
        maxWeight = 5000, -- Max Weight of the fish the player can fish out with this rod.
    },
    ["advancedfishingrod"] = { -- Item Name
        maxDistance = 20.0, -- Max distance of the line
        maxWeight = 10000, -- Max Weight of the fish the player can fish out with this rod.
    },
    ["profishingrod"] = { -- Item Name
        maxDistance = 30.0, -- Max distance of the line
        maxWeight = 20000, -- Max Weight of the fish the player can fish out with this rod.
    },
}

Config.FishingRodProp = "prop_fishing_rod_01" -- The prop used for the fishing rod.
```
