| 1234567891011121314151617181920212223242526272829 |
- <?php
- foreach ($page->collection as $collection){
- $monster_src = $collection->monster->image;
- $star_src = $path["img"]["layout"] . "icon/star.png";
- if ($collection->awaken == 1){
- $monster_src = $collection->monster->image_aw;
- $star_src = $path["img"]["layout"] . "icon/star_aw.png";
- }
- ?>
- <div class='monster'>
- <a href='javascript:selectMonster(<?=$collection->id?>);'>
- <span class='stars'>
- <?php
- for ($i = 0; $i < $collection->stars; $i ++){
- ?>
- <img class='star' src='<?=$star_src?>'/>
- <?php
- }
- ?>
- </span>
- <img class='monster border_<?=$collection->monster->element?>' src='<?=$monster_src?>'/>
- <span class='level'>
- Lv. <?=$collection->level?>
- </span>
- </a>
- </div>
- <?php
- } // foreach ($page->fusion as $fusion)
- ?>
|