2022-04-21 06:48:24 +08:00
|
|
|
package emu.grasscutter.command.commands;
|
|
|
|
|
|
|
|
import emu.grasscutter.command.Command;
|
|
|
|
import emu.grasscutter.command.CommandHandler;
|
2022-04-27 12:21:57 +08:00
|
|
|
import emu.grasscutter.game.avatar.Avatar;
|
2022-04-21 06:48:24 +08:00
|
|
|
import emu.grasscutter.game.entity.EntityAvatar;
|
2022-04-27 12:24:25 +08:00
|
|
|
import emu.grasscutter.game.player.Player;
|
2022-04-21 06:48:24 +08:00
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
2022-05-06 12:57:45 +08:00
|
|
|
import static emu.grasscutter.utils.Language.translate;
|
|
|
|
|
2022-04-21 06:48:24 +08:00
|
|
|
@Command(label = "resetconst", usage = "resetconst [all]",
|
2022-05-06 16:06:13 +08:00
|
|
|
aliases = {"resetconstellation"}, permission = "player.resetconstellation", permissionTargeted = "player.resetconstellation.others", description = "commands.resetConst.description")
|
2022-04-21 06:48:24 +08:00
|
|
|
public final class ResetConstCommand implements CommandHandler {
|
|
|
|
|
|
|
|
@Override
|
2022-05-04 14:32:09 +08:00
|
|
|
public void execute(Player sender, Player targetPlayer, List<String> args) {
|
2022-05-04 17:16:42 +08:00
|
|
|
if (targetPlayer == null) {
|
2022-05-06 12:57:45 +08:00
|
|
|
CommandHandler.sendMessage(sender, translate("commands.execution.need_target"));
|
2022-04-21 06:48:24 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (args.size() > 0 && args.get(0).equalsIgnoreCase("all")) {
|
2022-05-04 17:16:42 +08:00
|
|
|
targetPlayer.getAvatars().forEach(this::resetConstellation);
|
2022-05-06 12:57:45 +08:00
|
|
|
CommandHandler.sendMessage(sender, translate("commands.resetConst.reset_all"));
|
2022-04-21 06:48:24 +08:00
|
|
|
} else {
|
2022-05-04 17:16:42 +08:00
|
|
|
EntityAvatar entity = targetPlayer.getTeamManager().getCurrentAvatarEntity();
|
2022-04-21 06:48:24 +08:00
|
|
|
if (entity == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-04-27 12:21:57 +08:00
|
|
|
Avatar avatar = entity.getAvatar();
|
2022-04-21 06:48:24 +08:00
|
|
|
this.resetConstellation(avatar);
|
|
|
|
|
2022-05-06 12:57:45 +08:00
|
|
|
CommandHandler.sendMessage(sender, translate("commands.resetConst.success", avatar.getAvatarData().getName()));
|
2022-04-21 06:48:24 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-27 12:21:57 +08:00
|
|
|
private void resetConstellation(Avatar avatar) {
|
2022-04-21 06:48:24 +08:00
|
|
|
avatar.getTalentIdList().clear();
|
|
|
|
avatar.setCoreProudSkillLevel(0);
|
|
|
|
avatar.recalcStats();
|
|
|
|
avatar.save();
|
|
|
|
}
|
2022-04-20 20:21:38 +08:00
|
|
|
}
|