PokéBen

0: Very Common (Color: #666666)
1: Common (Color: #00a505)
2: Uncommon (Color: #00b5b5)
3: Rare (Color: #0268bf)
4: Epic (Color: #8d02c7)
5(1): Legendary (Color: #ff8817)
5(2): Limited (Color: #ff4343)
5(3): Unique (Color: Rainbow)
uint256 s = 10**rarity;
uint256 power = 80 * s + (randomInteger) % (40 * s);
A PokéBen with greater rarity is harder to level up. Each level will give a PokéBen an increase on base power, the number is approximately 10% of the initial power with some randomness. Fomula is:
uint256 s = 10**rarity;
uint256 poserIncrease = 8 * s + (randomInteger) % (4 * s);
Base power is based on PokéBen rarity and level. Power is calculated with abilities and other factors on top of the base power.
Last modified 6mo ago