再生回数増加にご協力ください

無害で無意味な公開ブックマークレット

Note: http://api-x.idolwars.jp 上でのみ動作します。アドレスバーがDMMでは動作しません。

壁紙変更するだけ(PCのみ)

PC版の背景が押すたびに切り替わります。それだけ。
クリスマスver.→正月ver.→バレンタインver.→ひな祭りver.→1周年ver.→夏休みver.→通常ver.→クリスマスver.→後略
1月は賽銭箱・・・これは課金?降り散る雪を消したくない場合は最後の1行を消せば雪を残せます。無意味だ。

javascript:
var BgArray = [
        'xmas-jack',
        'newyear-jack',
        'valentine-jack',
        'hinamatsuri-jack',
        'anniversary-jack',
        'august-jack',
        'dummy-jack'
    ];
var BgArrayLength = BgArray.length;
var CurrentBgClass = $('body').removeClass('show-bg').attr('class');
var CurrentBgArrayNumber = BgArray.lastIndexOf(CurrentBgClass);
var NextBgArrayNumber = BgArray.lastIndexOf(CurrentBgClass) + 1;
if (NextBgArrayNumber == BgArrayLength) {
    NextBgArrayNumber = 0;
}
var NextBgClass = BgArray[NextBgArrayNumber];
$('body').removeClass(CurrentBgClass).addClass('show-bg').addClass(NextBgClass);
$('iframe').contents().find('.' + CurrentBgClass).removeClass(CurrentBgClass).addClass(NextBgClass);
$('iframe').contents().find('.snow_effect').remove();

マイページ鑑賞モード(スマホのみ)

マイページの7人の上に存在する邪魔なボタンを一時的に一掃します。マイページで実行。再実行で戻る

javascript:
$('.chara-name, .gnavi-header-container, .mypage-btns').toggle();

どきメモランキングtoText(スマホのみ)

ランキングを1行テキストに整形します。スマホランキングページで実行。東西戦廃止で用なしになったがDG順位にも使える

