feat(WIP): processing 숙련전환, 불가침제의

This commit is contained in:
2021-12-22 21:15:26 +09:00
parent b0c7d60d5a
commit 86dd573e2f
9 changed files with 414 additions and 340 deletions
-18
View File
@@ -162,22 +162,4 @@ class che_헌납 extends Command\GeneralCommand
]
];
}
public function getForm(): string
{
ob_start();
?>
자신의 자금이나 군량을 국가 재산으로 헌납합니다.<br>
<select id='isGold' name="isGold" size=1 style=color:white;background-color:black>
<option value='true'>금</option>
<option value='false'>쌀</option>
</select>
<select name=amount id='amount' size=1 style=text-align:right;color:white;background-color:black>
<?php foreach (GameConst::$resourceActionAmountGuide as $amount) : ?>
<option value='<?= $amount ?>'><?= $amount ?></option>
<?php endforeach; ?>
</select> <input type=button id="commonSubmit" value="<?= $this->getName() ?>"><br>
<?php
return ob_get_clean();
}
}