「進化合成」の編集履歴(バックアップ)一覧に戻る

進化合成 - (2012/12/07 (金) 15:24:35) のソース

*進化合成

進化合成を行うにはカードのレベルを最大にすることと、
必要な進化素材を集める必要がある

----
&link_anchor(staff){進化素材一覧} &link_anchor(core){コア} &link_anchor(elite){エリート} &link_anchor(champion){チャンピオン}
----
-&aname(staff,option=nolink){進化素材一覧}
#divid(tablesorter){
#divid(table_sozai){
#table_edit(進化合成素材,row1name=No,row2name=合成素材,row3name=入手場所)
}}

-進化素材組み合わせ
&bold(){文字列の先頭に"ファイアー"、"ウッズ"、"サンダー"、"アイス"などが含まれる場合は自動的に色がつきます。}

----
&link_anchor(staff){進化素材一覧} &link_anchor(core){コア} &link_anchor(elite){エリート} &link_anchor(champion){チャンピオン}
----
**&aname(core,option=nolink){コア}
[[元のテーブルを表示>進化合成_コア]]
#divid(tablesorter){
#divid(table_sinka){
#table_edit(進化合成_コア,row1name=No,row2name=ベースカード,row3name=進化素材,row4name=必要なゴールド,row5name=進化後)
}}

----
&link_anchor(staff){進化素材一覧} &link_anchor(core){コア} &link_anchor(elite){エリート} &link_anchor(champion){チャンピオン}
----
**&aname(elite,option=nolink){エリート}
[[元のテーブルを表示>進化合成_エリート]]
#divid(tablesorter){
#divid(table_sinka){
#table_edit(進化合成_エリート,row1name=No,row2name=ベースカード,row3name=進化素材,row4name=必要なゴールド,row5name=進化後)
}}

----
&link_anchor(staff){進化素材一覧} &link_anchor(core){コア} &link_anchor(elite){エリート} &link_anchor(champion){チャンピオン}
----
**&aname(champion,option=nolink){チャンピオン}
[[元のテーブルを表示>進化合成_チャンピオン]]
#divid(tablesorter){
#divid(table_sinka){
#table_edit(進化合成_チャンピオン,row1name=No,row2name=ベースカード,row3name=進化素材,row4name=必要なゴールド,row5name=進化後)
}}

----
&link_anchor(staff){進化素材一覧} &link_anchor(core){コア} &link_anchor(elite){エリート} &link_anchor(champion){チャンピオン}
----

#javascript(){{
<script type="text/javascript" src="http://www50.atwiki.jp/majokuro/pub/jquery-1.8.3.min.js"></script> 
<script type="text/javascript" src="http://www50.atwiki.jp/majokuro/pub/jquery.tablesorter.js"></script> 
<script type="text/javascript">
$(document).ready(function() 
    { 
// テーブルをソート可能にする
        $("#tablesorter table").tablesorter(
     {widgets: ['zebra']}
        );
 
// 進化素材に入力された文字列を"、"でspan要素に分割する
       $("#table_sinka td:nth-child(3)").each(function(){
              var array1 = $(this).text().split("、");
              var parent = $(this);
              var i = 1;
              $(this).text("");
              for (i = 0;i < array1.length - 1;i++){
                     $(this).append($("<span />").text(array1[i]));
                     $(this).append($("<text />").text("、"));
              }
              $(this).append($("<span />").text(array1[i]));
       });

// 属性毎に文字色をつける
        $("#table_sinka td:nth-child(2),#table_sinka td:nth-child(3) span, #table_sinka td:nth-child(5),#table_sozai td:nth-child(2)").each(function(){
              if($(this).text().indexOf("ラバ") == 0 ||
                 $(this).text().indexOf("ファイアー") == 0 ||
                 $(this).text().indexOf("フレ") == 0
                 ){
                    $(this).css("color","red");
              }

              if($(this).text().indexOf("ウッズ") == 0 ||
                 $(this).text().indexOf("スワンプ") == 0 ||
                 $(this).text().indexOf("ゴブリン・シャーマン") == 0 ||
                 $(this).text().indexOf("マンドラゴラ") == 0
                    ){
                    $(this).css("color","green");
              }
              if($(this).text().indexOf("サンダー") == 0 ||
                 $(this).text().indexOf("ライトニング") == 0
                    ){
                    $(this).css("color","#808000");
              }
              if($(this).text().indexOf("アイス") == 0 ||
                 $(this).text().indexOf("フローズン") == 0 ||
                 $(this).text().indexOf("スノー") == 0
                   ){
                    $(this).css("color","blue");
              }
          }
       );

      var css_default = "";
      $("#table_sinka td").
         mouseenter(function(){
            $(this).parent().children().css("background-color","#cef")
         }).
         mouseleave(function(){
            $(this).parent().children().css("background-color","");
         });

    } 
); 
  </script>
}}