javascript: 
$('head').append('
<style type="text/css">#textrank{padding:0.5em 0.5em 2.0em 0.5em;}
#textrank li a{color:#000;text-decoration:none;display:inline-block;width:7em;}</style>
');
$('body').prepend('<h2 class="head marB5">ランキング</h2><ul id="textrank" class="bold"></ul>');
$('.tribute-rank-list-sp').each(function() {
    var t = $(this),
        pid = t.find('.title-up').attr('href').replace(/.+index\/(.+)?\?.+/g, '$1'),
        prank = t.find('.rank-no').text(),
        pname = t.find('.title-up').text(),
        ppt = t.find('.detail-text').text();
    $('#textrank').append(
    '<li>' + prank + '位 ' + ppt + '<a target="_blank" 
    href="http://api-x.idolwars.jp/mydata/index/' + pid + '">' + pname + '</a>' + ' [' + pid + ']</li>');
});

アイドルの4値合計算出(スマホのみ)

特に知って意味はないですが総パフォ計算します。最も低いアイドル5、6人選別できて研修生枠の割り当てが上手くなるくらいか。 大きい順にソート整列くらいデフォルトでつけてほしいが。

javascript:
$(".card-container").each(function() {
    var t = $(this),
        A = t.find("dd:nth-of-type(3)").text(),
        D = t.find("dd:nth-of-type(4)").text(),
        SA = t.find("dd:nth-of-type(5)").text(),
        SD = t.find("dd:nth-of-type(6)").text(),
        SUM = parseInt(A) + parseInt(D) + parseInt(SA) + parseInt(SD);
    t.find("dt:nth-of-type(7)").text('合計:');
    t.find("dd:nth-of-type(7)").text(SUM);
});

ユニット toCSV(スマホのみ)

表計算ソフトやWikiにも使えるようにデータ処理向けコンマ区切りテキストCSVフォーマットで整形します

javascript:
$(".card-container+p").remove(), $("h3.qtitle4").remove(), $("h3.cardname").remove(),
$(".rarity-50").text("UR"), $(".rarity-43").text("SSR+++"), $(".rarity-42").text("SSR++"), $(".rarity-41").text("SSR+"), 
$(".rarity-40").text("SSR"), $(".rarity-33").text("SR+++"), $(".rarity-32").text("SR++"), $(".rarity-31").text("SR+"), 
$(".rarity-30").text("SR"), $(".rarity-23").text("R+++"), $(".rarity-22").text("R++"), $(".rarity-21").text("R+"), 
$(".rarity-20").text("R"), $(".rarity-13").text("N+++"), $(".rarity-12").text("N++"), $(".rarity-11").text("N+"), 
$(".rarity-10").text("N"), $("body").prepend('
<h2 class="head marB5">CSVフォーマット</h2><div class="new-card-area"></div>
');
$(".card-container").each(function() {
var t = $(this),
r = t.attr("class"),
e = t.find(".grow").text(),
a = t.find(".rarity").text(),
i = t.find(".card-name > *:first").text(),
n = t.find("dd:nth-of-type(1)").text(),
d = t.find("dd:nth-of-type(2)").text(),
x = t.find("dd:nth-of-type(3)").text(),
f = t.find("dd:nth-of-type(4)").text(),
c = t.find("dd:nth-of-type(5)").text(),
o = t.find("dd:nth-of-type(6)").text(),
p = t.find(".front span:first-child").text(),
y = t.find(".back span:first-child").text(),
s = t.find(".support span:first-child").text(),
b = t.find(".front a").text(),
h = t.find(".back a").text(),
v = t.find(".support a").text(),
R = parseInt(x) + parseInt(f) + parseInt(c) + parseInt(o);
$(".new-card-area").append('
<div class="' + r + ' fc-char"><div style="word-break: break-all;padding:10px;border-radius: 10px; 
background-color:rgba(255,255,255,1.00);"><b>' + i + "</b>," + e + "," + n + "," + d + "," + a + ",<b>"
 + R + "</b>," + x + "," + f + "," + c + "," + o + "," + p + "," + b + "," + y + "," + h + "," + s + "," + v + "</div></div>")
});

神曲とレベル

きらきらソング / Da Da Da Dance

Level 1 2 3 4 5 6 7
Power 35.6 56.5 71.2 82.7 92.1 100.0 106.9

まじかるとーく / Perfect Actress / Sexy Honey

Level 1 2 3
Power 50.0 79.2 100.0

リスク神曲 (Risky Killer Tune)

Level 1 2 3 4 5 6 7 8 9 10
Power 28.9 45.8 57.8 67.1 74.7 81.2 86.7 91.6 96.0 100.0
Level 11 12 13 14 15 16 17 18 19 20
Power 103.6 107.0 110.1 112.9 115.6 118.2 120.5 122.8 124.9 127.0
Level 21 22 23 24 25 26 27 28 29 30
Power 128.9 130.8 132.5 134.2 135.9 137.4 139.0 140.4 141.8 143.2

スキル

レベルによる補正

Lv20時の効果を1としたときの比。補正値ともいえる。

Level 1 2 3 4 5 6 7 8 9 10
Correction 22.8 36.1 45.5 52.9 58.9 63.9 68.3 72.2 75.6 78.8
Level 11 12 13 14 15 16 17 18 19 20
Correction 81.6 84.2 86.7 88.9 91.1 93.1 94.9 96.7 98.4 100.0
Level 21 22 23 24 25
Correction 101.5 103.0 104.4 105.7 107.0

簡易グラフ

簡易テーブル

特殊状態x1.15、絶好調x1.10、好調x1.05、普通x1.00、不調x0.95、絶不調x0.90をProbabilityに掛ける。Powerは調子によって変わらない。

ハイテンション時の健気な歌姫 強Lv20の発動確率は1.15倍の23%まで上昇し、発動すると本来の2.25倍の数字にするサポート効果をもたらす。

敵一人あたりの効果量 = (総パフォxLIVEランク変数x調子変数)x(攻と守の差をなにか関数に通した値)xスキル固有変数x(1+神曲Power+サポートPower1+サポートPower2+...+コンボチェイン変数)

下は調子が普通の時。

Skill NamePower確率Lv??
Power
Lv??
Probability
健気な歌姫 強125.020.0
憧れの光 強125.020.0
健気な歌姫 中80.020.0
憧れの光 中80.020.0
応援団75.020.0
ハイタッチ75.020.0
健気な歌姫 弱45.020.0
Skill NamePower確率Lv??
Power
Lv??
Probability
キラメキ全開 強125.020.0
アイドルオーラ 強125.020.0
キラメキ全開 中80.020.0
アイドルオーラ 中80.020.0
キラメキ全開 弱45.020.0
アイドルオーラ 弱45.020.0

すべて嘘です。メリークリスマス