Generic Multiverse Bonuses

Overview

You receive generic Magic Find, Gold Drop or XP bonuses for items that you have acquired from other projects. In order to keep balance, the bonus will be based on the amount of ENJ reserved in the token (including ENJ infusions). Which bonus an item grants will be determined randomly based on the collection and token id. The following formulas are used...

Bonus Type
Bonus per ENJ

Magic Find Bonus

1:5

Gold Drop Bonus

1:5

XP Bonus

1:10

These are the maximum bonuses that you can receive from this method...

Bonus Type
Max Value

Magic Find

50%

Gold Find

50%

XP Bonus

20%

Bonuses from all tokens in wallet

Bonus Amount Logic

The following logic is used to determine how much bonus each token you hold will provide...

  • Every unique token grants .01 ENJ for it's reserve

  • If the token is infused, it gets a bonus for the infusion multiplied by the balance

  • The cap of effective contribution from any single token is 5 ENJ

Below are some examples for clarity...

  1. If you are holding a balance of 1000 of a single FT that is not infused, you will get a .01 ENJ bonus for this.

  2. If you are holding 100 unique NFT or FT's that are not infused then you would get 1 ENJ bonus for them.

  3. If you are holding a single NFT with 1 ENJ infused in it, you would get 1.01 ENJ bonus for that token.

  4. If you are holding a single NFT with 10 ENJ infused in it, you would get 5 ENJ bonus for it (the max for a single unqiue token)

  5. If you are holding a balance of 3 FT's that each have 1 ENJ infused in them, you would get a 3.01 bonus.

  6. If you are holding a balance of 10 FT's that have 1 ENJ infused in them, you would get a 5 ENJ bonus (the max for a single unique token)

Bonus Type Formula

int index = (tid + cid) % 3;
if (index == 0)
{
    return Modifier.MagicFindPercent;
}
else if (index == 1)
{
    return Modifier.GoldDropPercent;
}
return Modifier.ExpGain;

So, for example if the token id is 11 and the collection id is 2300 then the following would be used...

  • 2300 + 11 = 2311

  • 2311 % 3 = 1

  • 1 -> Gold Drop Percent

Last updated