Search in sources :

Example 1 with BossBarFeature

use of com.voxelgameslib.voxelgameslib.feature.features.BossBarFeature in project VoxelGamesLibv2 by VoxelGamesLib.

the class EditModePhase method init.

@Override
public void init() {
    setName("EditMode");
    super.init();
    setAllowJoin(true);
    setAllowSpectate(false);
    AutoRespawnFeature autoRespawnFeature = getGame().createFeature(AutoRespawnFeature.class, this);
    addFeature(autoRespawnFeature);
    BossBarFeature bossBarFeature = getGame().createFeature(BossBarFeature.class, this);
    bossBarFeature.setMessage("Edit Mode active");
    bossBarFeature.setColor(BarColor.RED);
    addFeature(bossBarFeature);
    ClearInventoryFeature clearInventoryFeature = getGame().createFeature(ClearInventoryFeature.class, this);
    addFeature(clearInventoryFeature);
    DoubleJumpFeature doubleJumpFeature = getGame().createFeature(DoubleJumpFeature.class, this);
    addFeature(doubleJumpFeature);
    GameModeFeature gameModeFeature = getGame().createFeature(GameModeFeature.class, this);
    gameModeFeature.setGameMode(org.bukkit.GameMode.CREATIVE);
    addFeature(gameModeFeature);
    JumpPadFeature jumpPadFeature = getGame().createFeature(JumpPadFeature.class, this);
    addFeature(jumpPadFeature);
    VoidTeleportFeature voidTeleportFeature = getGame().createFeature(VoidTeleportFeature.class, this);
    addFeature(voidTeleportFeature);
    SpawnFeature spawnFeature = getGame().createFeature(SpawnFeature.class, this);
    addFeature(spawnFeature);
    MapFeature mapFeature = getGame().createFeature(MapFeature.class, this);
    addFeature(mapFeature);
    MobFeature mobFeature = getGame().createFeature(MobFeature.class, this);
    mobFeature.setRemoveExisting(false);
    addFeature(mobFeature);
    TimeFeature timeFeature = getGame().createFeature(TimeFeature.class, this);
    addFeature(timeFeature);
}
Also used : JumpPadFeature(com.voxelgameslib.voxelgameslib.feature.features.JumpPadFeature) AutoRespawnFeature(com.voxelgameslib.voxelgameslib.feature.features.AutoRespawnFeature) GameModeFeature(com.voxelgameslib.voxelgameslib.feature.features.GameModeFeature) VoidTeleportFeature(com.voxelgameslib.voxelgameslib.feature.features.VoidTeleportFeature) BossBarFeature(com.voxelgameslib.voxelgameslib.feature.features.BossBarFeature) TimeFeature(com.voxelgameslib.voxelgameslib.feature.features.TimeFeature) ClearInventoryFeature(com.voxelgameslib.voxelgameslib.feature.features.ClearInventoryFeature) MobFeature(com.voxelgameslib.voxelgameslib.feature.features.MobFeature) MapFeature(com.voxelgameslib.voxelgameslib.feature.features.MapFeature) SpawnFeature(com.voxelgameslib.voxelgameslib.feature.features.SpawnFeature) DoubleJumpFeature(com.voxelgameslib.voxelgameslib.feature.features.DoubleJumpFeature)

Example 2 with BossBarFeature

use of com.voxelgameslib.voxelgameslib.feature.features.BossBarFeature in project VoxelGamesLibv2 by VoxelGamesLib.

the class LobbyPhase method init.

