1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

雀魂 牌譜画面の抜きドラを見やすくする 他

1
Last updated at Posted at 2022-09-18

スクリプトの利用は、自己責任でお願いします。

牌譜画面の抜きドラ

牌譜のコントロールバーにカーソルを乗せていないとき、バーを半透明にして抜きドラを見やすくするスクリプトです。開発者ツールで実行できます。

var replay = uiscript.UI_Replay.Inst.me.getChildByName("root");
var replayOnMouseOver = () => {
    replay.alpha = 1;
};
var replayOnMouseOut = () => {
    replay.alpha = 0.3;
};
replayOnMouseOut();
replay.on("mouseover", null, () => replayOnMouseOver());
replay.on("mouseout", null, () => replayOnMouseOut());

スタイル

雀魂のプロフィールに載っているスタイルの計算式です。

  • = 平均打点 ÷ 50 - 60
    (3000 ~ 8000)

  • (三麻) = 平均打点 ÷ 80 - 50
    (4000 ~ 12000)

  • = 112 - 340 × 放銃率
    (33% ~ 3.5%)

  • = (和了率 - 0.1) × 1000 ÷ 3
    (10% ~ 40%)

  • = 懸賞役数 ÷ 合計飜数 × 150
    (0% ~ 67%)

/ / は、直近100局のデータ(100戦ではありません)、 は直近20回の和了から計算された数値です。懸賞役は、ドラ(表 / 裏 / 赤 / 北)と一発です。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?