🌟現在、鉄壁 鉄壁ヘッドショットには対応済みです。
鉄壁HSは通常HSと同じダメージになります。LMG及びDMR、チャージライフル、ハンマーポイント弾を除き、すべてのダメージ値が一致していることを確認しています。

モジュール:StatTable/ProjectileSpeed

提供:Apex Data
2021年8月15日 (日) 15:56時点におけるMntone (トーク | 投稿記録)による版 (引数をとっていなかった不具合の修正)
ナビゲーションに移動 検索に移動

このモジュールについての説明文ページを モジュール:StatTable/ProjectileSpeed/doc に作成できます

local aw        = require('Module:Utility/Library')
local tableutil = require('Module:Utility/TableUtil/Apex')
local getArgs  -- lazily initialized

local configuration = {
	en = {
		graph           = 'Graph',
		hitscan         = 'Hitscan',
		maxcharge       = 'Max charge',
		mincharge       = 'Min charge',
		projectilespeed = 'Projectile speed [m/s]',
		weaponname      = 'Weapon name',
	},
	ja = {
		graph           = 'グラフ',
		hitscan         = 'ヒットスキャン',
		maxcharge       = '最大溜め',
		mincharge       = '最小溜め',
		projectilespeed = '弾速 [m/s]',
		weaponname      = '武器名',
	},
}

local p = {}
function p._main(args)
	args = args or {}
	
	local lang  = args.lang or 'ja'
	local res   = configuration[lang]
	local stats = mw.loadData('Module:Stat/Weapon')
	
	local dataset = {}
	for name, stat in pairs(stats) do
		local base = {
			ammo      = stat.ammo,
			name      = name,
			shortname = stat.localization['Japanese_Short'],
			speed     = 0.0254 * stat.projectile_speed,
		}
		
		local charged = stat.projectile_speed_charged
		if aw.isNumberAndGreaterThanZero(charged) then
			base.option = res.mincharge
			
			local charge = aw.shallowCopy(base)
			charge.option = res.maxcharge
			charge.speed  = 0.0254 * charged
			table.insert(dataset, charge)
		end
		
		table.insert(dataset, base)
	end
	
	local formatFunction = function(speed)
		if speed == math.huge then
			return res.hitscan
		else
			return string.format('%.1f', speed)
		end
	end
	local metadata = {
		tableutil.RankCell.new('', 'speed', true),
		tableutil.AmmoCell.new('', 'ammo', {
			attributes     = { align = 'center' },
			headerStyle    = { width = '36px' },
		}),
		tableutil.WeaponNameCell.new(res.weaponname, 'name', {
			ammoIndex      = 'ammo',
			attributes     = { align = 'left' },
			optionIndex    = 'option',
			shortnameIndex = 'shortname',
		}),
		tableutil.LineValueCell.new(res.projectilespeed, 'speed', {
			cellClass   = 'stattable-graph-mobileonly stattable-graph-both-mobileonly',
			format      = formatFunction,
			headerClass = 'stattable-graph-mobileonly',
			headerStyle = {
				['min-width'] = '75px',
				['max-width'] = '8em',
			},
		}),
		tableutil.LineCell.new(res.graph, 'speed', {
			cellClass   = 'stattable-graph-only',
			headerClass = 'stattable-graph-only',
		}),
	}
	local node = tableutil.createTable(dataset, metadata)
	return tostring(node)
end

function p.main(frame)
	if not getArgs then
		getArgs = require('Module:Arguments').getArgs
	end
	args = getArgs(frame)
	
	return p._main(args)
end

return p