- Welcome to the Kancolle Wiki!
- If you have any questions regarding site content, account registration, etc., please visit the KanColle Wiki Discord
View source for Module:CalcCombat
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local Combat2 = {}
local sqrt = math.sqrt
local floor = math.floor
local ceil = math.ceil
local min = math.min
local max = math.max
function initArgs(ship, target, context)
return ship and ship.ship or ship or {}, target and target.ship or target or {}, context or {}
end
function target_morale_modifier(morale)
return not morale and 1 or morale <= 20 and 1.4 or morale <= 32 and 1.2 or morale <= 52 and 1 or 0.7
end
function Combat2.evasion_value(target, context)
_, target, context = initArgs(nil, target, context)
local evasion = target._evasion or 0
local target_luck = target._luck or 0
local target_formation = context._target_formation or target._formation or 1
000
1:0
Template used on this page:
Return to Module:CalcCombat.