Module:ItemTables: Difference between revisions

Jump to navigation Jump to search
add comments
add vampiric burst to ammo
Line 72: Line 72:


local friendly_to_internal = {}
local friendly_to_internal = {}
friendly_to_internal["ammo"] = { "BonusClipSizePercent", "BonusClipSize" }
friendly_to_internal["ammo"] = { "BonusClipSizePercent", "BonusClipSize", "ActiveReloadPercent" }
friendly_to_internal["weapon damage"] = { "BaseAttackDamagePercent" }
friendly_to_internal["weapon damage"] = { "BaseAttackDamagePercent" }
friendly_to_internal["bullet shield health"] = { "BulletShieldMaxHealth", "BulletShieldOnCast", "SaviorBulletShieldHealth", "FlyingBulletShield" }
friendly_to_internal["bullet shield health"] = { "BulletShieldMaxHealth", "BulletShieldOnCast", "SaviorBulletShieldHealth", "FlyingBulletShield" }
Line 98: Line 98:


local unitSuffix = {
local unitSuffix = {
["%"] = { "BonusClipSizePercent", "BaseAttackDamagePercent", "TechResist", "BulletResist", "BonusFireRate", "StaminaCooldownReduction" },
["%"] = { "BonusClipSizePercent", "BaseAttackDamagePercent", "ActiveReloadPercent", "TechResist", "BulletResist", "BonusFireRate", "StaminaCooldownReduction" },
["m/s"] = { "BonusMoveSpeed" }
["m/s"] = { "BonusMoveSpeed" }
}
}