@Override
public void init() {
    setName("LobbyPhase");
    super.init();
    setAllowJoin(true);
    setAllowSpectate(false);
    MapFeature mapFeature = getGame().createFeature(MapFeature.class, this);
    mapFeature.setShouldUnload(false);
    mapFeature.setType(MapFeature.Type.LOBBY);
    addFeature(mapFeature);
    SpawnFeature spawnFeature = getGame().createFeature(SpawnFeature.class, this);
    addFeature(spawnFeature);
    NoBlockBreakFeature noBlockBreakFeature = getGame().createFeature(NoBlockBreakFeature.class, this);
    addFeature(noBlockBreakFeature);
    NoBlockPlaceFeature noBlockPlaceFeature = getGame().createFeature(NoBlockPlaceFeature.class, this);
    addFeature(noBlockPlaceFeature);
    ClearInventoryFeature clearInventoryFeature = getGame().createFeature(ClearInventoryFeature.class, this);
    addFeature(clearInventoryFeature);
    NoDamageFeature noDamageFeature = getGame().createFeature(NoDamageFeature.class, this);
    addFeature(noDamageFeature);
    HealFeature healFeature = getGame().createFeature(HealFeature.class, this);
    addFeature(healFeature);
    GameModeFeature gameModeFeature = getGame().createFeature(GameModeFeature.class, this);
    gameModeFeature.setGameMode(GameMode.ADVENTURE);
    addFeature(gameModeFeature);
    LobbyFeature lobbyFeature = getGame().createFeature(LobbyFeature.class, this);
    addFeature(lobbyFeature);
    NoHungerLossFeature noHungerLossFeature = getGame().createFeature(NoHungerLossFeature.class, this);
    addFeature(noHungerLossFeature);
    ScoreboardFeature scoreboardFeature = getGame().createFeature(ScoreboardFeature.class, this);
    addFeature(scoreboardFeature);
    BossBarFeature bossBarFeature = getGame().createFeature(BossBarFeature.class, this);
    addFeature(bossBarFeature);
    MobFeature mobFeature = getGame().createFeature(MobFeature.class, this);
    addFeature(mobFeature);
}
Also used : MobFeature(com.voxelgameslib.voxelgameslib.feature.features.MobFeature) NoBlockBreakFeature(com.voxelgameslib.voxelgameslib.feature.features.NoBlockBreakFeature) GameModeFeature(com.voxelgameslib.voxelgameslib.feature.features.GameModeFeature) BossBarFeature(com.voxelgameslib.voxelgameslib.feature.features.BossBarFeature) NoDamageFeature(com.voxelgameslib.voxelgameslib.feature.features.NoDamageFeature) NoHungerLossFeature(com.voxelgameslib.voxelgameslib.feature.features.NoHungerLossFeature) ClearInventoryFeature(com.voxelgameslib.voxelgameslib.feature.features.ClearInventoryFeature) MapFeature(com.voxelgameslib.voxelgameslib.feature.features.MapFeature) NoBlockPlaceFeature(com.voxelgameslib.voxelgameslib.feature.features.NoBlockPlaceFeature) SpawnFeature(com.voxelgameslib.voxelgameslib.feature.features.SpawnFeature) HealFeature(com.voxelgameslib.voxelgameslib.feature.features.HealFeature) ScoreboardFeature(com.voxelgameslib.voxelgameslib.feature.features.ScoreboardFeature) LobbyFeature(com.voxelgameslib.voxelgameslib.feature.features.LobbyFeature)

Aggregations

BossBarFeature (com.voxelgameslib.voxelgameslib.feature.features.BossBarFeature)2 ClearInventoryFeature (com.voxelgameslib.voxelgameslib.feature.features.ClearInventoryFeature)2 GameModeFeature (com.voxelgameslib.voxelgameslib.feature.features.GameModeFeature)2 MapFeature (com.voxelgameslib.voxelgameslib.feature.features.MapFeature)2 MobFeature (com.voxelgameslib.voxelgameslib.feature.features.MobFeature)2 SpawnFeature (com.voxelgameslib.voxelgameslib.feature.features.SpawnFeature)2 AutoRespawnFeature (com.voxelgameslib.voxelgameslib.feature.features.AutoRespawnFeature)1 DoubleJumpFeature (com.voxelgameslib.voxelgameslib.feature.features.DoubleJumpFeature)1 HealFeature (com.voxelgameslib.voxelgameslib.feature.features.HealFeature)1 JumpPadFeature (com.voxelgameslib.voxelgameslib.feature.features.JumpPadFeature)1 LobbyFeature (com.voxelgameslib.voxelgameslib.feature.features.LobbyFeature)1 NoBlockBreakFeature (com.voxelgameslib.voxelgameslib.feature.features.NoBlockBreakFeature)1 NoBlockPlaceFeature (com.voxelgameslib.voxelgameslib.feature.features.NoBlockPlaceFeature)1 NoDamageFeature (com.voxelgameslib.voxelgameslib.feature.features.NoDamageFeature)1 NoHungerLossFeature (com.voxelgameslib.voxelgameslib.feature.features.NoHungerLossFeature)1 ScoreboardFeature (com.voxelgameslib.voxelgameslib.feature.features.ScoreboardFeature)1 TimeFeature (com.voxelgameslib.voxelgameslib.feature.features.TimeFeature)1 VoidTeleportFeature (com.voxelgameslib.voxelgameslib.feature.features.VoidTeleportFeature)1