カルーセルのセル設定です。
NormalとSmallとで構成に大きな違いはなく、ほぼ値の差だけのようですね。
よほどの拘りがない限り、ここを調整する必要はないような気がするなぁ...
"normal": {
// Cell width
// セル幅
"width": 160,
// Cell height
// セル高さ
"height": 100,
// Spacing between carousel cells.
// セル間の間隔
"gap": 10,
// Standard cell elements.
// 標準セル要素
"fields": {
// "enabled" - the visibility of the element / 要素の表示
// "dx" - horizontal shift / 水平位置
// "dy" - vertical shift / 垂直位置
// "alpha" - transparency / 透過度
// "scale" - scale / 倍率
//
// Nation flag.
// 国旗
"flag": { "enabled": true, "dx": 0, "dy": 0, "alpha": 100, "scale": 1 },
// Vehicle icon.
// 車両アイコン
"tankIcon": { "enabled": true, "dx": 0, "dy": 0, "alpha": 100, "scale": 1 },
// Vehicle class icon.
// 車両クラスアイコン
"tankType": { "enabled": true, "dx": 0, "dy": 0, "alpha": 100, "scale": 1 },
// Vehicle level.
// 車両レベル
"level": { "enabled": true, "dx": 0, "dy": 0, "alpha": 100, "scale": 1 },
// Double XP icon
// 経験値2倍アイコン
"xp": { "enabled": true, "dx": 0, "dy": 0, "alpha": 100, "scale": 1 },
// Vehicle name.
// 車両名
"tankName": { "enabled": true, "dx": 0, "dy": 0, "alpha": 100, "scale": 1, "textFormat": {}, "shadow": {} },
// Vehicle rent info text.
// レンタル車両情報
"rentInfo": { "enabled": true, "dx": 0, "dy": 0, "alpha": 100, "scale": 1, "textFormat": {}, "shadow": {} },
// Info text (Crew incomplete, Repairs required)
// インフォメーションテキスト (搭乗員不足、要修理).
"info": { "enabled": true, "dx": 0, "dy": 0, "alpha": 100, "scale": 1, "textFormat": {}, "shadow": {} },
// Info image
// インフォメーション画像
"infoImg": { "enabled": true, "dx": 0, "dy": 0, "alpha": 100, "scale": 1 },
// Info text for "Buy vehicle" and "Buy slot" slots.
// インフォメーションテキスト「車両を購入する」及び「スロットを購入する」
"infoBuy": { "enabled": true, "dx": 0, "dy": 0, "alpha": 100, "scale": 1, "textFormat": {}, "shadow": {} },
// Clan lock timer
// クランロックタイマー
"clanLock": { "enabled": true, "dx": 0, "dy": 0, "alpha": 100 },
// Price
// 値段
"price": { "enabled": true, "dx": 0, "dy": 0, "alpha": 100 },
// Action price
// アクションコスト
"actionPrice": { "enabled": true, "dx": 0, "dy": 0, "alpha": 100 },
// Favorite vehicle mark
// お気に入り車両マーク
"favorite": { "enabled": true, "dx": 0, "dy": 0, "alpha": 100 },
// Stats field that appears on the mouse hover
// マウスホバー時に現れる統計情報
"stats": { "enabled": true, "dx": 0, "dy": 0, "alpha": 100, "textFormat": {}, "shadow": {} }
},
// Extra cell fields (extended format supported, see extra-field.txt).
// 拡張セルフィールド
"extraFields": [
// Slot background
// スロット背景
{ "x": 1, "y": 1, "layer": "substrate", "width": 160, "height": 100, "bgColor": "0x0A0A0A" },
// Average damage
// 平均ダメージ
{
"enabled": true,
"x": 1, "y": 28, "width": 18, "height": 18, "alpha": "{{v.tdb?|0}}",
"src": "xvm://res/icons/carousel/damage.png"
},
{
"enabled": true,
"x": 17, "y": 28,
"format": "<b><font face='$FieldFont' size='12' color='{{v.c_xtdb|#CFCFCF}}'>{{v.tdb%d}}</font></b>",
"shadow": ${ "def.textFieldShadow" }
},
// Sign of mastery
// 優等マーク
{
"enabled": true,
"x": 1, "y": 12, "width": 23, "height": 23,
"src": "img://gui/maps/icons/library/proficiency/class_icons_{{v.mastery}}.png"
},
// Battles count
// 戦闘数
{
"enabled": true,
"x": 158, "y": 17, "align": "right", "width": 13, "height": 13, "alpha": "{{v.battles?|0}}",
"src": "xvm://res/icons/carousel/battles.png"
},
{
"enabled": true,
"x": 145, "y": 14, "align": "right",
"format": "<b><font face='$FieldFont' size='12' color='#CFCFCF' alpha='#F0'>{{v.battles}}</font></b>",
"shadow": ${ "def.textFieldShadow" }
},
// Winrate
// 勝率
{
"enabled": true,
"x": 158, "y": 32, "align": "right", "width": 13, "height": 13, "alpha": "{{v.winrate?|0}}",
"src": "xvm://res/icons/carousel/wins.png"
},
{
"enabled": true,
"x": 145, "y": 28, "align": "right",
"format": "<b><font face='$FieldFont' size='12' color='{{v.c_winrate|#CFCFCF}}'>{{v.winrate%2d~%}}</font></b>",
"shadow": ${ "def.textFieldShadow" }
}
]
}