Module:Availability/crate

From Team Fortress Wiki
< Module:Availability
Revision as of 19:04, 29 July 2022 by Tark (talk | contribs) (Add #136)
Jump to: navigation, search

Documentation for this module may be created at Module:Availability/crate/doc

local active = {'62', '63', '64', '65', '66', '67', '68', '69', '92', '103', '105', '109', '110', '111', '112', '113', '114', '115', '116', '135', '136'}

function status(num)
  for _, n in ipairs(active) do
    if n == num then
      return 'Mann Co. Supply Crate/Active series'
    end
  end
  return 'Mann Co. Supply Crate/Retired series'
end