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

進化合成 - (2013/01/29 (火) 17:44:34) のソース

*進化合成

進化合成を行うにはカードのレベルを最大にすることと、
必要な進化素材を集める必要がある
----
&link_anchor(base){星との対応} &link_anchor(staff){進化素材一覧} &link_anchor(core){コア} &link_anchor(elite){エリート} &link_anchor(champion){チャンピオン}
----
**&aname(base,option=nolink){☆と進化素材の対応}
ベースカードの属性に対して2種の属性の進化素材が必要
#divid(table_alternate){
|ベースカード|進化素材|
|CENTER:無|CENTER:無+&color(red){火}|
|CENTER:&color(red){火}|CENTER:&color(red){火}+&color(green){木}|
|CENTER:&color(green){木}|CENTER:&color(green){木}+&color(#880){雷}|
|CENTER:&color(#880){雷}|CENTER:&color(#880){雷}+&color(blue){氷}|
|CENTER:&color(blue){氷}|CENTER:&color(blue){氷}+無|
}
#divid(table_alternate){
#table_edit(星と進化素材の対応,row1name=クラス,row2name=星の数,row3name=進化素材)
}
----
&link_anchor(base){星との対応} &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=入手場所)
}}

----
&link_anchor(base){星との対応} &link_anchor(staff){進化素材一覧} &link_anchor(core){コア} &link_anchor(elite){エリート} &link_anchor(champion){チャンピオン}
----
**進化素材組み合わせ
&bold(){文字列の先頭に"ファイアー"、"ウッズ"、"サンダー"、"アイス"などが含まれる場合は自動的に色がつきます。}

***&aname(core,option=nolink){コア}
[[元のテーブルを表示>進化合成_コア]]
#divid(tablesorter){
#divid(table_sinka){
#table_edit(進化合成_コア,row1name=No,row2name=ベースカード,row3name=進化素材,row4name=必要なゴールド,row5name=進化後,size3=80,size5=50)
}}

----
&link_anchor(base){星との対応} &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(base){星との対応} &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(base){星との対応} &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).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).text().indexOf("トレント") == 0 ||
                 $(this).text().indexOf("エクスプロード・シード") == 0 ||
                 $(this).text().indexOf("ゴブリン・シャーマン") == 0 ||
                 $(this).text().indexOf("マンドラゴラ") == 0 ||
                 $(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).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).text().indexOf("スノー") == 0
                   ){
                    $(this).css("color","blue");
              }
          }
       );

// マウスカーソルのある列をハイライト

      $("#table_sinka").each(function(){
            $(this).before($("<form />").html('<input type="checkbox" id="headerfloat" name="headerfloat" value="1"  checked="1">表のヘッダを固定する'));
       });

      $("#table_sinka td").
         mouseenter(function(){
            var table_header = $(this).parent().parent().parent().children("thead").children("tr");
            $(this).parent().children().css("background-color","#cef");
            if($("#headerfloat").attr("checked") !== "checked"){
               $(this).parent().before(table_header);
            }
         }).
         mouseleave(function(){
            $(this).parent().children().css("background-color","");
            if($("#headerfloat").attr("checked") !== "checked"){
               $(this).parent().parent().parent().children("thead").prepend($(this).parent().prev());
            }
         });

    } 
); 
  </script>
}}