1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-25 11:07:45 +00:00

yolo stats

This commit is contained in:
Jeido 2022-02-09 00:03:15 +01:00
parent 9ace700726
commit e0a41d56df

View file

@ -19,7 +19,7 @@
using namespace Sapphire::Math; using namespace Sapphire::Math;
using namespace Sapphire::Entity; using namespace Sapphire::Entity;
const int levelTable[81][6] = const int levelTable[91][6] =
{ {
// MAIN,SUB,DIV,HP,ELMT,THREAT // MAIN,SUB,DIV,HP,ELMT,THREAT
{ 1, 1, 1, 1, 1, 1 }, { 1, 1, 1, 1, 1, 1 },
@ -106,6 +106,19 @@ const int levelTable[81][6] =
{ 330, 376, 3034, 3600, 295, 466 }, { 330, 376, 3034, 3600, 295, 466 },
{ 335, 378, 3164, 3600, 295, 466 }, { 335, 378, 3164, 3600, 295, 466 },
{ 340, 380, 3300, 3600, 569, 569 }, { 340, 380, 3300, 3600, 569, 569 },
// todo: add proper endwalker values - hp/elmt/threat
// copypasta from shb right now
{ 296, 365, 2263, 3600, 295, 466 },
{ 300, 366, 2360, 3600, 295, 466 },
{ 305, 367, 2461, 3600, 295, 466 },
{ 310, 368, 2566, 3600, 295, 466 },
{ 315, 370, 2676, 3600, 295, 466 },
{ 320, 372, 2790, 3600, 295, 466 },
{ 325, 374, 2910, 3600, 295, 466 },
{ 330, 376, 3034, 3600, 295, 466 },
{ 335, 378, 3164, 3600, 295, 466 },
{ 340, 380, 3300, 3600, 569, 569 },
}; };
std::random_device CalcStats::dev; std::random_device CalcStats::dev;