PokéBen

PokéBen is a captivating game that will transport you to a world of adventure and excitement!
In this game, you'll embark on a journey to become the ultimate PokéBen trainer. You'll travel across the land, seeking out powerful creatures known as PokéBens, and battling other trainers to prove your skills.
But PokéBen is not just about catching and battling. Along the way, you'll discover new places to explore, meet fascinating characters, and uncover hidden treasures. You'll also encounter rare and mysterious PokéBens, each with their own special abilities and powers.
As you progress through the game, you'll develop your own strategies and techniques, build a team of powerful PokéBens, and compete against other trainers in epic battles. And with regular updates and new features, there will always be something new to discover and explore in the world of PokéBen.
So gear up, get ready to explore, and embark on a thrilling adventure like no other. The world of PokéBen is waiting for you!
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 initialPower = 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 basePowerIncrease = 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 13d ago