RuneHive-Game
Loading...
Searching...
No Matches
ShootingStarLocations.java
Go to the documentation of this file.
1
package
com.runehive.content.shootingstar;
2
3
import
com.runehive.game.world.position.Position;
4
5
public
enum
ShootingStarLocations
{
6
FALADOR
(
new
Position
(3053, 3301, 0),
new
String[] {
"Falador farming patches"
,
"at the"
}),
7
EDGEVILLE
(
new
Position
(3100, 3484, 0),
new
String[] {
"Edgeville bank"
,
"near"
}),
8
GNOME_AGILITY_COURSE
(
new
Position
(2480, 3433, 0),
new
String[] {
"Gnome agility course"
,
"by the"
}),
9
WILDERNESS_AGILITY_COURSE
(
new
Position
(2995, 3911, 0),
new
String[] {
"Wildy agility course"
,
"outside the"
}),
10
WEST_DRAGONS
(
new
Position
(2986, 3599, 0),
new
String[] {
"West dragons"
,
"at the"
}),
11
VOID_KNIGHT_ISLAND
(
new
Position
(2666, 2648, 0),
new
String[] {
"Void Knight's island"
,
"at the"
}),
12
BARROWS_HILL
(
new
Position
(3566, 3297, 0),
new
String[] {
"Barrows hills"
,
"on top of the"
}),
13
DUEL_ARENA(
new
Position
(3368, 3269, 0),
new
String[] {
"Duel Arena"
,
"at the"
})
14
;
15
16
public
Position
starPosition
;
17
public
String[]
location
;
18
19
ShootingStarLocations
(
Position
starPosition
, String[]
location
) {
20
this.starPosition =
starPosition
;
21
this.location =
location
;
22
}
23
}
com.runehive.game.world.position.Position
Represents a single tile on the game world.
Definition
Position.java:14
com.runehive.content.shootingstar.ShootingStarLocations.VOID_KNIGHT_ISLAND
VOID_KNIGHT_ISLAND
Definition
ShootingStarLocations.java:11
com.runehive.content.shootingstar.ShootingStarLocations.ShootingStarLocations
ShootingStarLocations(Position starPosition, String[] location)
Definition
ShootingStarLocations.java:19
com.runehive.content.shootingstar.ShootingStarLocations.BARROWS_HILL
BARROWS_HILL
Definition
ShootingStarLocations.java:12
com.runehive.content.shootingstar.ShootingStarLocations.EDGEVILLE
EDGEVILLE
Definition
ShootingStarLocations.java:7
com.runehive.content.shootingstar.ShootingStarLocations.WILDERNESS_AGILITY_COURSE
WILDERNESS_AGILITY_COURSE
Definition
ShootingStarLocations.java:9
com.runehive.content.shootingstar.ShootingStarLocations.location
String[] location
Definition
ShootingStarLocations.java:17
com.runehive.content.shootingstar.ShootingStarLocations.FALADOR
FALADOR
Definition
ShootingStarLocations.java:6
com.runehive.content.shootingstar.ShootingStarLocations.starPosition
Position starPosition
Definition
ShootingStarLocations.java:16
com.runehive.content.shootingstar.ShootingStarLocations.GNOME_AGILITY_COURSE
GNOME_AGILITY_COURSE
Definition
ShootingStarLocations.java:8
com.runehive.content.shootingstar.ShootingStarLocations.WEST_DRAGONS
WEST_DRAGONS
Definition
ShootingStarLocations.java:10