feat: g65_병사연회 구현

This commit is contained in:
2023-12-25 13:43:46 +00:00
parent 1fe55b83bd
commit 53474ab3d2
10 changed files with 204 additions and 19 deletions
+19
View File
@@ -0,0 +1,19 @@
<?php
namespace sammo\ActionBuff;
use sammo\General;
use \sammo\iAction;
class g65_사기40 implements iAction
{
use \sammo\DefaultAction;
function onCalcStat(General $general, string $statName, $value, $aux = null)
{
if ($statName == 'bonusAtmos') {
return $value + 40;
}
return $value;
}
}