RuneHive-Game
Loading...
Searching...
No Matches
ZulrahConstants.java
Go to the documentation of this file.
1package com.runehive.content.activity.impl.zulrah;
2
3import com.runehive.game.world.position.Position;
4
5/**
6 * Holds all the zulrah constants.
7 *
8 * @author Daniel.
9 */
10public class ZulrahConstants {
11
12 /** The maximum amount of clouds that zulrah can spawn at a time. */
13 public static final int MAXIMUM_CLOUDS = 4;
14
15 /** The maximum amount of snakelings that zulrah can spawn at a time. */
16 public static final int MAXIMUM_SNAKELINGS = 4;
17
18 /** The zulrah identifications. */
19 public static final Integer[] ZULRAH_IDS = new Integer[]{2042, 2043, 2044};
20
21 /** All the possible positions zulrah can move to. */
22 public static final Position[] LOCATIONS = {new Position(2266, 3072), new Position(2276, 3074), new Position(2273, 3064)};
23
24 /** All the possible positions zulrah can spawn his clouds for. */
25 public static final Position[] CLOUD_POSITIONS = {new Position(2272, 3076), new Position(2272, 3072), new Position(2270, 3069), new Position(2267, 3069), new Position(2264, 3069), new Position(2262, 3072), new Position(2262, 3076)};
26
27 public static final Position[] SNAKELINGS_POSITIONS = {
28 new Position(2263, 3075),
29 new Position(2263, 3071),
30 new Position(2268, 3069),
31 new Position(2273, 3071),
32 new Position(2273, 3077)
33 };
34}
static final Position[] CLOUD_POSITIONS
All the possible positions zulrah can spawn his clouds for.
static final int MAXIMUM_CLOUDS
The maximum amount of clouds that zulrah can spawn at a time.
static final Position[] LOCATIONS
All the possible positions zulrah can move to.
static final int MAXIMUM_SNAKELINGS
The maximum amount of snakelings that zulrah can spawn at a time.
static final Integer[] ZULRAH_IDS
The zulrah identifications.
Represents a single tile on the game world.
Definition Position.java:14