TModLoader v1.4.4.9
TModLoader source code documentation
Loading...
Searching...
No Matches
PlayerFishingConditions.cs
Go to the documentation of this file.
2
4{
5 public float LevelMultipliers;
6
7 public int FinalFishingLevel;
8
9 public Item Pole;
10
11 public Item Bait;
12
13 public int PolePower => Pole?.fishingPole ?? 0;
14
15 public int PoleItemType => Pole?.type ?? 0;
16
17 public int BaitPower => Bait?.bait ?? 0;
18
19 public int BaitItemType => Bait?.type ?? 0;
20}
int fishingPole
The numerical value this item adds to a player's fishing skill when held. If greater than 0,...
Definition Item.cs:232
int bait
The numerical value this item adds to a player's fishing skill when used as bait. If greater than 0,...
Definition Item.cs:241
int type
The Item ID of this item. The Item ID is a unique number assigned to each Item loaded into the game....
Definition Item.cs:345