Etherscape
  • Etherscape
  • Gameplay
    • Rogue-Lite
    • Play to Earn
      • Earn Gems
      • Kepithor Rewards
    • Characters
    • Multiplayer
    • The World
      • Heroic Quests
      • The Arena
      • Open World Events
      • Daily Bonuses
    • Economy
      • ✨Item Properties
      • ⬆️Account Upgrades
      • ⚔️Item Drop Rates
      • 🪙Token Types
      • 🗝️Heirlooms
      • ⚖️Currency Market
      • 💎Enjinite
      • 🐰Pets
      • 🧙Skins
    • Crafting
      • Crafting Station
      • How to Use the Etherforge
    • Gathering
    • Mastery System
    • Achievements
    • Social
    • Timed Events
      • Endurance of Light
      • Multiverse Quests
      • Rise of the Frozen Blight
      • Clockwork Invasion
  • Platforms
    • Input Types
  • Crypto Integration
    • Blockchain
      • Validators and Pools
      • Wallet Linking
    • Community Wallet
    • Etherbound Items
    • Governance
      • Imperial Sovereigns
      • Governance Rewards
      • Proposal History
      • Prop 12: Loot Flow Control
    • Multiverse Support
      • Enjin Multiverse Support
      • Custom Collaborations
      • Generic Multiverse Bonuses
    • Future Plans
      • Mastery System
      • Guilds
    • Enjin Blockchain Tips
  • Development
    • Release Notes
    • Feature Roadmap
    • Architecture
      • Latency Management
    • Bug Bounties / Bans
    • Submitting Debug Logs
  • Legal / Policy
    • Streaming
    • Community Wallet Disclaimer
    • In-Game Currency Disclaimer
    • Cheating Policy
    • Community Conduct Policy
Powered by GitBook
On this page
  • Overview
  • Bonus Amount Logic
  • Bonus Type Formula
  1. Crypto Integration
  2. Multiverse Support

Generic Multiverse Bonuses

PreviousCustom CollaborationsNextFuture Plans

Last updated 25 days ago

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%

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)

Before update 0.20.6.1 the .01 ENJ bonus was granted for each count of a fungible token (FT) you held. This was because Enjin Blockchain used to hold a reserve for every count of an FT. With newer upgrades, this is no longer the case, which is why this logic was updated to only provide the reserve bonus for unique tokens. Along with that update, we started to take infusion into account for bonuses.

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

The math behind these bonuses is subject to change in order to align with changes in Enjin Blockchain.

We don't recommend bulk purchasing tokens from other players to unlock this bonus. They may overcharge you and the formulas may change in the future. You will not be able to refund your ENJ if the tokens were minted by another player.

Bonuses from all tokens in wallet