Example #1
0
                    <?php 
if (!is_null($arma) && $arma instanceof Arma) {
    ?>
                    <?php 
    $arma_nome = $arma->getNome() . " (direita)";
    ?>
                    <?php 
    foreach ($arma->listDano() as $dano) {
        ?>
                    <tr>
                        <td><?php 
        echo $arma_nome;
        ?>
</td>
                        <td><?php 
        echo $personagem->descreverDano($dano);
        ?>
</td>
                        <td class="text-center"><?php 
        echo $dano->descreverAlcance();
        ?>
</td>
                        <td class="text-center"><?php 
        echo $personagem->getAparar(MAO_DIREITA);
        ?>
</td>
                        <?php 
        if ($arma_nome != '') {
            ?>
                        <td class="text-right"><?php 
            echo number_format($arma->getPeso(), 2, ',', '.');