RuneHive-Game
Loading...
Searching...
No Matches
Bait.java
Go to the documentation of this file.
1
package
com.runehive.content.skill.impl.hunter.trap;
2
3
public
enum
Bait
{
4
/**
5
* Standard bait type for box traps, will increase the catch rate of
6
* Chinchompa hunter NPCs
7
*/
8
SPICY_MINCED_MEAT
(9996),
9
10
/**
11
* Standard bait type for snare traps, will increase the catch rate of bird
12
* type hunter NPCs
13
*/
14
TOMATO
(1982);
15
16
private
final
int
baitId
;
17
18
Bait
(
int
baitId
) {
19
this.baitId =
baitId
;
20
}
21
22
public
int
getBaitId
() {
23
return
baitId
;
24
}
25
26
}
27
com.runehive.content.skill.impl.hunter.trap.Bait.baitId
final int baitId
Definition
Bait.java:16
com.runehive.content.skill.impl.hunter.trap.Bait.getBaitId
int getBaitId()
Definition
Bait.java:22
com.runehive.content.skill.impl.hunter.trap.Bait.TOMATO
TOMATO
Standard bait type for snare traps, will increase the catch rate of bird type hunter NPCs.
Definition
Bait.java:14
com.runehive.content.skill.impl.hunter.trap.Bait.SPICY_MINCED_MEAT
SPICY_MINCED_MEAT
Standard bait type for box traps, will increase the catch rate of Chinchompa hunter NPCs.
Definition
Bait.java:8
com.runehive.content.skill.impl.hunter.trap.Bait.Bait
Bait(int baitId)
Definition
Bait.java:18