| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- foreach ($page->entry as $mon){
- $star_src = $path["img"]["layout"] . "icon/star.png";
- $monster_src = $monster_src = $mon["image"];
- if ($mon["awakeable"] == 0){
- $star_src = $path["img"]["layout"] . "icon/star_silver.png";
- }
- elseif ($mon["awakeable"] == 2){
- $star_src = $path["img"]["layout"] . "icon/star_aw.png";
- $monster_src = $mon["image_aw"];
- }
- $unowned = "";
- if ($mon["owned"] == 0){
- $unowneds = "unowned";
- }
- ?>
- <div class='monster <?=$unowned?>'>
- <a href='javascript:selectMonster(<?=$mon["id"]?>);'>
- <span class='stars'>
- <?php
- for ($i = 0; $i < $mon["stars"]; $i ++){
- ?>
- <img class='star' src='<?=$star_src?>'/>
- <?php
- }
- ?>
- </span>
- <img class='monster border_<?=$mon["element"]?>' src='<?=$monster_src?>'/>
- </a>
- </div>
- <?php
- }
- ?>
|