Minecraft PC IP: play.cubecraft.net

Is "the swapper" an item worth developing (to be added to LB eventually)?

  • Yes, it's an interessting idea

  • No, its boring


Results are only viewable after voting.

Banwave

Member
Mar 12, 2020
45
40
24
Lucky Blocks is somewhat RNG-ish anyway. So I thought why not spice it up some more?
May I present: The swapper.
Lets make it look like an ender peral

It when using the item it changes Position with a random player. Quite handy when in need of a quick escape.
As that is quite powerful here are some debuffs I was thinking of:

  • Once used the item disappears
  • If the person you are swapping with has lower health than you, your health is reduced to that level.
 

Attachments

  • Lets make it look like an ender peral.png
    Lets make it look like an ender peral.png
    32.3 KB · Views: 74
D

Deleted member 554749

Guest
Interesting. I think this item should only be used in the all good method of voting. But that’s just my personal thinking.
 
  • Like
Reactions: Conea64

Exarpo

Well-Known Member
Jun 29, 2019
357
361
79
That'd be a very interesting addition 🤔.
I just think it may be very overpowered even with the debuffs you presented, for instance if you're falling into the void, you can just switch positions with a player making you survive at the same time you kill someone else.
I'd say it could maybe be added but only with these two changes:
1. Should be very rare as it is overpowered.
2. Maybe only available in crazy mode?

Also you could make a poll so people can more easily share their opinion on this :).
 

Banwave

Member
Mar 12, 2020
45
40
24
e if you're falling into the void, you can just switch positions with a player making you survive at the same time you kill someone else.
Good point, my solution: Make sure the player using the item is currently not falling.

if (event.getPlayer().getVelocity().getY() < 0)
{
dont swap
}
else
{
swap

}
Or if you want to avoid them swapping while jumping in general use isOnGround.
 
  • Like
Reactions: Gregeyy

Gregeyy

Forum Expert
Jul 21, 2017
808
2,472
349
Spain
Interesting idea! I think adding it as a rare item could be a pretty nice addition.
I advise you to add a poll so people can express their opinion easily. Click on '...' and select 'Create poll' :heart:
 
  • Like
Reactions: Banwave

Exarpo

Well-Known Member
Jun 29, 2019
357
361
79
Good point, my solution: Make sure the player using the item is currently not falling.

if (event.getPlayer().getVelocity().getY() < 0)
{
dont swap
}
else
{
swap

}
Or if you want to avoid them swapping while jumping in general use isOnGround.
Well then the player wouldn't be able to jump or get hit by another player because when you get hit you get thrown up a bit.
 
Top Bottom