48 lines
790 B
PHP
48 lines
790 B
PHP
<?php
|
|
|
|
namespace services;
|
|
|
|
class FormulaService extends BaseService {
|
|
|
|
public static function getHeroPvpDailyCegUpLimit($heroDb)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
public static function getHeroPveDailyCegUpLimit($heroDb)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
public static function calcHeroPvpCeg($heroDb)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
public static function calcHeroPveCeg($heroDb)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
public static function getWeaponPvpDailyCegUpLimit($weaponDb)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
public static function getWeaponPveDailyCegUpLimit($weaponDb)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
public static function calcWeaponPvpCeg($weaponDb)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
public static function calcWeaponPveCeg($weaponDb)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
}
|