RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
PoisonType.java
1
package
com.osroyale.game.world.entity.combat;
2
44
45
public
enum
PoisonType
{
46
50
DEFAULT_MAGIC
(2),
51
55
DEFAULT_RANGED
(2),
56
60
STRONG_RANGED
(3),
61
65
SUPER_MAGIC
(4),
66
70
SUPER_RANGED
(4),
71
75
DEFAULT_MELEE
(4),
76
80
STRONG_MELEE
(5),
81
85
SUPER_MELEE
(6),
86
90
WEAK_NPC
(6),
91
95
DEFAULT_NPC
(8),
96
100
STRONG_NPC
(12),
101
105
SUPER_NPC
(16),
106
108
EXTRAORDINARY_NPC
(20);
109
113
private
final
int
damage;
114
119
PoisonType
(
int
damage) {
120
this.damage = damage;
121
}
122
127
public
final
int
getDamage
() {
128
return
damage;
129
}
130
}
com.osroyale.game.world.entity.combat.PoisonType.DEFAULT_NPC
DEFAULT_NPC
Definition
PoisonType.java:95
com.osroyale.game.world.entity.combat.PoisonType.SUPER_MELEE
SUPER_MELEE
Definition
PoisonType.java:85
com.osroyale.game.world.entity.combat.PoisonType.WEAK_NPC
WEAK_NPC
Definition
PoisonType.java:90
com.osroyale.game.world.entity.combat.PoisonType.DEFAULT_RANGED
DEFAULT_RANGED
Definition
PoisonType.java:55
com.osroyale.game.world.entity.combat.PoisonType.PoisonType
PoisonType(int damage)
Definition
PoisonType.java:119
com.osroyale.game.world.entity.combat.PoisonType.DEFAULT_MAGIC
DEFAULT_MAGIC
Definition
PoisonType.java:50
com.osroyale.game.world.entity.combat.PoisonType.SUPER_NPC
SUPER_NPC
Definition
PoisonType.java:105
com.osroyale.game.world.entity.combat.PoisonType.DEFAULT_MELEE
DEFAULT_MELEE
Definition
PoisonType.java:75
com.osroyale.game.world.entity.combat.PoisonType.STRONG_NPC
STRONG_NPC
Definition
PoisonType.java:100
com.osroyale.game.world.entity.combat.PoisonType.getDamage
final int getDamage()
Definition
PoisonType.java:127
com.osroyale.game.world.entity.combat.PoisonType.STRONG_RANGED
STRONG_RANGED
Definition
PoisonType.java:60
com.osroyale.game.world.entity.combat.PoisonType.STRONG_MELEE
STRONG_MELEE
Definition
PoisonType.java:80
com.osroyale.game.world.entity.combat.PoisonType.EXTRAORDINARY_NPC
EXTRAORDINARY_NPC
Definition
PoisonType.java:108
com.osroyale.game.world.entity.combat.PoisonType.SUPER_RANGED
SUPER_RANGED
Definition
PoisonType.java:70
com.osroyale.game.world.entity.combat.PoisonType.SUPER_MAGIC
SUPER_MAGIC
Definition
PoisonType.java:65