42 lines
1.2 KiB
Java
42 lines
1.2 KiB
Java
package com.massivecraft.factions.cmd;
|
|
|
|
import com.massivecraft.factions.Faction;
|
|
import com.massivecraft.factions.struct.Permission;
|
|
import com.massivecraft.factions.zcore.util.TL;
|
|
|
|
public class CmdStrikesTake extends FCommand {
|
|
|
|
/**
|
|
* @author Driftay
|
|
*/
|
|
|
|
public CmdStrikesTake() {
|
|
super();
|
|
this.aliases.addAll(Aliases.strikes_take);
|
|
this.requiredArgs.add(0, "faction");
|
|
this.requiredArgs.add(1, "number of strikes");
|
|
|
|
this.requirements = new CommandRequirements.Builder(Permission.SETSTRIKES)
|
|
.playerOnly()
|
|
.build();
|
|
}
|
|
|
|
@Override
|
|
public void perform(CommandContext context) {
|
|
Faction target = context.argAsFaction(0);
|
|
if (target == null || target.isSystemFaction()) {
|
|
context.msg(TL.COMMAND_STRIKES_TARGET_INVALID, context.argAsString(0));
|
|
return;
|
|
}
|
|
target.setStrikes(target.getStrikes() - context.argAsInt(1));
|
|
context.msg(TL.COMMAND_STRIKES_CHANGED, target.getTag(), target.getStrikes());
|
|
}
|
|
|
|
|
|
@Override
|
|
public TL getUsageTranslation() {
|
|
return TL.COMMAND_STRIKETAKE_DESCRIPTION;
|
|
}
|
|
|
|
}
|