RuneHive-Game
Loading...
Searching...
No Matches
Bait.java
Go to the documentation of this file.
1package com.runehive.content.skill.impl.hunter.trap;
2
3public enum Bait {
4 /**
5 * Standard bait type for box traps, will increase the catch rate of
6 * Chinchompa hunter NPCs
7 */
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
TOMATO
Standard bait type for snare traps, will increase the catch rate of bird type hunter NPCs.
Definition Bait.java:14
SPICY_MINCED_MEAT
Standard bait type for box traps, will increase the catch rate of Chinchompa hunter NPCs.
Definition Bait.java:8