public abstract class WauzBaseInstance
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
private java.lang.String |
displaySubtitle
The display subtitle of the instance.
|
private java.lang.String |
displayTitle
The display title of the instance.
|
private java.lang.String |
instanceName
The name of the instance.
|
private java.util.List<java.lang.String> |
keyIds
The list of all key ids of the instance.
|
private int |
maxDeaths
The maximum deaths per player of the instance.
|
private int |
maxPlayers
The maximum players of the instance.
|
private InstanceMobArena |
mobArena
The mob arena of the instance.
|
private java.lang.String |
soundtrackName
The soundtrack file name of the instance.
|
private java.util.List<java.lang.Float> |
spawnCoords
The coordinates to spawn players.
|
private WauzInstanceType |
type
The type of the instance.
|
| Constructor and Description |
|---|
WauzBaseInstance() |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getDisplaySubtitle() |
java.lang.String |
getDisplayTitle() |
java.lang.String |
getInstanceName() |
java.util.List<java.lang.String> |
getKeyIds() |
int |
getMaxDeaths() |
int |
getMaxPlayers() |
InstanceMobArena |
getMobArena() |
java.lang.String |
getSoundtrackName() |
java.util.List<java.lang.Float> |
getSpawnCoords() |
WauzInstanceType |
getType() |
void |
setDisplaySubtitle(java.lang.String displaySubtitle) |
void |
setDisplayTitle(java.lang.String displayTitle) |
void |
setInstanceName(java.lang.String instanceName) |
void |
setKeyIds(java.util.List<java.lang.String> keyIds) |
void |
setMaxDeaths(int maxDeaths) |
void |
setMaxPlayers(int maxPlayers) |
void |
setMobArena(InstanceMobArena mobArena) |
void |
setSoundtrackName(java.lang.String soundtrackName) |
void |
setSpawnCoords(java.util.List<java.lang.Float> spawnCoords) |
void |
setType(WauzInstanceType type) |
private java.lang.String instanceName
private WauzInstanceType type
private java.util.List<java.lang.Float> spawnCoords
private int maxPlayers
private int maxDeaths
private java.lang.String displayTitle
private java.lang.String displaySubtitle
private java.lang.String soundtrackName
private java.util.List<java.lang.String> keyIds
private InstanceMobArena mobArena
public java.lang.String getInstanceName()
public void setInstanceName(java.lang.String instanceName)
instanceName - The new name of the instance.public WauzInstanceType getType()
public void setType(WauzInstanceType type)
type - The new type of the instance.public java.util.List<java.lang.Float> getSpawnCoords()
public void setSpawnCoords(java.util.List<java.lang.Float> spawnCoords)
spawnCoords - The new coordinates to spawn players.public int getMaxPlayers()
public void setMaxPlayers(int maxPlayers)
maxPlayers - The new maximum players of the instance.public int getMaxDeaths()
public void setMaxDeaths(int maxDeaths)
maxDeaths - The new maximum deaths per player of the instance.public java.lang.String getDisplayTitle()
public void setDisplayTitle(java.lang.String displayTitle)
displayTitle - The new display title of the instance.public java.lang.String getDisplaySubtitle()
public void setDisplaySubtitle(java.lang.String displaySubtitle)
displaySubtitle - The new display subtitle of the instance.public java.lang.String getSoundtrackName()
public void setSoundtrackName(java.lang.String soundtrackName)
soundtrackName - The new soundtrack file name of the instance.public java.util.List<java.lang.String> getKeyIds()
public void setKeyIds(java.util.List<java.lang.String> keyIds)
keyIds - The new list of all key ids of the instance.public InstanceMobArena getMobArena()
public void setMobArena(InstanceMobArena mobArena)
mobArena - The new mob arena of the instance.