mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 20:29:20 +00:00
51 lines
1.9 KiB
Java
51 lines
1.9 KiB
Java
package com.earth2me.essentials.signs;
|
|
|
|
import com.earth2me.essentials.ChargeException;
|
|
import com.earth2me.essentials.Trade;
|
|
import com.earth2me.essentials.User;
|
|
import net.ess3.api.IEssentials;
|
|
|
|
import static com.earth2me.essentials.I18n.tl;
|
|
|
|
|
|
public class SignWeather extends EssentialsSign {
|
|
public SignWeather() {
|
|
super("Weather");
|
|
}
|
|
|
|
@Override
|
|
protected boolean onSignCreate(final ISign sign, final User player, final String username, final IEssentials ess) throws SignException {
|
|
validateTrade(sign, 2, ess);
|
|
final String timeString = sign.getLine(1);
|
|
if ("Sun".equalsIgnoreCase(timeString)) {
|
|
sign.setLine(1, "§2Sun");
|
|
return true;
|
|
}
|
|
if ("Storm".equalsIgnoreCase(timeString)) {
|
|
sign.setLine(1, "§2Storm");
|
|
return true;
|
|
}
|
|
sign.setLine(1, "§c<sun|storm>");
|
|
throw new SignException(tl("onlySunStorm"));
|
|
}
|
|
|
|
@Override
|
|
protected boolean onSignInteract(final ISign sign, final User player, final String username, final IEssentials ess) throws SignException, ChargeException {
|
|
final Trade charge = getTrade(sign, 2, ess);
|
|
charge.isAffordableFor(player);
|
|
final String weatherString = sign.getLine(1);
|
|
if ("§2Sun".equalsIgnoreCase(weatherString)) {
|
|
player.getWorld().setStorm(false);
|
|
charge.charge(player);
|
|
Trade.log("Sign", "WeatherSun", "Interact", username, null, username, charge, sign.getBlock().getLocation(), ess);
|
|
return true;
|
|
}
|
|
if ("§2Storm".equalsIgnoreCase(weatherString)) {
|
|
player.getWorld().setStorm(true);
|
|
charge.charge(player);
|
|
Trade.log("Sign", "WeatherStorm", "Interact", username, null, username, charge, sign.getBlock().getLocation(), ess);
|
|
return true;
|
|
}
|
|
throw new SignException(tl("onlySunStorm"));
|
|
}
|
|
}
|